Skip to content

Commit 6cab7ed

Browse files
Update maximum_combination.py
1 parent 8932b54 commit 6cab7ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

maths/maximum_combination.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"""
1717

1818

19-
def maximum_combination(first_num, second_num) -> int:
19+
def maximum_combination(first_num: int, second_num: int) -> int:
2020
if first_num <= 0:
2121
return 0
2222
if second_num <= 0:

0 commit comments

Comments
 (0)