반응형
문제 정보
제출 코드
x_list = []
y_list = []
for i in range(3):
x, y = map(int, input().split())
x_list.append(x)
y_list.append(y)
for i in range(3):
if(x_list.count(x_list[i])==1):
x = x_list[i]
if(y_list.count(y_list[i])==1):
y = y_list[i]
print(x,y)
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 3053번 Python (0) | 2021.10.04 |
---|---|
[백준 알고리즘] 4153번 Python (0) | 2021.10.04 |
[백준 알고리즘] 1085번 Python (0) | 2021.10.04 |
[백준 알고리즘] 9020번 Python (0) | 2021.10.04 |
[백준 알고리즘] 4948번 Python (0) | 2021.10.04 |
댓글