Skip to content

Commit 822c3e8

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 3eb7e3e commit 822c3e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/stacks/min_stack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,5 @@ def get_min(self) -> int | None:
7070
min_stack.push(-3)
7171
print("Current Min:", min_stack.get_min()) # Output: -3
7272
min_stack.pop()
73-
print("Top Element:", min_stack.top()) # Output: 0
73+
print("Top Element:", min_stack.top()) # Output: 0
7474
print("Current Min:", min_stack.get_min()) # Output: -2

0 commit comments

Comments
 (0)