https://www.acmicpc.net/problem/3009
#Solution
리스트에 저장했다 빼는 루트로 해결한다.
dots = []
x = []
y = []
for _ in range(3):
dots.append(list(map(int, input().split())))
for [a, b] in dots:
if a in x:
x.remove(a)
else:
x.append(a)
if b in y:
y.remove(b)
else:
y.append(b)
print(x[0], y[0])
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#123 백준 파이썬 [5086] 배수와 약수 (0) | 2019.09.30 |
---|---|
#122 백준 파이썬 [3053] 택시 기하학 (0) | 2019.09.30 |
#120 백준 알고리즘 [3036] 링 (0) | 2019.09.30 |
#119 백준 파이썬 [1085] 직사각형에서 탈출 (0) | 2019.09.30 |
#118 백준 파이썬 [2609] 최대공약수와 최소공배수 (0) | 2019.09.30 |