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 ab0e84f commit 542016dCopy full SHA for 542016d
1 file changed
find-minimum-in-rotated-sorted-array/lkhoony.js
@@ -7,7 +7,7 @@ const findMin_use_math_min = function (nums) {
7
};
8
9
// 메서드를 사용하지 않은 풀이.
10
-// tc: O(n^2)
+// tc: O(n^4)
11
// sc: O(1)
12
const findMin_naive = function (nums) {
13
let min = nums[0];
0 commit comments