[Python] BOJ 11650번. 좌표 정렬하기 작성일 2020-05-14 | In Algorithm | 11650번. 좌표 정렬하기 문제 링크 https://www.acmicpc.net/problem/11650 풀이 코드 123456789101112# 11650번. 좌표 정렬하기 n = int(input()) cList = [] for i in range(n): x, y = map(int, input().split()) cList.append((x, y)) cList.sort() for x, y in cList: print(x, y) 비고