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 a43b4a2 commit d18233dCopy full SHA for d18233d
C++/best-team-with-no-conflicts.cpp
@@ -1,4 +1,4 @@
1
-// Time: O(nlogn)
+// Time: O(nloga)
2
// Space: O(n)
3
4
// optimized from Solution3
@@ -100,7 +100,7 @@ class Solution {
100
};
101
102
103
+// Time: O(nlogs)
104
105
// optimized from Solution4
106
class Solution2 {
@@ -201,7 +201,7 @@ class Solution2 {
201
202
203
204
-// Time: O(n^2)
+// Time: O(n * a)
205
206
// optimized from Solution5
207
class Solution3 {
@@ -230,7 +230,7 @@ class Solution3 {
230
}
231
232
233
+// Time: O(n * s)
234
235
// optimized from Solution6
236
class Solution4 {
0 commit comments