Beakjoon&프로그래머스/파이썬

[백준/파이썬]2693번 N번째 큰 수

현장 2021. 3. 22. 20:21

 

-코드

 

t = int(input())

for i in range(t):
    n = list(map(int, input().split()))

    for j in range(2):
        a = max(n)
        n.remove(a)

    print(max(n))