Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdremov authored Jan 17, 2023
1 parent aa90412 commit 6f356ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ TreeArray behaves like an usual array but has the different implementation under
```swift
import TreeArray

let foo: TreeArray = [1, 2, 3, 4, 5]
foo.appendFront(0)
print(foo)
var foo: TreeArray = [1, 2, 3, 4, 5]
foo.insert(0, at: 0)
print(foo) // [0, 1, 2, 3, 4, 5]
```

## Complexity
Expand Down

0 comments on commit 6f356ec

Please sign in to comment.