Skip to content

Commit b7df4ff

Browse files
committed
fixed naming conventions
1 parent 05162dd commit b7df4ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

maths/iterative_pair.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from collections import Counter
33

44

5-
def sockMerchant(n: int, ar: list[int]) -> int:
5+
def sock_merchant(n: int, ar: list[int]) -> int:
66
"""
77
>>> sockMerchant(9, [10, 20, 20, 10, 10, 30, 50, 10, 20])
88
3
@@ -25,6 +25,6 @@ def sockMerchant(n: int, ar: list[int]) -> int:
2525

2626
ar = list(map(int, input().rstrip().split()))
2727

28-
result = sockMerchant(n, ar)
28+
result = sock_merchant(n, ar)
2929
print(result)
3030
doctest.testmod()

0 commit comments

Comments
 (0)