My solutions for the advent of code!
Go to file
Andrew Lalis aa2d9cd442 Added day 6 solution. 2023-12-06 08:20:09 -05:00
day_1 Added java solution, updated readme. 2023-12-04 12:16:24 -05:00
day_2 Added day 2 solution. 2023-12-02 09:14:15 -05:00
day_3 Added day 3 solution. 2023-12-03 09:36:41 -05:00
day_4 Added day 4 solution. 2023-12-04 08:44:56 -05:00
day_5 Added day 5 solution (bad) 2023-12-05 09:45:29 -05:00
day_6 Added day 6 solution. 2023-12-06 08:20:09 -05:00
LICENSE Initial commit 2023-12-01 09:12:02 -05:00
README.md Added java solution, updated readme. 2023-12-04 12:16:24 -05:00

README.md

Advent of Code 2023

This repository has my solutions for this year's Advent of Code challenges. Each day's challenge will be placed into a directory named day_N, where N is the day of the challenge. Each day will have a solution program named solution.* (with the filetype depending on which programming language I used).

  • For D programs, you can run them with rdmd solution.d.
  • For Lua programs, you can run them with lua solution.lua.
  • For Java programs, you can run them with java solution.java.

Note that I try and solve the problems as fast as possible, but then I go back and clean up my solution, so what you see isn't really my ugly first attempt.