removed parentheses

This commit is contained in:
1227haran 2024-10-04 22:09:09 +05:30
parent 8b4f4cdbce
commit 667bfc7063

View File

@ -24,7 +24,7 @@ def lexical_order(max_number: int) -> Iterator[int]:
if num > max_number:
continue
yield (num)
yield num
if (num % 10) != 9:
stack.append(num + 1)