freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-340-crazy-function....

612 B

id challengeType title videoUrl localeTitle
5900f4c21000cf542c50ffd4 5 Problem 340: Crazy Function

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler340();

Solution

// solution required