Skip to content

Commit bfef736

Browse files
authored
Update solution.hide.py
1 parent f50f10d commit bfef736

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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.
31
import math
2+
3+
# Complete the function to return the amount of days it will take to cover a route
44
def car_route(n,m):
55
return int(math.ceil(m/n))
66

77

8-
#Invoke the function with two intergers.
9-
print(car_route())
8+
# Invoke the function with two integers
9+
print(car_route(35, 50))

0 commit comments

Comments
 (0)