We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a86e71 commit 545d5ebCopy full SHA for 545d5eb
1 file changed
find-minimum-in-rotated-sorted-array/lkhoony.js
@@ -23,7 +23,7 @@ const findMin_naive = function (nums) {
23
};
24
25
// 시간복잡도를 문제의 요구사항에 맞도록 줄여본 풀이
26
-// tc: O(n*logn)
+// tc: O(n^2*logn)
27
// sc: O(1)
28
const findMin = function (nums) {
29
let left = 0,
0 commit comments