freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-421-prime-factors-o...

640 B

id challengeType title videoUrl localeTitle
5900f5131000cf542c510024 5 Problem 421: Prime factors of n15+1

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler421();

Solution

// solution required