Skip to content

Commit f50f10d

Browse files
authored
Update app.py
1 parent c315c3a commit f50f10d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

exercises/015-car_route/app.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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-
1+
# Complete the function to return the amount of days it will take to cover a route
42
def car_route(n,m):
53
return None
64

75

8-
#Invoke the function with two intergers.
9-
print(car_route())
6+
# Invoke the function with two integers
7+
print(car_route())

0 commit comments

Comments
 (0)