Skip to content

Commit

Permalink
숫자 카드 게임 (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
ezidayzi committed Dec 25, 2021
1 parent f18d933 commit 22782f4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CodingTestBook/Chapter 3/3-3.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
n, m = map(int, input().split())

min_arr = []

for i in range(n):
arr = list(map(int, input().split()))
min_arr.append(min(arr))

print(max(min_arr))

0 comments on commit 22782f4

Please sign in to comment.