Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tcbegley/advent-of-code
My solutions to advent of code: https://adventofcode.com/
https://github.com/tcbegley/advent-of-code
advent-of-code python
Last synced: 3 months ago
JSON representation
My solutions to advent of code: https://adventofcode.com/
- Host: GitHub
- URL: https://github.com/tcbegley/advent-of-code
- Owner: tcbegley
- License: mit
- Created: 2018-03-19T08:56:17.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2023-12-25T12:03:52.000Z (about 1 year ago)
- Last Synced: 2023-12-26T01:39:32.815Z (about 1 year ago)
- Topics: advent-of-code, python
- Language: Python
- Homepage:
- Size: 248 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# advent-of-code
My solutions to various [advent of code](http://adventofcode.com/) problems.
Written for Python 3.10+.## Generate boilerplate
This repo contains a helper package to generate boilerplate code each day and
fetch data. To use it first follow the instructions for authenticating
[advent-of-code-data][aocd]. Then install with```sh
pip install .
```Boilerplate can be generated and data fetched with
```sh
lets-go
```or for a specific year and day
```sh
lets-go 2021 1
```[aocd]: https://github.com/wimglenn/advent-of-code-data