-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvent2017_1.py
35 lines (29 loc) · 910 Bytes
/
advent2017_1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python3
# http://adventofcode.com/2017
def advent_sum(a):
matches = []
for i, item in enumerate(a[:-1]):
if item == a[i + 1]:
matches.append(int(item))
if a[-1] == a[0]:
matches.append(int(a[-1]))
return (sum(matches))
def advent_half_list_sum(a):
matches = []
half = len(a) // 2
for i, item in enumerate(a):
if i < half:
if item == a[half + i]:
matches.append(int(item))
else:
if item == a[i - half]:
matches.append(int(item))
# if a[-1] == a[0]:
# matches.append(int(a[-1]))
return (sum(matches))
if __name__ == "__main__":
with open("input_advent2017_1.txt") as file:
for line in file:
print(advent_sum((line.strip())))
print(advent_half_list_sum((line.strip())))
# print(advent_half_list_sum("1221"))