View Source AoC (aoc v0.9.0)

Summary

Types

@type file() :: input_path() | %AoC.Input.FakeFile{content: term()}
@type input() :: binary() | File.Stream.t()
@type input_path() :: binary()
@type part() :: :part_one | :part_two
@type problem() :: any()

Functions

Link to this function

run(year, day, part, timer? \\ false)

View Source