Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Apply suggestions from code review
fix docstrings

Co-authored-by: ilemhadri <[email protected]>
  • Loading branch information
bsamedi and ilemhadri authored Oct 18, 2022
commit cbdf4e1bdc115d8b962141b46191c6e3e6b2aac7
4 changes: 2 additions & 2 deletions sortedcontainers/sortedarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ class SortedArray(SortedList):


def __init__(self, typecode, initializer=None):
"""Initialize sorted list instance.
"""Initialize sorted array instance.

Optional `iterable` argument provides an initial iterable of values to
initialize the sorted list.
initialize the sorted array.

Runtime complexity: `O(n*log(n))`

Expand Down