freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-187-semiprimes.arab...

606 B

id challengeType title videoUrl localeTitle
5900f4291000cf542c50ff3a 5 Problem 187: Semiprimes

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler187();

Solution

// solution required