freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-304-primonacci.arab...

614 B

id challengeType title videoUrl localeTitle
5900f49d1000cf542c50ffaf 5 Problem 304: Primonacci

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler304();

Solution

// solution required