Files
freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-420-2x2-positive-integer-matrix.chinese.md
Kristofer Koishigawa b3213fc892 fix(i18n): chinese test suite (#38220)
* fix: Chinese test suite

Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working.

* fix: ran script, updated testStrings and solutions
2020-03-03 18:49:47 +05:30

70 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f5111000cf542c510023
challengeType: 5
title: 'Problem 420: 2x2 positive integer matrix'
videoUrl: ''
localeTitle: 问题4202x2正整数矩阵
---
## Description
<section id="description">
正整数矩阵是其元素均为正整数的矩阵。
一些正整数矩阵可以两种不同方式表示为正整数矩阵的平方。 这是一个例子:
我们将FN定义为迹线小于N的2x2正整数矩阵的数目并且可以用两种不同的方式将其表示为正整数矩阵的平方。
我们可以验证F50= 7和F1000= 1019。
找出F107
</section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler420()</code>应该返回145159332。
testString: assert.strictEqual(euler420(), 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>