《LeetCode零基础指南》(第八讲) 二维数组
1.1351. 统计有序矩阵中的负数/**给你一个 m * n 的矩阵 grid,矩阵中的元素无论是按行还是按列,都以非递增顺序排列。 请你统计并返回 grid 中负数的数目。 */class Solution {//二分法 public int countNegatives(int[][] grid) { int count = 0; for(int i = 0; i < grid.length; i++){ int lef