Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/borisboutillier/advent-of-code-2022
My code for the advent of code 2022, developped at the beginning of 2023
https://github.com/borisboutillier/advent-of-code-2022
adventofcode2022
Last synced: 3 days ago
JSON representation
My code for the advent of code 2022, developped at the beginning of 2023
- Host: GitHub
- URL: https://github.com/borisboutillier/advent-of-code-2022
- Owner: BorisBoutillier
- License: other
- Created: 2023-01-16T14:39:11.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-26T13:16:52.000Z (almost 2 years ago)
- Last Synced: 2024-10-31T23:42:19.345Z (about 2 months ago)
- Topics: adventofcode2022
- Language: Rust
- Homepage:
- Size: 144 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 2022
This is the code that I have developped to solve the puzzles of the [Advent of Code 2022](https://adventofcode.com/)
I have been working on this code during the beginning of 2023, and not during decembre 2022, but I have neither read nor watched anything related beforehand.
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.
Run with
```
cargo run --release --bin day-XX day-XX/FILE [1|2]
```- XX is the day
- FILE is either example.txt or input.txt, where input.txt if my input provided by adventofcode, you can test with your own.
- [1|2] is for part 1 or part 2. Usually all days code have both part still available in the code, but not the first few days.Note: `--release` is almost compulsory for day-16, day-19
# A Question on a solution/code ?
-> File an issueAs 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.
I'll happily answer the question and update the associated code, with better comments.