Compare commits

..

2 Commits

Author SHA1 Message Date
6d90ad5b41 Finished 2015-12-05 part 1 2023-12-05 20:12:33 +01:00
ca14013b36 Working on 2015-12-05 part 2 2023-12-05 19:34:48 +01:00
4 changed files with 1052 additions and 4 deletions

1000
2015/day5/input Normal file

File diff suppressed because it is too large Load Diff

40
2015/day5/part1.py Normal file
View 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
View File

@ -0,0 +1,5 @@
ugknbfddgicrmopn
aaa
jchzalrnumimnmhp
haegwjzuvuyypxyu
dvszwmarrgswjxmb

View File

@ -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!')