백트래킹 문제 2 백트래킹문제는 항상 실제로 아날로그식으로 풀면 규칙도 다 알겠는데 코드 구현으로 이어지지가 않는게 문제인 것 같다. 스도쿠,, 어릴 때 심심풀이로 엄청 풀었던 것 같은데.. def get_ans(x,y): numlist=[str(i) for i in range(1,10)] row=[sdoku[x][i] for i in range(9)] column=[sdoku[i][y] for i in range(9)] used=list(set(row+column)) for i in used: if i in numlist: numlist.remove(i) if len(numlist)==1: sdoku[x][y]=numlist[0] else: cell=get_square(x//3+1,y//3+1) for..