Skip to content

Commit 7a6288d

Browse files
committed
refactor(python): remove unused call
1 parent e10b0b7 commit 7a6288d

2 files changed

Lines changed: 0 additions & 12 deletions

File tree

  • programmers
    • 2025_프로그래머스_코드챌린지_1차_예선/python/지게차와_크레인
    • PCCP_기출문제/python/퍼즐_게임_챌린지

programmers/2025_프로그래머스_코드챌린지_1차_예선/python/지게차와_크레인/main.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,3 @@ def find_nested_sides(
4848
stack.append((x + dx, y + dy))
4949

5050
return nested
51-
52-
53-
if __name__ == "__main__":
54-
solution(list(input()), list(input()))

programmers/PCCP_기출문제/python/퍼즐_게임_챌린지/main.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,3 @@ def solution(diffs: List[int], times: List[int], limit: int) -> int:
2121
left = level + 1
2222

2323
return max(1, result)
24-
25-
26-
if __name__ == "__main__":
27-
solution(
28-
list(map(int, input().split())),
29-
list(map(int, input().split())),
30-
int(input()),
31-
)

0 commit comments

Comments
 (0)