Compare commits
2 Commits
44b07c2f8f
...
865bb99c90
Author | SHA1 | Date | |
---|---|---|---|
|
865bb99c90 | ||
|
12bcda2d22 |
2000
data/day_1.txt
Normal file
2000
data/day_1.txt
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,8 +1,8 @@
|
|||||||
include(joinpath(readchomp(`git rev-parse --show-toplevel`), "aoc.jl"))
|
include(joinpath(readchomp(`git rev-parse --show-toplevel`), "aoc.jl"))
|
||||||
import .Aoc: @aoc
|
import .Aoc: @aoc
|
||||||
|
|
||||||
function sliding(in, w)
|
function sliding(in, w::Int64; step::Int = 1)
|
||||||
((@view in[i:i+w-1]) for i in 1:1:length(in)-w+1)
|
((@view in[i:i+w-1]) for i in 1:step:length(in)-w+1)
|
||||||
end
|
end
|
||||||
|
|
||||||
function day1(in, w)
|
function day1(in, w)
|
||||||
@ -17,12 +17,12 @@ function day1(in, w)
|
|||||||
c
|
c
|
||||||
end
|
end
|
||||||
|
|
||||||
function p1(input)
|
function p1(input::Vector{String})
|
||||||
day1(input, 1)
|
day1(input, 1)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
function p2(input)
|
function p2(input::Vector{String})
|
||||||
day1(input, 3)
|
day1(input, 3)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user