File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 6
6
import java .util .Optional ;
7
7
import java .util .Scanner ;
8
8
9
- public class Day1 {
9
+ public class Day01 {
10
10
public static HashMap <Integer , Integer > input = new HashMap <>();
11
11
public static int triple = 0 ;
12
12
Original file line number Diff line number Diff line change 4
4
import java .io .FileNotFoundException ;
5
5
import java .util .Scanner ;
6
6
7
- public class Day2 {
7
+ public class Day02 {
8
8
9
9
public static void main (String [] args ) throws FileNotFoundException {
10
10
File file = new File ("./2020/Day2Input.txt" );
Original file line number Diff line number Diff line change 5
5
import java .util .ArrayList ;
6
6
import java .util .Scanner ;
7
7
8
- public class Day3 {
8
+ public class Day03 {
9
9
10
10
public static void main (String [] args ) throws FileNotFoundException {
11
11
File file = new File ("./2020/Day3Input.txt" );
Original file line number Diff line number Diff line change 6
6
import java .util .Collections ;
7
7
import java .util .Scanner ;
8
8
9
- public class Day5 {
9
+ public class Day05 {
10
10
public static void main (String [] args ) throws FileNotFoundException {
11
11
File file = new File ("./2020/Day5Input.txt" );
12
12
Scanner scanner = new Scanner (file );
Original file line number Diff line number Diff line change 6
6
import java .util .Collections ;
7
7
import java .util .Scanner ;
8
8
9
- public class Day6 {
9
+ public class Day06 {
10
10
public static void main (String [] args ) throws FileNotFoundException {
11
11
File file = new File ("./2020/Day6Input.txt" );
12
12
Scanner scanner = new Scanner (file );
Original file line number Diff line number Diff line change 4
4
import java .io .FileNotFoundException ;
5
5
import java .util .*;
6
6
7
- public class Day7 {
7
+ public class Day07 {
8
8
public static void main (String [] args ) throws FileNotFoundException {
9
9
File file = new File ("./2020/Day7Input.txt" );
10
10
Scanner scanner = new Scanner (file );
Original file line number Diff line number Diff line change 5
5
import java .util .ArrayList ;
6
6
import java .util .Scanner ;
7
7
8
- public class Day8 {
8
+ public class Day08 {
9
9
public static void main (String [] args ) throws FileNotFoundException {
10
10
File file = new File ("./2020/Day8Input.txt" );
11
11
Scanner scanner = new Scanner (file );
Original file line number Diff line number Diff line change 4
4
import java .io .FileNotFoundException ;
5
5
import java .util .*;
6
6
7
- public class Day9 {
7
+ public class Day09 {
8
8
public static void main (String [] args ) throws FileNotFoundException {
9
9
File file = new File ("./2020/Day9Input.txt" );
10
10
Scanner scanner = new Scanner (file );
You can’t perform that action at this time.
0 commit comments