728x90
문제
풀이
import sys
N=int(sys.stdin.readline())
list1=[]
for i in range(N):
list1.append(list(sys.stdin.readline().split()))
list1.sort(key=lambda x:int(x[0]))
for i in range(len(list1)):
print(list1[i][0],list1[i][1])
리스트의 sort 함수는 리스트의 원소를 오름 차순으로 정렬하는 기능을 갖고있다.
여기서 key라는 매개변수와 람다 함수를 활용하여 key 값을 기준으로 정렬할 수 있다.
참고하면 좋은 글
https://gorokke.tistory.com/38
'PS' 카테고리의 다른 글
[백준] 10989번 : 수 정렬하기 3- 파이썬[Python] (0) | 2022.01.13 |
---|---|
[백준] 10816번 : 숫자 카드 2(counter)- 파이썬[Python] (0) | 2022.01.13 |
[백준] 2108번 : 통계학(counter)- 파이썬[Python] (0) | 2022.01.10 |
[백준] 5430번 : AC(덱)- 파이썬[Python] (0) | 2022.01.10 |
[백준] 18258번 : 큐2(큐)- 파이썬[Python] (0) | 2022.01.08 |
댓글