Skip to content

Commit ae67331

Browse files
committedOct 2, 2024
Updated camelcase to snakecase
1 parent ed0553b commit ae67331

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎data_structures/stacks/lexicographical_numbers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
def lexicalOrder(n: int) -> str:
1+
def lexical_order(n: int) -> str:
22

33
ans = []
44
stack = [1]
@@ -18,4 +18,4 @@ def lexicalOrder(n: int) -> str:
1818

1919
if __name__ == "__main__":
2020

21-
print(f"Numbers from 1 to 25 in lexical order: {lexicalOrder(25)}")
21+
print(f"Numbers from 1 to 25 in lexical order: {lexical_order(25)}")

0 commit comments

Comments
 (0)