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
ispos
and the number of negative integers isneg
, then return the maximum ofpos
andneg
.Note that
0
is neither positive nor negative.
c++
1 | class Solution { |