Amazon Coding Interview: Count Negative Integers in Matrix
今天在Youtube上看到这么一道题,我之前肯定是有见过的,但是忘了是怎么做的。CountNegativeIntegersArrayissorted.例子:[-3,-2,-1,1]-->3[-2,2,,3,,4]-->1[4,5,7,8]-->0一共4个。O(nm)isnaivesolution最暴力的解法就是整个matrix走一遍,看看一共几个non-negativenumbers.注意Each