Fix. Changing sample function to match what the input function uses

Signed-off-by: Eoghan Conlon <git@eoghanconlon.ie>
This commit is contained in:
Eoghan Conlon 2024-12-09 12:03:42 +00:00
parent bb85b88e35
commit 922c991385

View file

@ -11,7 +11,7 @@ public class Day03 extends Input {
public int part1_sample(){
int rValue = 0;
String input = this.input.getSample_input().getFirst();
for(String input : this.input.getSample_input()) {
String pattern = "mul(";
String num1_s = "";
String num2_s = "";
@ -52,6 +52,7 @@ public class Day03 extends Input {
}
}
}
}
return rValue;
}