Skip to content

Commit 145ecec

Browse files
author
tuukkasarvi
committedDec 4, 2020
Update folder
1 parent e746fb6 commit 145ecec

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed
 

‎day_1_1.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
what do you get if you multiply them together?
55
"""
66
import numpy as np
7-
filename = 'input.txt'
7+
filename = 'data/input.txt'
88

99
if __name__ == '__main__':
1010
data = np.genfromtxt(filename)

‎day_1_2.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
In your expense report, what is the product of the three entries that sum to 2020?
1111
"""
1212
import numpy as np
13-
# folder = 'aoc_2020/'
14-
filename = 'input.txt'
13+
filename = 'data/input.txt'
1514

1615
if __name__ == '__main__':
1716
data = np.genfromtxt(filename)

‎day_2_1.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def is_password_valid(min, max, character, password):
3939

4040

4141
if __name__ == '__main__':
42-
filename = 'input_2.txt'
42+
filename = 'data/input_2.txt'
4343
with open(filename) as fp:
4444
n_valid = 0
4545
for line in fp:

‎day_2_2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def is_password_valid(i_1, i_2, character, password):
3535

3636

3737
if __name__ == '__main__':
38-
filename = 'input_2.txt'
38+
filename = 'data/input_2.txt'
3939
with open(filename) as fp:
4040
n_valid = 0
4141
for line in fp:

‎day_3.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def travel(self, start, vector):
7070

7171
def part1():
7272
map = Map()
73-
filepath = 'input_3.txt'
73+
filepath = 'data/input_3.txt'
7474
map.read_map(filepath)
7575
shape = map.shape()
7676
n_duplications = int(np.ceil(3 * shape[0] / shape[1]))
@@ -82,7 +82,7 @@ def part1():
8282

8383
def part2():
8484
map = Map()
85-
filepath = 'input_3.txt'
85+
filepath = 'data/input_3.txt'
8686
map.read_map(filepath)
8787
n_duplications = 100 # enough
8888
map.duplicate_to_right(n_duplications)

0 commit comments

Comments
 (0)
Please sign in to comment.