mirror of
https://hub.njuu.cf/TheAlgorithms/Python.git
synced 2023-10-11 13:06:12 +08:00
Small docstring time complexity fix in number_container _system (#8875)
* fix: Write time is O(log n) not O(n log n) * chore: Update pre-commit ruff version * revert: Undo previous commit
This commit is contained in:
parent
f7531d9874
commit
9e08c7726d
@ -1,6 +1,6 @@
|
||||
"""
|
||||
A number container system that uses binary search to delete and insert values into
|
||||
arrays with O(n logn) write times and O(1) read times.
|
||||
arrays with O(log n) write times and O(1) read times.
|
||||
|
||||
This container system holds integers at indexes.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user