[leetcode]Count Negative Numbers in a Sorted Matrix
2354 단어 Binary SearcharrayBinary Search
유의할점
r.begin(), rend() 사용.
풀이
코드
C++
class Solution {
public:
int countNegatives(vector<vector<int>>& grid) {
int res = 0;
for(auto g : grid){
res += upper_bound(g.rbegin(),g.rend(),-1) - g.rbegin();
}
return res;
}
};
Author And Source
이 문제에 관하여([leetcode]Count Negative Numbers in a Sorted Matrix), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@6047198844/leetcodeCount-Negative-Numbers-in-a-Sorted-Matrix저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)