Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 502 Bytes

File metadata and controls

35 lines (23 loc) · 502 Bytes

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