Compare commits
2 Commits
2a7e04ef2b
...
6d90ad5b41
Author | SHA1 | Date | |
---|---|---|---|
6d90ad5b41 | |||
ca14013b36 |
1000
2015/day5/input
Normal file
1000
2015/day5/input
Normal file
File diff suppressed because it is too large
Load Diff
40
2015/day5/part1.py
Normal file
40
2015/day5/part1.py
Normal file
@ -0,0 +1,40 @@
|
||||
#!/bin/python3
|
||||
|
||||
import sys
|
||||
from pprint import pprint
|
||||
|
||||
input_f = sys.argv[1]
|
||||
|
||||
result = 0
|
||||
|
||||
with open(input_f) as file:
|
||||
for line in file:
|
||||
tmp = line.rstrip()
|
||||
print(tmp)
|
||||
vowel_count = 0
|
||||
t = ['ab','cd','pq','xy']
|
||||
first = False
|
||||
second = False
|
||||
for i in t:
|
||||
if tmp.find(i) != -1:
|
||||
print(" is naughty because it contains " + i)
|
||||
first = True
|
||||
break
|
||||
f = 'aeiou'
|
||||
for idx,i in enumerate(tmp):
|
||||
if idx+1 < len(tmp) and first == False:
|
||||
#print(idx,idx+1,len(tmp))
|
||||
if i == tmp[idx+1]:
|
||||
second = True
|
||||
if second == False and first == False:
|
||||
print("naughte cus no double")
|
||||
for idx,i in enumerate(tmp):
|
||||
if f.find(i) != -1 and second == True and first == False:
|
||||
vowel_count += 1
|
||||
if vowel_count == 3:
|
||||
print(" is nice because it contains " + str(vowel_count) + " vowels and double letters")
|
||||
result += 1
|
||||
if second == True and vowel_count < 3:
|
||||
print("naughty cus " + str(vowel_count) + " vowels")
|
||||
print()
|
||||
print(result)
|
5
2015/day5/test
Normal file
5
2015/day5/test
Normal file
@ -0,0 +1,5 @@
|
||||
ugknbfddgicrmopn
|
||||
aaa
|
||||
jchzalrnumimnmhp
|
||||
haegwjzuvuyypxyu
|
||||
dvszwmarrgswjxmb
|
@ -11,8 +11,8 @@ seeds, *maps = open(input_f).read().split('\n\n')
|
||||
|
||||
seeds = seeds.split(':')[1].split()
|
||||
|
||||
pprint(seeds)
|
||||
pprint(maps)
|
||||
#pprint(seeds)
|
||||
#pprint(maps)
|
||||
|
||||
tmp_seeds = []
|
||||
|
||||
@ -22,20 +22,23 @@ for i in range(0,len(seeds)-1,2):
|
||||
tmp_seeds.append(j)
|
||||
|
||||
seeds = tmp_seeds
|
||||
#print(seeds)
|
||||
|
||||
total=len(seeds)*7
|
||||
count = 0
|
||||
|
||||
for i in maps:
|
||||
tmp = []
|
||||
i = i.split()
|
||||
#print(i)
|
||||
|
||||
for ldx,l in enumerate(seeds):
|
||||
l = int(l)
|
||||
count += 1
|
||||
for x in range(2,len(i)-2,3):
|
||||
d = int(i[x])
|
||||
s = int(i[x+1])
|
||||
r = int(i[x+2])
|
||||
#print('Looking for ' + str(l) + ' in range ' + str(s) + ' > ' + str((s+r)),end='')
|
||||
print(str(round(count/total*100,2)))
|
||||
if s <= l and l < s + r:
|
||||
seeds[ldx] = d + (l - s)
|
||||
#print('. Found!')
|
||||
|
Loading…
Reference in New Issue
Block a user