Skip to content

Commit

Permalink
Delete redundant comments
Browse files Browse the repository at this point in the history
  • Loading branch information
trickerer01 committed Jan 21, 2024
1 parent 3484cd0 commit 4d896e2
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/app_defines.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,6 @@
#
#

# [1, 5, 9] slice notation
# print(list(range(10))[1:10:4])
# print(list(range(10))[-9:10:4])
# print(list(range(10))[1::4])

# def pow_b(n: int, p: int) -> int:
# return n if (p == 1) else (n * pow_b(n, p - 1)) if (p & 1) else (pow_b(n * n, p // 2))

from enum import IntEnum, auto, unique
from typing import Dict, Tuple, Optional, Set, List

Expand Down

0 comments on commit 4d896e2

Please sign in to comment.