mirror of
https://github.com/bvanroll/advent-of-code-2020.git
synced 2025-08-29 12:02:44 +00:00
lesgo
This commit is contained in:
32
06/task1.py
Normal file
32
06/task1.py
Normal file
@@ -0,0 +1,32 @@
|
||||
# python again :^P
|
||||
import string
|
||||
|
||||
|
||||
groups = []
|
||||
lines = open("input.txt").read().split("\n")
|
||||
groupIndex = 0
|
||||
personIndex = 0
|
||||
|
||||
tline = ""
|
||||
|
||||
for line in lines:
|
||||
tline += line
|
||||
if len(line) == 0:
|
||||
groups.append(tline)
|
||||
tline = ""
|
||||
|
||||
groups.append(tline)
|
||||
|
||||
def scoreGroup(group):
|
||||
gscore = 0
|
||||
qs = "abcdefghijklmnopqrstuvwxyz"
|
||||
for char in qs:
|
||||
if char in group:
|
||||
gscore += 1
|
||||
return gscore
|
||||
|
||||
score = 0
|
||||
for group in groups:
|
||||
score += scoreGroup(group)
|
||||
|
||||
print(score)
|
Reference in New Issue
Block a user