freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-422-sequence-of-poi...

629 B

id challengeType title videoUrl localeTitle
5900f5131000cf542c510025 5 Problem 422: Sequence of points on a hyperbola

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler422();

Solution

// solution required