Skip to content

Commit 70dd44f

Browse files
Fix line length in MinStack docstring to satisfy Ruff
1 parent 77b768e commit 70dd44f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

data_structures/stacks/min_stack_with_twostacks.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
class MinStack:
22
"""
3-
A Stack data structure that supports retrieving the minimum element in O(1) time using an auxiliary stack .
3+
A Stack data structure that supports retrieving the minimum element
4+
in O(1) time using an auxiliary stack .
45
56
>>> st = MinStack()
67
>>> st.push(18)

0 commit comments

Comments
 (0)