2529.正整数和负整数的最大计数
链接:2529.正整数和负整数的最大计数
难度:Easy
标签:数组、二分查找、计数
简介:给你一个按 非递减顺序 排列的数组 nums ,返回正整数数目和负整数数目中的最大值。
题解 1 - python
- 编辑时间:2024-04-09
- 执行用时:51ms
- 内存消耗:16.64MB
- 编程语言:python
- 解法介绍:遍历。
class Solution:
def maximumCount(self, nums: List[int]) -> int:
return max(
len(list(filter(lambda v: v > 0, nums))),
len(list(filter(lambda v: v < 0, nums)))
)