https://github.com/pavi2410/adventofcode2015
bit late, i know
https://github.com/pavi2410/adventofcode2015
advent-of-code aoc aoc-2015 aoc-2015-in-kotlin
Last synced: 2 months ago
JSON representation
bit late, i know
- Host: GitHub
- URL: https://github.com/pavi2410/adventofcode2015
- Owner: pavi2410
- Created: 2021-12-02T04:38:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-29T22:38:00.000Z (almost 2 years ago)
- Last Synced: 2025-01-28T00:36:04.106Z (4 months ago)
- Topics: advent-of-code, aoc, aoc-2015, aoc-2015-in-kotlin
- Language: Python
- Homepage:
- Size: 167 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AdventOfCode2015
My solutions to the [Advent of Code 2015](https://adventofcode.com/2015) challenges.
Current progress: Day 6 of 25
### My Toolkit
- Python 3
- Pytest### File structure
```
dayXX/
__init__.py
input.txt
main.py
test.py
```### Run tests
```shell
pytest dayXX/test.py
```### Run solution
```shell
python dayXX/main.py
```