Skip to content

Commit d581548

Browse files
authored
Fix a typo in linked list's "ru" readme (trekhleb#723)
Deletion time complexity from O(1) to O(n)
1 parent c2e5b3d commit d581548

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/data-structures/linked-list/README.ru-RU.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ end ReverseTraversal
133133

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

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

0 commit comments

Comments
 (0)