freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-427-n-sequences.chi...

607 B

id challengeType title videoUrl localeTitle
5900f5181000cf542c51002a 5 Problem 427: n-sequences

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler427();

Solution

// solution required