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 c315c3a commit f50f10dCopy full SHA for f50f10d
exercises/015-car_route/app.py
@@ -1,9 +1,7 @@
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
-
+# Complete the function to return the amount of days it will take to cover a route
4
def car_route(n,m):
5
return None
6
7
8
-#Invoke the function with two intergers.
9
-print(car_route())
+# Invoke the function with two integers
+print(car_route())
0 commit comments