Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jwcook/advent-of-code
https://github.com/jwcook/advent-of-code
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jwcook/advent-of-code
- Owner: JWCook
- Created: 2023-12-02T05:34:42.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-13T07:04:18.000Z (about 1 year ago)
- Last Synced: 2024-10-15T13:47:31.485Z (2 months ago)
- Language: Python
- Size: 336 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code
Python solutions used to solve puzzles for [Advent of Code](https://adventofcode.com).Installation:
```py
poetry install
```Usage:
```ini
Usage: aoc [OPTIONS] [PUZZLE_IDS]...Run the specified puzzles, or all puzzles for the year if none are given.
╭─ Options ────────────────────────────────────────────────────────╮
│ --test -t Use test input │
│ --year -y AoC year to run (default: 2023) │
│ --create -c Create a template for a new puzzle │
│ --verbose -v(vv) Increase logging verbosity │
│ --help Show this message and exit │
╰──────────────────────────────────────────────────────────────────╯
```