advent/README.md

48 lines
1.4 KiB
Markdown
Raw Normal View History

2025-01-14 15:15:09 -05:00
# Advent
2025-01-06 08:57:49 -05:00
2025-01-14 15:15:09 -05:00
The goal of this project is to get all 500 currently available stars in the form
2025-01-23 00:36:10 -05:00
of one single Idris application, and thoroughly document the results as literate
Idris files.
2025-01-06 08:57:49 -05:00
# Index of non-day modules
- [Runner](src/Runner.md)
2025-01-14 15:15:09 -05:00
Provides data structures for structuring the division of the project into
years, days, and parts.
2025-01-10 14:16:31 -05:00
- [Main](src/Main.md)
2025-01-14 15:15:09 -05:00
Provides the `Runner` based command line interface for running a selected day's
solution.
2025-01-10 14:16:31 -05:00
2025-01-06 08:57:49 -05:00
- [Util](src/Util.md)
2025-01-14 15:15:09 -05:00
Provides extensions of the functionality of the standard library and external
libraries. Extensions to the standard library are in the base of this module.
2025-01-06 08:57:49 -05:00
- [Util.Eff](src/Util/Eff.md)
2025-01-14 15:15:09 -05:00
Extend the functionality of the effects included in the
[eff](https://github.com/stefan-hoeck/idris2-eff/) library
2025-01-06 08:57:49 -05:00
2025-01-23 00:17:19 -05:00
- [Util.Digits](src/Util/Digits.md)
Provide views that enable recursively pattern matching numbers as lists of
digits, in both ascending and descending order of significance.
2025-01-06 08:57:49 -05:00
# Index of years and days
- 2015
- [Day 1](src/Years/Y2015/Day1.md)
- [Day 2](src/Years/Y2015/Day2.md)
2025-01-06 14:04:10 -05:00
- [Day 3](src/Years/Y2015/Day3.md)
2025-01-07 09:26:28 -05:00
- [Day 4](src/Years/Y2015/Day4.md)
2025-01-07 11:47:05 -05:00
- [Day 5](src/Years/Y2015/Day5.md)
2025-01-10 13:31:00 -05:00
- [Day 6](src/Years/Y2015/Day6.md)
2025-01-10 18:02:30 -05:00
- [Day 7](src/Years/Y2015/Day7.md)
2025-01-14 15:52:04 -05:00
- [Day 8](src/Years/Y2015/Day8.md)
2025-01-17 22:20:51 -05:00
- [Day 9](src/Years/Y2015/Day9.md)
2025-01-22 22:23:05 -05:00
- [Day 10](src/Years/Y2015/Day10.md)
2025-01-22 22:29:38 -05:00
- [Day 11](src/Years/Y2015/Day11.md)