Study Algorithm
/
숫자 카드 게임
✏️
숫자 카드 게임
Question
Test Case 1
Shell
복사
Test Case 2
Shell
복사
Solve
n
,
m
=
map
(
int
,
input
(
)
.
split
(
)
)
arr
=
[
]
for
i
in
range
(
n
)
:
row
=
list
(
map
(
int
,
input
(
)
.
split
(
)
)
)
row
.
sort
(
)
arr
.
append
(
row
[
0
]
)
print
(
max
(
arr
)
)
Python
복사
실행시간 : ms