An open API service indexing awesome lists of open source software.

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

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
```