import sys
from collections import Counter
input = sys.stdin.readline
def get_square_coordinate(coordinates):
X, Y = [], []
for xy in coordinates:
X.append(xy[0])
Y.append(xy[1])
cnt_x = Counter(X).most_common()
cnt_y = Counter(Y).most_common()
return cnt_x[-1][0], cnt_y[-1][0]
coordinates = []
for _ in range(3):
coordinates.append(list(map(int, input().split())))
x, y = get_square_coordinate(coordinates)
print (x, y)
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 3053번 택시 기하학 (파이썬) (0) | 2022.06.14 |
---|---|
[백준] 3052번 나머지 (C++) (0) | 2022.06.14 |
[백준] 2941번 크로아티아 알파벳 (파이썬) (0) | 2022.06.14 |
[백준] 2908번 상수 (C++) (0) | 2022.06.14 |
[백준] 2884번 알람 시계 (C++) (0) | 2022.06.14 |