freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-440-gcd-and-tiling....

56 lines
641 B
Markdown
Raw Normal View History

---
id: 5900f5241000cf542c510037
challengeType: 5
title: 'Problem 440: GCD and Tiling'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler440(), 970746056, "<code>euler440()</code> should return 970746056.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler440() {
// Good luck!
return true;
}
euler440();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>