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

@@ -34,9 +34,9 @@ class Problem10 : public Problem{
private:
//Variables
//Static variables
static uint64_t GOAL_NUMBER;
static uint64_t GOAL_NUMBER; //The largest number to check for primes
//Instance variables
uint64_t sum;
uint64_t sum; //The sum of all of the prime
public:
//Constructor
Problem10();