This small repository stores small set of interesting challenges in C++.
Write good quicksort function working just like std::sort in a way that it gets the iterator to the beginning and end of interval to sort and comparator.
Author: Tomas Dzetkulic
Write function that works just like std::midpoint function from numeric. It finds average rounded to the second parameter.
Author: Tomas Dzetkulic
Write a program that validates proove of a logical formula. You have set of axioms and modus ponens. This has to be done at a compile time.
Inspiration: lecture of Robert Lukotka
Write a shared printer. It has to print the progress of several processes once they reach a certain levels.
Author: Tomas Dzetkulic
Write a program that generates normal distribution in the compile time.
Author: Me