Leetcode73矩阵置零

1110-3

代码:

和题解思路差不多

class Solution {
    public void setZeroes(int[][] matrix) {
        Set setr = new HashSet<>();
        Set setc = new HashSet<>();
        for(int i=0;i

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