Update things
This commit is contained in:
@@ -4,7 +4,6 @@ import be.vandewalleh.aoc.intcode.IntCodeInterpreter;
|
||||
import be.vandewalleh.aoc.utils.factory.Days;
|
||||
import be.vandewalleh.aoc.utils.input.Csv;
|
||||
import be.vandewalleh.aoc.utils.input.Day;
|
||||
import be.vandewalleh.aoc.utils.input.Input;
|
||||
|
||||
@Day(5)
|
||||
public class Day05 {
|
||||
@@ -17,8 +16,8 @@ public class Day05 {
|
||||
|
||||
private final int[] input;
|
||||
|
||||
public Day05(@Csv Input<int[]> input) {
|
||||
this.input = input.getValue();
|
||||
public Day05(@Csv int[] input) {
|
||||
this.input = input;
|
||||
}
|
||||
|
||||
private Long part1() {
|
||||
|
||||
Reference in New Issue
Block a user