Skip to content

Commit c6dfa94

Browse files
committed
initial commit
1 parent c1d0506 commit c6dfa94

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

Time delta.py

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import os
2+
from datetime import datetime
3+
4+
def time_delta(t1, t2):
5+
time_format = '%a %d %b %Y %H:%M:%S %z'
6+
t1 = datetime.strptime(t1, time_format)
7+
t2 = datetime.strptime(t2, time_format)
8+
return str(int(abs(t1-t2).total_seconds()))
9+
10+
11+
if __name__ == '__main__':
12+
fptr = open(os.environ['OUTPUT_PATH'], 'w')
13+
14+
t = int(input())
15+
16+
for t_itr in range(t):
17+
t1 = input()
18+
19+
t2 = input()
20+
21+
delta = time_delta(t1, t2)
22+
23+
fptr.write(delta + '\n')
24+
25+
fptr.close()
26+

0 commit comments

Comments
 (0)