Skip to content

Commit d409c43

Browse files
authored
Update count-array-pairs-divisible-by-k.py
1 parent 4fd4f7d commit d409c43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python/count-array-pairs-divisible-by-k.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import collections
55

66

7-
# math, combinatorics
7+
# math, number theory
88
class Solution(object):
99
def countPairs(self, nums, k):
1010
"""
@@ -34,7 +34,7 @@ def gcd(x, y):
3434
import collections
3535

3636

37-
# math, combinatorics
37+
# math, number theory
3838
class Solution2(object):
3939
def countPairs(self, nums, k):
4040
"""

0 commit comments

Comments
 (0)