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

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.

Awesome Lists containing this project

README

          

# C++ Katas

![](https://www.codewars.com/users/besterboris/badges/micro)

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