File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ public class Day1 {
9
9
public static int triple = 0 ;
10
10
11
11
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" );
13
13
Scanner scanner = new Scanner (file );
14
14
15
15
while (scanner .hasNextLine ()) {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ public class Day2 {
7
7
public static HashMap <Integer , Integer > input = new HashMap <>();
8
8
9
9
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" );
11
11
Scanner scanner = new Scanner (file );
12
12
13
13
while (scanner .hasNextLine ()) {
You can’t perform that action at this time.
0 commit comments