Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 385 Bytes

dayX.livemd

File metadata and controls

41 lines (28 loc) · 385 Bytes

Advent 2021 - Day X

Setup

Mix.install([
  {:kino, github: "livebook-dev/kino"}
])
input = Kino.Input.textarea("Please paste your input file:")
input =
  input
  |> Kino.Input.read()
  |> String.trim()

Utils

defmodule Utils do
end

Part 1

Part 2