598. 范围求和 II
为保证权益,题目请参考 598. 范围求和 II(From LeetCode).
解决方案1
Python
python
# 598. 范围求和 II
# https://leetcode-cn.com/problems/range-addition-ii/
################################################################################
from typing import List
from functools import reduce
class Solution:
def maxCount(self, m: int, n: int, ops: List[List[int]]) -> int:
if len(ops) == 0:
return m * n
return reduce(lambda x, y: x * y, map(lambda x: min(x), zip(*ops)), 1)
################################################################################
if __name__ == "__main__":
solution = Solution()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20