Skip to content

Commit 4e9319c

Browse files
authored
Update solution.hide.py
1 parent a086e8c commit 4e9319c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Complete the function to return how many hrs and min are displayed on the 24th digital clock.
1+
# Complete the function to return how many hours and minutes are displayed on the 24h digital clock
22
def digital_clock(n):
33
return ((n // 60), (n % 60))
44

5-
#Invoke the function with any interger (seconds after midnight)
5+
# Invoke the function with any integer (minutes after midnight)
66
print(digital_clock(150))

0 commit comments

Comments
 (0)