Skip to content

Commit 89d0d46

Browse files
authored
Update minimum-operations-to-make-the-array-k-increasing.cpp
1 parent 9b43558 commit 89d0d46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

C++/minimum-operations-to-make-the-array-k-increasing.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Time: O(k * (n/k)log(n/k)) = O(nlog(n/k))
2-
// Space: O(n)
2+
// Space: O(n/k)
33

44
class Solution {
55
public:

0 commit comments

Comments
 (0)