Skip to content

Commit d2d0c29

Browse files
authored
Update k-divisible-elements-subarrays.py
1 parent aa61ae6 commit d2d0c29

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Python/k-divisible-elements-subarrays.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Time: O(n^2)
22
# Space: O(t), t is the size of trie
33

4+
import collections
5+
6+
47
# trie
58
class Solution(object):
69
def countDistinct(self, nums, k, p):

0 commit comments

Comments
 (0)