Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wbh1/adventofcode2023
2023 Advent of Code solutions
https://github.com/wbh1/adventofcode2023
Last synced: about 1 month ago
JSON representation
2023 Advent of Code solutions
- Host: GitHub
- URL: https://github.com/wbh1/adventofcode2023
- Owner: wbh1
- Created: 2023-12-01T14:15:10.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-02T20:28:12.000Z (12 months ago)
- Last Synced: 2024-01-02T21:38:18.111Z (12 months ago)
- Language: Python
- Size: 125 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2023
I'm using Python this year because I don't have the time to use something else :(## Usage
Use the `aoc.py` script to run solutions like so:```console
❯ ./aoc.py 1
```## Testing
I use pytest for validating that my solution matches the expected output from the sample data in each problem. To run a test:```console
❯ pytest solutions/test_day1.py
```