Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/backwardspy/aoc
advent of code solutions
https://github.com/backwardspy/aoc
advent-of-code advent-of-code-2022
Last synced: about 2 months ago
JSON representation
advent of code solutions
- Host: GitHub
- URL: https://github.com/backwardspy/aoc
- Owner: backwardspy
- License: mit
- Created: 2022-12-02T17:22:43.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-18T20:08:47.000Z (about 2 years ago)
- Last Synced: 2024-10-07T07:41:31.073Z (3 months ago)
- Topics: advent-of-code, advent-of-code-2022
- Language: Python
- Homepage: https://adventofcode.com/
- Size: 39.1 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# advent of code 2022
## python
python solutions are kept in [py/](./py/)
these are generally the smaller, more straight-forward solutions that i start
with each day.run them from the root of the project like so:
```bash
$ python py/day2.py
```## rust
rust solutions are kept in [rs/](./rs/)
i usually write these after solving the puzzles in python. these
implementations are more focused on modularity or interesting rust features
than just solving the given problem.run them with cargo from the [rs/](./rs/) directory like so:
```bash
$ cargo run --bin day2
```