freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-173-using-up-to-one...

55 lines
681 B
Markdown

---
id: 5900f41a1000cf542c50ff2c
challengeType: 5
title: 'Problem 173: Using up to one million tiles how many different "hollow" square laminae can be formed?'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler173(), 1572729, "<code>euler173()</code> should return 1572729.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler173() {
// Good luck!
return true;
}
euler173();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>