mirror of
https://github.com/peter-tanner/advent-of-code-2020.git
synced 2024-11-30 10:50:17 +08:00
21 lines
322 B
Python
21 lines
322 B
Python
lines = open('input').read().splitlines()
|
|
|
|
arr = []
|
|
_ = []
|
|
for line in lines:
|
|
if line == '':
|
|
arr.append(_)
|
|
_ = []
|
|
else:
|
|
_.append(list(line))
|
|
arr.append(_)
|
|
|
|
c = 0
|
|
for group in arr:
|
|
s = []
|
|
for p in group:
|
|
s = s+p
|
|
# print(group)
|
|
# print(s)
|
|
c += len(set(s))
|
|
print(c) |