https://github.com/tomdewildt/advent-of-code-2022
Solutions for the Advent of Code 2022 problems implemented in Python
https://github.com/tomdewildt/advent-of-code-2022
actions advent-of-code-2022 black click pylint python
Last synced: 24 days ago
JSON representation
Solutions for the Advent of Code 2022 problems implemented in Python
- Host: GitHub
- URL: https://github.com/tomdewildt/advent-of-code-2022
- Owner: tomdewildt
- License: mit
- Created: 2022-11-18T14:45:49.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-05-21T03:27:15.000Z (about 2 months ago)
- Last Synced: 2025-05-21T04:28:55.010Z (about 2 months ago)
- Topics: actions, advent-of-code-2022, black, click, pylint, python
- Language: Python
- Homepage:
- Size: 97.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2022
[](https://github.com/tomdewildt/advent-of-code-2022/actions/workflows/ci.yml)
[](https://codecov.io/gh/tomdewildt/advent-of-code-2022)
[](https://github.com/tomdewildt/advent-of-code-2022/blob/master/LICENSE)Solutions for the [Advent of Code 2022](https://adventofcode.com/2022) problems implemented in [Python](https://www.python.org/).
# How To Run
Prerequisites:
* virtualenv version ```20.0.3``` or later
* python version ```3.8.5``` or later
* pylint version ```2.4.4``` or later
* black version ```19.10b0``` or later### Development
1. Run ```make init``` to initialize the environment.
2. Run ```make run``` to execute the challenge.### Test
1. Run ```make init``` to initialize the environment.
2. Run ```make test``` to execute the tests.# References
[Python Docs](https://docs.python.org/3/)
[Click Docs](https://click.palletsprojects.com/en/8.1.x/)
[Pytest Docs](https://docs.pytest.org/en/latest/)