Solution to Day 4: High-Entropy Passphrases
# aoc_4.py | |
lines = open('input_d4.txt','r').readlines() | |
lines = [w.replace('\n','').split(' ') for w in lines] | |
print lines | |
count = 0 | |
match = True | |
for l in lines: | |
match = True | |
for j in range(len(l)): | |
for k in range(j+1, len(l)): | |
if l[j] == l[k]: | |
match = False | |
break | |
if match: | |
count += 1 | |
print count |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment