Skip to content

Commit cc92246

Browse files
authored
Update find-x-sum-of-all-k-long-subarrays-i.py
1 parent b93fb75 commit cc92246

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/find-x-sum-of-all-k-long-subarrays-i.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import collections
66

77

8-
# sorted list, two pointers, sliding window
8+
# freq table, sorted list, two pointers, sliding window
99
class Solution(object):
1010
def findXSum(self, nums, k, x):
1111
"""

0 commit comments

Comments
 (0)