Completing every advent of code problem in Idris 2 for fun and profit
Find a file
2025-01-23 00:30:11 -05:00
src Revise Runner 2025-01-23 00:30:11 -05:00
.gitignore Overhaul logging 2025-01-09 15:49:12 -05:00
advent.ipkg Add refined dependency 2025-01-22 23:58:10 -05:00
pack.toml Initial commit 2025-01-04 09:48:10 -05:00
README.md Documentation tweaks and fixes 2025-01-23 00:17:19 -05:00

Advent

The goal of this project is to get all 500 currently available stars in the form of one single idris application, and thoroughly document the results as literate idris files.

Index of non-day modules

  • Runner

    Provides data structures for structuring the division of the project into years, days, and parts.

  • Main

Provides the Runner based command line interface for running a selected day's solution.

  • Util

    Provides extensions of the functionality of the standard library and external libraries. Extensions to the standard library are in the base of this module.

    • Util.Eff

      Extend the functionality of the effects included in the eff library

    • Util.Digits

      Provide views that enable recursively pattern matching numbers as lists of digits, in both ascending and descending order of significance.

Index of years and days