Skip to content

Commit

Permalink
Update find-x-sum-of-all-k-long-subarrays-i.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kamyu104 authored Oct 14, 2024
1 parent b93fb75 commit cc92246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/find-x-sum-of-all-k-long-subarrays-i.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import collections


# sorted list, two pointers, sliding window
# freq table, sorted list, two pointers, sliding window
class Solution(object):
def findXSum(self, nums, k, x):
"""
Expand Down

0 comments on commit cc92246

Please sign in to comment.