Skip to content

Commit ceb948a

Browse files
authoredDec 25, 2022
Update 1984-Minimum-Difference-Between-Highest-and-Lowest-of-K-Scores.js
Updated time complexity.
1 parent 28573b7 commit ceb948a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎javascript/1984-Minimum-Difference-Between-Highest-and-Lowest-of-K-Scores.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Loglinear/N*log(N)
3-
* Time O(N + N*long(N)) | Space O(1)
3+
* Time O(N*log(N)) | Space O(1)
44
* https://leetcode.com/problems/minimum-difference-between-highest-and-lowest-of-k-scores
55
*
66
* @param {number[]} nums

0 commit comments

Comments
 (0)
Please sign in to comment.