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:
Caeden Perelli-Harris
2023-07-22 13:34:19 +03:00
committed by GitHub
parent f7531d9874
commit 9e08c7726d

View File

@ -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.