Updated various typoes and removed some unneeded code

This commit is contained in:
2020-07-11 13:35:37 -04:00
parent c72754dcf8
commit 0caa043b59
17 changed files with 31 additions and 33 deletions

View File

@@ -31,6 +31,7 @@
#include "../Headers/Problem10.hpp"
//The largest number to check for primes
uint64_t Problem10::GOAL_NUMBER = 2000000 - 1; //2,000,000 - 1 because is needs to be < instead of <=
//Constructor
@@ -56,7 +57,7 @@ void Problem10::solve(){
solved = true;
}
//Reset the rpoblem so it can be run agian
//Reset the problem so it can be run again
void Problem10::reset(){
Problem::reset();
sum = 0;