Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jbschwartz/aoc
Advent of Code 202x
https://github.com/jbschwartz/aoc
advent-of-code advent-of-code-2022 advent-of-code-2023
Last synced: 8 days ago
JSON representation
Advent of Code 202x
- Host: GitHub
- URL: https://github.com/jbschwartz/aoc
- Owner: jbschwartz
- Created: 2022-12-09T21:21:24.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-04T18:23:33.000Z (6 months ago)
- Last Synced: 2024-08-05T00:40:02.713Z (6 months ago)
- Topics: advent-of-code, advent-of-code-2022, advent-of-code-2023
- Language: Python
- Homepage:
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code
My solutions to [AOC](https://adventofcode.com) written in Python.
## Running
Run solutions with:
```python -m aoc run 2022 8```
Where the first positional argument is the year and the second positional argument is the day.
The `--small` flag runs the solution for the small data (usually found in the text of the problem). Otherwise the solution for the main data is run.
## Stubbing
Stub out input and solution files with:
```python -m aoc stub 2022 8```
Where the first positional argument is the year and the second positional argument is the day.