[백준 3009번-파이썬/Python] 네 번째 점
알고리즘 공부/BOJ백준 풀이

[백준 3009번-파이썬/Python] 네 번째 점

http://acmicpc.net/problem/3009

{코드}

x, y = [], []
for _ in range(3):
	n, m = map(int, input().split())
	x.append(n)
	y.append(m)
for i in x:
	if x.count(i) == 1:
		print(i, end=' ')
		break
for i in y:
	if y.count(i) == 1:
		print(i)
        	break

{설명}

주어진 세 점 중 중복이 없는 것을 찾는 문제이므로 x좌표들과 y좌표들 중 개수가 하나인 것을 골라 출력하면 됩니다.