https://github.com/blu3r4y/ccc-linz-oct2023
38th Classic Cloudflight Coding Contest
https://github.com/blu3r4y/ccc-linz-oct2023
coding-contest
Last synced: about 1 year ago
JSON representation
38th Classic Cloudflight Coding Contest
- Host: GitHub
- URL: https://github.com/blu3r4y/ccc-linz-oct2023
- Owner: blu3r4y
- License: mit
- Created: 2023-10-20T19:28:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-20T19:37:14.000Z (over 2 years ago)
- Last Synced: 2025-02-11T11:58:00.617Z (over 1 year ago)
- Topics: coding-contest
- Language: Python
- Homepage:
- Size: 1.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# 38th Classic Cloudflight Coding Contest
My solutions for the [38th Classic Cloudflight Coding Contest](https://codingcontest.org/) in November 2023, written in Python.
:goat: :goat: :goat:
## Challenges
- :heavy_check_mark: **[Level 1](data/Level%201.pdf)** - [Solution](/../level1/ccc/contest.py)
- :heavy_check_mark: **[Level 2](data/Level%202.pdf)** - [Solution](/../level2/ccc/contest.py)
- :heavy_check_mark: **[Level 3](data/Level%203.pdf)** - [Solution](/../level3/ccc/contest.py)
- :heavy_check_mark: **[Level 4](data/Level%204.pdf)** - [Solution](/../level4/ccc/contest.py)
- :heavy_check_mark: **[Level 5](data/Level%205.pdf)** - [Solution](/../level5/ccc/contest.py)
- :x: **[Level 6](data/Level%206.pdf)** - *unfinished*
## Requirements
### Python >= 3.12
Package requirements are specified in the [requirements.txt](requirements.txt) file.
```sh
python -m pip install -r requirements.txt
```
## Snippets
Run code as a module
```sh
python -m ccc
```
Quickly archive the last commit
```sh
git archive --format zip -o code.zip HEAD
```