Skip to content

Commit

Permalink
Fix a typo in linked list's "ru" readme (trekhleb#723)
Browse files Browse the repository at this point in the history
Deletion time complexity from O(1) to O(n)
  • Loading branch information
tusba authored Jan 27, 2022
1 parent c2e5b3d commit d581548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data-structures/linked-list/README.ru-RU.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ end ReverseTraversal

| Чтение | Поиск | Вставка | Удаление |
| :--------: | :-------: | :--------: | :-------: |
| O(n) | O(n) | O(1) | O(1) |
| O(n) | O(n) | O(1) | O(n) |

### Пространственная сложность

Expand Down

0 comments on commit d581548

Please sign in to comment.