We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54d90df commit 1b11f62Copy full SHA for 1b11f62
Python/find-x-sum-of-all-k-long-subarrays-ii.py
@@ -5,7 +5,7 @@
5
import collections
6
7
8
-# sorted list, two pointers, sliding window
+# freq table, sorted list, two pointers, sliding window
9
class Solution(object):
10
def findXSum(self, nums, k, x):
11
"""
0 commit comments