#力扣 LeetCode908. 最小差值 I @FDDLC
题目描述:
908. 最小差值 I - 力扣(LeetCode) (leetcode-cn)
Java代码:
class Solution {public int smallestRangeI(int[] a, int k) {int max=a[0],min=a[0];for(int e:a){if(max<e)max=e;else if(min>e)min=e;}return Math.max(0,max-min-k-k);}
}
#力扣 LeetCode908. 最小差值 I @FDDLC
题目描述:
908. 最小差值 I - 力扣(LeetCode) (leetcode-cn)
Java代码:
class Solution {public int smallestRangeI(int[] a, int k) {int max=a[0],min=a[0];for(int e:a){if(max<e)max=e;else if(min>e)min=e;}return Math.max(0,max-min-k-k);}
}
发布评论