Powered by AppSignal & Oban Pro
Would you like to see your link here? Contact us

Advent of code day 00

2024/livebooks/day-00.livemd

Advent of code day 00

Mix.install([
  {:kino, "~> 0.5.0"}
])

Setup input

example = Kino.Input.textarea("Please paste your input example:")
input = Kino.Input.textarea("Please paste your real input:")

Part 01

example
  |> Kino.Input.read()

Part 02