문제 : 2239. 스도쿠 코드 1 (실패) import sys input = sys.stdin.readline def cal_sqr(row_idx, col_idx): # row_idx와 col_idx를 받아, 해당 cell이 몇 번째 square에 속하는지 반환 new_row = row_idx // 3 new_col = col_idx // 3 return new_row * 3 + new_col mat = [list(map(int, list(input().rstrip()))) for _ in range(9)] zero_locs = [] # 0의 위치 num_nums = [0] * 10 # 각 숫자의 개수 refer_table = { 'row' : [0] * 9, # i번째 row의 합 'col' : [0..