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 62707b5 commit e4e89c3Copy full SHA for e4e89c3
exercises/008-two_timestamps/app.py
@@ -1,8 +1,7 @@
1
-#Complete the funtion to compute how many seconds passed between the two timestamp.
2
def two_timestamp(hr1,min1,sec1,hr2,min2,sec2):
3
-
+ # Your code here
4
return None
5
6
7
-#Invoke the fuction and pass two timestamps(6 intergers) as its argument.
8
-print(two_timestamp(1,1,1,2,2,2))
+# Invoke the function and pass two timestamps(6 intergers) as its arguments
+print(two_timestamp(1,1,1,2,2,2))
0 commit comments