-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2020P2.py
28 lines (21 loc) · 904 Bytes
/
2020P2.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
with open("AoC2020_Day2_input.txt", 'r') as file:
crrpt = file.readlines()
def isAllowedOld(policy):
a, b = policy.index(r'-'), policy.index(r':')
atleast, atmost = int(policy[:a]), int(policy[a+1:b-1])
requi = policy[b-1]
# -1 due to the fact that policy also has requi at the index b-1 and hence count in the password is one more than the actual count
return atleast <= policy.count(requi) - 1 <= atmost
def isAllowedNew(policy):
a, b = policy.index(r'-'), policy.index(r':')
index1, index2 = int(policy[:a]), int(policy[a+1:b-1])
requi = policy[b-1]
return (policy[index1 + b+2 - 1] == requi) ^ (policy[index2 + b+2 - 1] == requi)
cnt = 0
for i in crrpt:
if isAllowedNew(i):
cnt += 1
print(cnt)
with open('output.txt', 'w') as file:
for i in crrpt:
file.write(f"{i.strip() : <40}{isAllowedNew(i)} \n")