Skip to content

Commit d81f987

Browse files
authored
Update make-k-subarray-sums-equal.cpp
1 parent 38da512 commit d81f987

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

C++/make-k-subarray-sums-equal.cpp

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

4-
// math, greedy
4+
// math, greedy, quick select
55
class Solution {
66
public:
77
long long makeSubKSumEqual(vector<int>& arr, int k) {

0 commit comments

Comments
 (0)