freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-46-goldbachs-other-...

678 B

id challengeType title videoUrl localeTitle
5900f39a1000cf542c50fead 5 Problem 46: Goldbach"s other conjecture

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(goldbachsOtherConjecture(), 5777, "<code>goldbachsOtherConjecture()</code> should return 5777.");'

Challenge Seed

function goldbachsOtherConjecture() {
  // Good luck!
  return true;
}

goldbachsOtherConjecture();

Solution

// solution required