We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8932b54 commit 6cab7edCopy full SHA for 6cab7ed
maths/maximum_combination.py
@@ -16,7 +16,7 @@
16
"""
17
18
19
-def maximum_combination(first_num, second_num) -> int:
+def maximum_combination(first_num: int, second_num: int) -> int:
20
if first_num <= 0:
21
return 0
22
if second_num <= 0:
0 commit comments