freeCodeCamp/curriculum/challenges/italian/10-coding-interview-prep/project-euler/problem-46-goldbachs-other-...

2.0 KiB
Raw Blame History

id title challengeType forumTopicId dashedName
5900f39a1000cf542c50fead Problema 46: L'altra congettura di Goldbach 5 302134 problem-46-goldbachs-other-conjecture

--description--

È stato proposto da Christian Goldbach che ogni numero dispari composito può essere scritto come la somma di un primo e due volte un quadrato.

9 = 7 + 2×12
15 = 7 + 2×22
21 = 3 + 2×32
25 = 7 + 2×32
27 = 19 + 2×22
33 = 31 + 2×12

Si scoprì che la congettura era falsa.

Qual è il più piccolo composito dispari che non può essere scritto come la somma di un primo e due volte un quadrato?

--hints--

goldbachsOtherConjecture() dovrebbe restituire un numero.

assert(typeof goldbachsOtherConjecture() === 'number');

goldbachsOtherConjecture() dovrebbe restituire 5777.

assert.strictEqual(goldbachsOtherConjecture(), 5777);

--seed--

--seed-contents--

function goldbachsOtherConjecture() {

  return true;
}

goldbachsOtherConjecture();

--solutions--

function goldbachsOtherConjecture() {  function isPrime(num) {
    if (num < 2) {
      return false;
    } else if (num === 2) {
      return true;
    }
    const sqrtOfNum = Math.floor(num ** 0.5);
    for (let i = 2; i <= sqrtOfNum + 1; i++) {
      if (num % i === 0) {
        return false;
      }
    }
    return true;
  }

  function isSquare(num) {
    return Math.sqrt(num) % 1 === 0;
  }

  // construct a list of prime numbers
  const primes = [];
  for (let i = 2; primes.length < 1000; i++) {
    if (isPrime(i)) primes.push(i);
  }

  let num = 3;
  let answer;
  while (!answer) {
    num += 2;
    if (!isPrime(num)) {
      let found = false;
      for (let primeI = 0; primeI < primes.length && !found; primeI++) {
        const square = (num - primes[primeI]) / 2;
        if (isSquare(square)) {
          found = true;
          break;
        }
      }
      if (!found) answer = num;
    }
  }
  return answer;
}