2022 3a solved

master
kwout 9 months ago
parent 41d26912d2
commit 34be3f855d
  1. 1
      .gitignore
  2. 15
      2022/3.py

1
.gitignore vendored

@ -4,4 +4,5 @@
*.swp
*.swo
*.txt
.DS_Store

@ -0,0 +1,15 @@
lines = [i for i in open("input.txt", 'r').read().splitlines()]
letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
sum = 0
for l in lines:
found = False
for c in l[:int(len(l)/2)]:
for d in l[int(len(l)/2):]:
if c == d:
if not found:
sum += letters.index(c)+1
found = True
print(sum)
Loading…
Cancel
Save