Fixed typo in getFactors

This commit is contained in:
Matthew Ellison
2019-02-08 16:11:03 -05:00
parent 0bec0ff5ab
commit e3bdd3e0f9

View File

@@ -194,7 +194,7 @@ std::vector<T> getFactors(T goalNumber){
///Should add some kind of error throwing inc ase the number != 1 after searching for all prime factors ///Should add some kind of error throwing inc ase the number != 1 after searching for all prime factors
return 0; return factors;
} }
template<class T> template<class T>