freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-167-investigating-u...

55 lines
634 B
Markdown
Raw Normal View History

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