Skip to content

Commit 02ab803

Browse files
authored
Update solution.hide.py
1 parent 2bce900 commit 02ab803

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#Complete the function to calculate how many hours and minutes are passed since midnight.
21
def hours_minutes(secs):
2+
# Your code here
33
minutes = secs // 60
44
hours = minutes // 60
55
minutes = minutes % 60
66
return (hours, minutes)
77

8-
#Invoke the funtion and pass any interger as its argument.
9-
print(hours_minutes(3900))
8+
# Invoke the function and pass any integer as its argument
9+
print(hours_minutes(3900))

0 commit comments

Comments
 (0)