Skip to content

Commit ef6b111

Browse files
authored
Update solution.hide.py
1 parent e4e89c3 commit ef6b111

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,5 +1,5 @@
1-
#Complete the funtion to compute how many seconds passed between the two timestamp.
21
def two_timestamp(hr1,min1,sec1,hr2,min2,sec2):
2+
# Your code here
33
fisrt_hour = hr1 * 3600
44
first_min = min1 * 60
55
final_first = fisrt_hour + first_min + sec1
@@ -10,5 +10,5 @@ def two_timestamp(hr1,min1,sec1,hr2,min2,sec2):
1010
return final_second - final_first
1111

1212

13-
#Invoke the fuction and pass two timestamps(6 intergers) as its argument.
14-
print(two_timestamp(1,1,1,2,2,2))
13+
# Invoke the function and pass two timestamps(6 intergers) as its arguments
14+
print(two_timestamp(1,1,1,2,2,2))

0 commit comments

Comments
 (0)