-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3.py
37 lines (34 loc) · 1.04 KB
/
3.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
36
37
def prio(c):
if(c.islower()):
return ord(c) - 96
else:
return ord(c) - 38
def firstPart():
with open("input/3.txt", "r") as f:
result = 0
for x in f.readlines():
fullList = list(x)
middle = len(fullList)//2
first = fullList[:middle]
second = fullList[middle:]
if '\n' in second:
second.remove('\n')
double = list(set(first).intersection(set(second)))
result += prio(double[0])
return result
def secondPart():
with open("input/3.txt", "r") as f:
currList = []
result = 0
for x in f.readlines():
x = list(x)
if '\n' in x:
x.remove('\n')
currList.append(x)
if len(currList) == 3:
double = list(set(currList[0]).intersection(list(set(currList[1]).intersection(set(currList[2])))))
result += prio(double[0])
currList = []
return result
print(firstPart())
print(secondPart())