Skip to content

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

License

Notifications You must be signed in to change notification settings

borisskert/c-katas

Repository files navigation

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
  • clang
  • meson/ninja

Build

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

Run tests

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

Run tests in docker environment

docker compose up --build