https://github.com/borisskert/cpp-katas
This repo contains my solutions for some C++ katas submitted in Codewars.
https://github.com/borisskert/cpp-katas
codewars codewars-cpp codewars-solutions cpp igloo-bdd igloo-testing
Last synced: 7 months ago
JSON representation
This repo contains my solutions for some C++ katas submitted in Codewars.
- Host: GitHub
- URL: https://github.com/borisskert/cpp-katas
- Owner: borisskert
- License: mit
- Created: 2022-04-13T15:42:41.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-29T16:39:35.000Z (10 months ago)
- Last Synced: 2024-11-29T17:21:30.735Z (10 months ago)
- Topics: codewars, codewars-cpp, codewars-solutions, cpp, igloo-bdd, igloo-testing
- Language: C++
- Homepage:
- Size: 52.7 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
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## Build
```bash
cd build # (from project root)
cmake ..
cmake --build .
```## Run tests
```bash
cd build # (from project root)
./test/cpp_katas_test
```## Run tests in docker environment
```bash
docker-compose up --build
```