mirror of
https://github.com/wezm/advent-of-code.git
synced 2024-11-10 01:42:33 +00:00
26 lines
518 B
Gleam
26 lines
518 B
Gleam
|
import gleeunit
|
||
|
import gleeunit/should
|
||
|
import days/day_10.{Trace}
|
||
|
import gleam/erlang/file
|
||
|
import gleam/string
|
||
|
import gleam/list
|
||
|
|
||
|
pub fn main() {
|
||
|
gleeunit.main()
|
||
|
}
|
||
|
|
||
|
pub fn execute_test() {
|
||
|
["noop", "addx 3", "addx -5"]
|
||
|
|> list.fold([Trace(1, 0)], day_10.execute)
|
||
|
|> list.reverse
|
||
|
|> should.equal([Trace(1, 0), Trace(1, 1), Trace(4, 3), Trace(-1, 5)])
|
||
|
}
|
||
|
|
||
|
pub fn pt1_test() {
|
||
|
assert Ok(input) = file.read("input/day_10_pt1_test.txt")
|
||
|
input
|
||
|
|> string.trim_right
|
||
|
|> day_10.pt_1
|
||
|
|> should.equal(13140)
|
||
|
}
|