https://github.com/borisskert/c-katas
This repo contains my solutions for some C katas submitted in Codewars.
https://github.com/borisskert/c-katas
c codewars codewars-c-katas codewars-kata codewars-katas codewars-solutions criterion criterion-tests
Last synced: 6 days ago
JSON representation
This repo contains my solutions for some C katas submitted in Codewars.
- Host: GitHub
- URL: https://github.com/borisskert/c-katas
- Owner: borisskert
- License: mit
- Created: 2022-03-24T10:04:49.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-07T07:20:13.000Z (over 1 year ago)
- Last Synced: 2024-07-07T08:29:58.950Z (over 1 year ago)
- Topics: c, codewars, codewars-c-katas, codewars-kata, codewars-katas, codewars-solutions, criterion, criterion-tests
- Language: C
- Homepage:
- Size: 73.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# C Katas

This repo contains my solutions for some C katas submitted in [Codewars](https://www.codewars.com).
## Setup
### Prerequisites
You need to install following tools/packages:
* gcc
* cmake
* clang
* meson/ninja## Build
```bash
cd build # (from project root)
cmake ..
cmake --build .
```## Run tests
```bash
cd build # (from project root)
./test/c_katas_test
```## Run tests in docker environment
```bash
docker compose up --build
```