[LeetCode] Maximum Count of Positive Integer and Negative Integer

2529. Maximum Count of Positive Integer and Negative Integer

Given an array nums sorted in non-decreasing order, return the maximum between the number of positive integers and the number of negative integers.

  • In other words, if the number of positive integers in nums is pos and the number of negative integers is neg, then return the maximum of pos and neg.

Note that 0 is neither positive nor negative.

c++
1
2
3
4
5
6
7
8
9
10
11
class Solution {
public:
int maximumCount(vector<int>& nums) {
int pos = 0, neg = 0;
for(auto& n : nums) {
if(n < 0) neg++;
else if (n > 0) pos++;
}
return max(pos, neg);
}
};
Author: Song Hayoung
Link: https://songhayoung.github.io/2025/03/12/PS/LeetCode/maximum-count-of-positive-integer-and-negative-integer/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.

Related Issues not found

Please contact @SongHayoung to initialize the comment