Added a benchmark tool

This commit is contained in:
2020-07-08 20:38:37 -04:00
parent a7d960c3b1
commit 766af92f1a
68 changed files with 546 additions and 134 deletions

View File

@@ -35,7 +35,6 @@
uint64_t Problem7::NUMBER_OF_PRIMES = 10001;
Problem7::Problem7() : Problem("What is the 10001th prime number?"){
}
void Problem7::solve(){
@@ -73,3 +72,7 @@ uint64_t Problem7::getPrime() const{
}
return *primes.end();
}
void Problem7::reset(){
Problem::reset();
}