250x250
반응형
Notice
Recent Posts
Recent Comments
Link
목록sdoku (1)
N
(Leet Code JS)Valid Sdoku
https://leetcode.com/problems/valid-sudoku/ Valid Sudoku - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com /** * @param {character[][]} board * @return {boolean} */ var isValidSudoku = function(board) { const rowCheck = (num, x, y) => { for(let i = x + 1; i < 9; i++){ if(board[i][y..
Leet Code 알고리즘
2022. 3. 11. 10:14