Skip to content

Commit e2dfaac

Browse files
author
Johannes Mattsson
committed
Moved static input
1 parent e088181 commit e2dfaac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

2020/src/Day1.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class Day1 {
99
public static int triple = 0;
1010

1111
public static void main(String[] args) throws FileNotFoundException {
12-
File file = new File("C:\\Projects\\AdventOfCode\\Day1Input.txt");
12+
File file = new File("C:\\Projects\\advent-of-code\\2020\\Day1Input.txt");
1313
Scanner scanner = new Scanner(file);
1414

1515
while (scanner.hasNextLine()) {

2020/src/Day2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public class Day2 {
77
public static HashMap<Integer, Integer> input = new HashMap<>();
88

99
public static void main(String[] args) throws FileNotFoundException {
10-
File file = new File("C:\\Projects\\AdventOfCode\\Day2Input.txt");
10+
File file = new File("C:\\Projects\\advent-of-code\\2020\\Day2Input.txt");
1111
Scanner scanner = new Scanner(file);
1212

1313
while (scanner.hasNextLine()) {

0 commit comments

Comments
 (0)