Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/borisboutillier/advent-of-code-2023
My code for solving Advent of Code 2023 exercises in Rust
https://github.com/borisboutillier/advent-of-code-2023
Last synced: 15 days ago
JSON representation
My code for solving Advent of Code 2023 exercises in Rust
- Host: GitHub
- URL: https://github.com/borisboutillier/advent-of-code-2023
- Owner: BorisBoutillier
- License: other
- Created: 2023-11-29T15:04:31.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-31T07:44:37.000Z (about 1 year ago)
- Last Synced: 2024-10-31T23:42:18.996Z (2 months ago)
- Language: Rust
- Size: 320 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Advent of Code 2023
This is the code that I have developped to solve the puzzles of the [Advent of Code 2023](https://adventofcode.com/)
This is raw code quality, where my goal is to find the solution, not to be the most readable/maintainable code, in particular no cleaning is done after I have solved the puzzle.
Usage
```
# To run the provided example for each part:
cargo test --bin day-XX
# To run the
cargo run --release --bin day-XX -- [part1|part2] (-i|--input path_of_file)?
```- XX is the day
- [part1|part2] is for part 1 or part 2.
- --input: Defined path of input file to use, defaults to day-XX/input.txt, whichh is my personal input file from AoC.# A Question on a solution/code ?
-> File an issue, or you contact me on discord username 'bobox_214'As said, this code is raw, with no comment, no explanation. But if you are interested in one of my solution and have questions, don't hesitate to file an issue or contact me on discord, username 'bobox_214'.