2740.找出分区值
链接:2740.找出分区值
难度:Medium
标签:数组、排序
简介:返回表示分区值的整数。
题解 1 - python
- 编辑时间:2024-07-26
- 执行用时:118ms
- 内存消耗:27.98MB
- 编程语言:python
- 解法介绍:遍历。
class Solution:
def findValueOfPartition(self, nums: List[int]) -> int:
return min(n2 - n1 for n1, n2 in pairwise(sorted(nums)))