Skip to content

Commit a3815ee

Browse files
authored
Update minimum-time-to-make-array-sum-at-most-x.py
1 parent 392c759 commit a3815ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/minimum-time-to-make-array-sum-at-most-x.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Time: O(n^2)
22
# Space: O(n)
33

4-
# greedy, sort, dp
4+
# greedy, sort, dp, linear search
55
class Solution(object):
66
def minimumTime(self, nums1, nums2, x):
77
"""

0 commit comments

Comments
 (0)