Skip to content

Commit 8762b51

Browse files
committed
Reduced the number of letters
1 parent 2b355d3 commit 8762b51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/stacks/lexicographical_numbers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
def lexical_order(max_number: int) -> str:
22
"""
3-
Generate numbers in lexical order from 1 to max_number and return them as a space-separated string.
3+
Generate numbers in lexical order from 1 to max_number.
44
55
>>> lexical_order(13)
66
'1 10 11 12 13 2 3 4 5 6 7 8 9'

0 commit comments

Comments
 (0)