Skip to content

Latest commit

 

History

History
211 lines (154 loc) · 9.22 KB

README.md

File metadata and controls

211 lines (154 loc) · 9.22 KB

Advent of Gleam

Advent of Code solutions in Gleam.

Why

Running locally

  1. Install Gleam
  2. Run all tests:
    gleam test
    Or start watch mode (possible thanks to Glacier):
    gleam test -- --glacier
    Or run a single day's tests (this too is possible thanks to Glacier):
    gleam test -- test/year_2023/day_01_test.gleam

About puzzle inputs and tests

The tests use the example inputs from adventofcode.com.

To also use your own puzzle inputs, create e.g. test/year_2023/day_01_input.txt (ignored by Git). Though note that the test assertions use my personal results (your results will be different with your own puzzle inputs).

Solutions