문제
https://www.acmicpc.net/problem/11650
풀이
- 정렬
리스트에 담아서 lambda표현식으로 정렬했다.
코드
arr = []
for _ in range(int(input())):
arr.append(list(map(int, input().split())))
# arr[0]기준 오름차순 -> arr[1]기준 오름차순
arr.sort(key=lambda x: (x[0], x[1]))
for item in arr:
print(item[0], item[1])
'코딩테스트 > BOJ' 카테고리의 다른 글
[백준/파이썬] 2231번: 분해합 (Python) (0) | 2021.06.23 |
---|---|
[백준/파이썬] 10816번: 숫자 카드 2 (Python) (0) | 2021.06.23 |
[백준/파이썬] 10814번: 나이순 정렬 (Python) (0) | 2021.06.23 |
[백준/파이썬] 1373번: 2진수 8진수 (Python) (0) | 2021.06.20 |