day03 #1

Merged
eoghanconlon73 merged 17 commits from day03 into main 2024-12-09 15:05:01 +00:00
Showing only changes of commit 922c991385 - Show all commits

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;
}