Advent of Code 2024

thoughts and solutions

 

Testing

file:test/runtests.jl
using Test
using Printf

function main()
    include("ParsingSpec.jl")
    @testset "Puzzles" begin
        @testset "Day $i" for i = 1:25
            day_digits = @sprintf("%02u", i)
            include("Day$(day_digits)Spec.jl")
        end
    end
end

main()