#2580 스도쿠 https://www.acmicpc.net/problem/2580 2580번: 스도쿠 스도쿠는 18세기 스위스 수학자가 만든 '라틴 사각형'이랑 퍼즐에서 유래한 것으로 현재 많은 인기를 누리고 있다. 이 게임은 아래 그림과 같이 가로, 세로 각각 9개씩 총 81개의 작은 칸으로 이루 www.acmicpc.net 틀린코드 (with while and que) matrix = [] target = [] # get input and save target position for i in range(9): tmp = input().split() l = [] for j in range(9): if int(tmp[j]) == 0: target.append([i, j]) l.append(int(tmp..