diff options
Diffstat (limited to 'AoC2022/01')
-rw-r--r-- | AoC2022/01/solver.jl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AoC2022/01/solver.jl b/AoC2022/01/solver.jl index a73deb7..104d224 100644 --- a/AoC2022/01/solver.jl +++ b/AoC2022/01/solver.jl @@ -1,7 +1,7 @@ using Test rations = open("input", "r") do f - map(x->parse.(Int, eachsplit(x)) |> sum, eachsplit(read(f, String), "\n\n")) |> sort + map(x -> parse.(Int, eachsplit(x)) |> sum, eachsplit(read(f, String), "\n\n")) |> sort end @testset "solutions" begin |