欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LeetCode:1351. 统计有序矩阵中的负数

程序员文章站 2022-07-12 08:07:40
...
class Solution {
public:
    int countNegatives(vector<vector<int>>& grid) {
        
        int count=0;
        for(int i=0;i<grid.size();i++)
        {
            for(int j=0;j<grid[0].size();j++)
            {
                if(grid[i][j]<0)
                {
                    count++;
                }
            }
        }
        return count;
    }
};
相关标签: LeetCode