freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-118-pandigital-prim...

611 B

id challengeType title videoUrl localeTitle
5900f3e21000cf542c50fef5 5 Problem 118: Pandigital prime sets

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler118();

Solution

// solution required