freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-477-number-sequence...

634 B

id challengeType title videoUrl localeTitle
5900f54a1000cf542c51005c 5 Problem 477: Number Sequence Game

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler477();

Solution

// solution required