Skip to content

Commit 8664431

Browse files
authored
Update minimum-operations-to-make-subarray-elements-equal.cpp
1 parent 12c18de commit 8664431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

C++/minimum-operations-to-make-subarray-elements-equal.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Time: O(nlogk)
22
// Space: O(k)
33

4-
// math, sliding window, two pointers, bst
4+
// math, two pointers, sliding window, bst
55
class Solution {
66
public:
77
long long minOperations(vector<int>& nums, int k) {

0 commit comments

Comments
 (0)