/cpp-katas

This repo contains my solutions for some C++ katas submitted in Codewars.

Primary LanguageC++MIT LicenseMIT

C++ Katas

This repo contains my solutions for some C++ katas submitted in Codewars.

Setup

Prerequisites

You need to install following tools/packages:

  • gcc
  • cmake

Build

cd build # (from project root)
cmake ..
cmake --build .

Run tests

cd build # (from project root)
./test/cpp_katas_test

Run tests in docker environment

docker-compose up --build