element.version === currentVersion)) { versionNodes.unshift({ version: currentVersion, url: "#" }); } document.querySelector("#project-version").innerHTML = versionNodes.reduce( (acc, element) => { const status = currentVersion === element.version ? "selected disabled" : ""; return ` ${acc} `; }, `
aoc_2024 · v1.0.0

github actions

aoc_2024

Solutions for Advent of Code 2024 in Gleam.

Documentation: https://tiborpilz.github.io/aoc_2024/

Usage:

gleam run day_5 # Run the solution for day 5

Details

Each day’s solution is implemented in a seperate module, e.g. day_1: day_1

To help with some solutions, this project uses a shared grid module, see: grid

Additionally, some shared functionality is implemented in the utils module, see: utils

Search Document