freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-420-2x2-positive-in...

625 B

id challengeType title videoUrl localeTitle
5900f5111000cf542c510023 5 Problem 420: 2x2 positive integer matrix

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler420();

Solution

// solution required