day 1, one unclear rule prolonged part 2
This commit is contained in:
commit
46b195249c
|
@ -0,0 +1,22 @@
|
||||||
|
import sys
|
||||||
|
|
||||||
|
D = [str(i) for i in range(1,10)]
|
||||||
|
if sys.argv[1] == "2":
|
||||||
|
D += ['one','two','three','four','five','six','seven','eight','nine']
|
||||||
|
|
||||||
|
def process_line(l):
|
||||||
|
k = list()
|
||||||
|
p = 0
|
||||||
|
while (p<len(l)):
|
||||||
|
for i,d in enumerate(D):
|
||||||
|
if l[p:p+len(d)] == d:
|
||||||
|
k.append(i%9+1)
|
||||||
|
break
|
||||||
|
p += 1
|
||||||
|
return '!'.join(map(str,k)), k[0]*10 + k[-1] if len(k)>0 else 0
|
||||||
|
|
||||||
|
R=0
|
||||||
|
for l in sys.stdin.readlines():
|
||||||
|
n = process_line(l[:-1])
|
||||||
|
R+=n[1]
|
||||||
|
print(R)
|
Loading…
Reference in New Issue