We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d605db9 commit d0bffe7Copy full SHA for d0bffe7
scripts/algorithms/S/Smallest Range I/Smallest Range I.js
@@ -1,5 +1,6 @@
1
+// Runtime: 90 ms (Top 57.43%) | Memory: 43.8 MB (Top 84.16%)
2
var smallestRangeI = function(nums, k) {
3
let max = Math.max(...nums);
4
let min = Math.min(...nums);
5
return Math.max(0, max - min- 2*k)
-};
6
+};
0 commit comments