We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f50f10d commit bfef736Copy full SHA for bfef736
exercises/015-car_route/solution.hide.py
@@ -1,9 +1,9 @@
1
-#Complete the function to return the amount of days it will take to cover a route.
2
-#HINT: You may need to import the math module for this exercise.
3
import math
+
+# Complete the function to return the amount of days it will take to cover a route
4
def car_route(n,m):
5
return int(math.ceil(m/n))
6
7
8
-#Invoke the function with two intergers.
9
-print(car_route())
+# Invoke the function with two integers
+print(car_route(35, 50))
0 commit comments