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 a086e8c commit 4e9319cCopy full SHA for 4e9319c
exercises/019-digital_clock/solution.hide.py
@@ -1,6 +1,6 @@
1
-#Complete the function to return how many hrs and min are displayed on the 24th digital clock.
+# Complete the function to return how many hours and minutes are displayed on the 24h digital clock
2
def digital_clock(n):
3
return ((n // 60), (n % 60))
4
5
-#Invoke the function with any interger (seconds after midnight)
+# Invoke the function with any integer (minutes after midnight)
6
print(digital_clock(150))
0 commit comments