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:
committed by
GitHub
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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user