freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-111-primes-with-run...

620 B

id challengeType title videoUrl localeTitle
5900f3db1000cf542c50feee 5 Problem 111: Primes with runs

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler111();

Solution

// solution required