diff --git a/2024/day03/src/main.rs b/2024/day03/src/main.rs index 88c3ac5..5b17cee 100644 --- a/2024/day03/src/main.rs +++ b/2024/day03/src/main.rs @@ -12,11 +12,11 @@ // See the License for the specific language governing permissions and // limitations under the License. -use aoc_solution::AocSolutionSolver; use aoc_common::helpers::root_path; +use aoc_solution::AocSolutionSolver; use day03_2024::Day03; #[cfg(not(tarpaulin_include))] fn main() { Day03::try_solve_from_file(root_path("inputs/2024/day03")) -} \ No newline at end of file +} diff --git a/solution-runner/src/main.rs b/solution-runner/src/main.rs index 0368e0e..222d16f 100644 --- a/solution-runner/src/main.rs +++ b/solution-runner/src/main.rs @@ -69,4 +69,4 @@ fn main() { // AUTOGENERATED SOLUTIONS END println!("no solution found for year {}, day {}", args.year, args.day); -} \ No newline at end of file +}