Skip to content

๐ŸŽ„ Solutions for the advent of code 2023

License

Notifications You must be signed in to change notification settings

giant-teapot/aoc-rs-2023

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

24 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐ŸŽ„ Advent of code 2023

This repository hosts personal solutions to advent of code puzzles.

This year's problems can be found here: https://adventofcode.com/2023

It is implemented in Rust as a learning exercise. No claim is made on the quality or efficiency of any of the implementations.

Usage instructions

There is one binary per day/problem. The implementations can be found under src/bin.

To run any day's solution, proceed as follows:

  • Download and save your problem's input under input/.
  • The input file MUST be named input/day<N>.txt, where <N> is the problem number.
  • Build and run the corresponding binary:
cargo run --bin day<N>