Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 8 hours 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 (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-06T22:31:31.000Z (3 months ago)
- Last Synced: 2024-08-07T01:56:16.486Z (3 months ago)
- Topics: actions, advent-of-code-2022, black, click, pylint, python
- Language: Python
- Homepage:
- Size: 90.8 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2022
[![Build](https://img.shields.io/github/actions/workflow/status/tomdewildt/advent-of-code-2022/ci.yml?branch=master)](https://github.com/tomdewildt/advent-of-code-2022/actions/workflows/ci.yml)
[![Coverage](https://img.shields.io/codecov/c/gh/tomdewildt/advent-of-code-2022)](https://codecov.io/gh/tomdewildt/advent-of-code-2022)
[![License](https://img.shields.io/github/license/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/)