freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-130-composites-with...

630 B

id challengeType title videoUrl localeTitle
5900f3ee1000cf542c50ff00 5 Problem 130: Composites with prime repunit property

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler130();

Solution

// solution required