mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00: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