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

55 lines
625 B
Markdown
Raw Normal View History

---
id: 5900f5111000cf542c510023
challengeType: 5
title: 'Problem 420: 2x2 positive integer matrix'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler420(), 145159332, "<code>euler420()</code> should return 145159332.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler420() {
// Good luck!
return true;
}
euler420();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>