freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-163-cross-hatched-t...

55 lines
615 B
Markdown

---
id: 5900f40f1000cf542c50ff22
challengeType: 5
title: 'Problem 163: Cross-hatched triangles'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler163(), 343047, "<code>euler163()</code> should return 343047.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler163() {
// Good luck!
return true;
}
euler163();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>