Added descriptions to problems that didn't have any

This commit is contained in:
2020-06-06 18:17:13 -04:00
parent a841942741
commit 0f6f4fe0be
4 changed files with 18 additions and 18 deletions

View File

@@ -28,7 +28,7 @@
#include "../Headers/Problem27.hpp"
Problem27::Problem27(){
Problem27::Problem27() : Problem("Considering quadratics of the form n^2 + an + b, where |a| < 1000 and |b| <= 1000, find the product of the coefficients a and b that produce the maximum number of primes for consecutive values of n starting with n = 0."){
topA = topB = topN = 0;
primes = mee::getPrimes((int64_t)(12000));
}