freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-132-large-repunit-f...

613 B

id challengeType title videoUrl localeTitle
5900f3f11000cf542c50ff03 5 Problem 132: Large repunit factors

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler132();

Solution

// solution required