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

@@ -36,7 +36,7 @@ Which starting number, under one million, produces the longest chain?
//This is the top number that you will be checking against the series
uint64_t Problem14::MAX_NUM = 999999;
uint64_t Problem14::MAX_NUM = 1000000 - 1;
//This function follows the rules of the sequence and returns its length
uint64_t Problem14::checkSeries(uint64_t num){