freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-166-criss-cross.ara...

55 lines
605 B
Markdown
Raw Normal View History

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