Skip to content

Commit 1b11f62

Browse files
authored
Update find-x-sum-of-all-k-long-subarrays-ii.py
1 parent 54d90df commit 1b11f62

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-ii.py

+1-1
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)