Leetcode36. 有效的数独

代码:

lass Solution {
    static int[][] starts = {{0,0},{0,3},{0,6},{3,0},{3,3},{3,6},{6,0},{6,3},{6,6}};
    public boolean isValidSudoku(char[][] board) {
        
        for(int i=0;i

你可能感兴趣的:(java,算法,数据结构)