Skip to content

Commit 88d39d9

Browse files
authored
Update day6.py
1 parent 1c57e7d commit 88d39d9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: day6.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/local/bin/snek
22
# cat day6input.txt day6input.txt | snek ./day6.py
3+
import time
34

45
start = time.monotonic()
56
n = 4
@@ -118,4 +119,4 @@
118119
print(i+1)
119120
break
120121
input()
121-
print('%f s' % time.monotonic()-start)
122+
print('%f s' % (time.monotonic()-start))

0 commit comments

Comments
 (0)