[LeetCode] 36. Valid Sudoku - 문제풀이
Description 주어진 9*9 스도쿠 문제가 유효한지 확인하는 문제입니다. 참고로 스도쿠는 각 행,렬,블록에 1-9의 숫자를 겹치지 않게 채워넣는 게임입니다. Determine if a 9 x 9 Sudoku board is valid. Only the filled cells need to be validated according to the following rules: Each row must contain the digits 1-9 without repetition. Each column must contain the digits 1-9 without repetition. Each of the nine 3 x 3 sub-boxes of the grid must contain the digits..