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

55 lines
711 B
Markdown
Raw Normal View History

---
2018-10-10 20:20:40 +00:00
id: 5900f5111000cf542c510023
challengeType: 5
title: 'Problem 420: 2x2 positive integer matrix'
2018-10-10 20:20:40 +00:00
videoUrl: ''
localeTitle: 'Problema 420: matriz entera positiva 2x2'
---
## Description
2018-10-10 20:20:40 +00:00
undefined
## Instructions
2018-10-10 20:20:40 +00:00
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler420()</code> debe devolver 145159332.
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();
2018-10-10 20:20:40 +00:00
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>