freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-239-twenty-two-fool...

633 B

id challengeType title videoUrl localeTitle
5900f45c1000cf542c50ff6e 5 Problem 239: Twenty-two Foolish Primes

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler239();

Solution

// solution required