Skip to content

Commit a1c9b48

Browse files
authored
Update path in day 3 solution
1 parent 983f69a commit a1c9b48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Advent of Code/2022/Day 3/day3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def parse_part2(file):
1818

1919

2020
def part_1():
21-
path = '/kaggle/input/advent-of-code-2022/day3.txt'
21+
path = './day3.in'
2222

2323
with open(path) as file:
2424
df = parse_part1(file)
@@ -33,7 +33,7 @@ def part_1():
3333

3434

3535
def part_2():
36-
path = '/kaggle/input/advent-of-code-2022/day3.txt'
36+
path = './day3.in'
3737

3838
with open(path) as file:
3939
df = parse_part2(file)

0 commit comments

Comments
 (0)