Leetcode 1509. Minimum Difference Between Largest and Smallest Value in Three Moves
Posted SnailTyan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 1509. Minimum Difference Between Largest and Smallest Value in Three Moves相关的知识,希望对你有一定的参考价值。
文章作者:Tyan
博客:noahsnail.com | CSDN | 简书
1. Description
2. Solution
**解析:**Version 1,先对数组进行排序,如果数字个数小于5个,则最小差一定为0,否则,由于至多修改三个数字,因此最小值的情况为修改前三个数字、修改后三个数字、前面修改一个后面修改两个、前面修改两个后面修改一个,枚举四种情况的值取最小即可。
- Version 1
class Solution:
def minDifference(self, nums: List[int]) -> int:
if len(nums) < 5:
return 0
nums.sort()
return min(nums[-1] - nums[3], nums[-4] - nums[0], nums[-2] - nums[2], nums[-3] - nums[1])
Reference
以上是关于Leetcode 1509. Minimum Difference Between Largest and Smallest Value in Three Moves的主要内容,如果未能解决你的问题,请参考以下文章
leetcode@ [310] Minimum Height Trees