nth_prime: work in progress

This commit is contained in:
Dmitry Kokorin 2016-03-26 15:40:36 +03:00
parent fc7478f03f
commit a3d06da574
2 changed files with 72 additions and 0 deletions

13
cpp/nth-prime/nth_prime.h Normal file
View file

@ -0,0 +1,13 @@
#pragma once
#include <cstddef>
#define EXERCISM_RUN_ALL_TESTS
namespace prime {
typedef unsigned long long number_t;
number_t nth(size_t);
}