freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-341-golombs-self-de...

55 lines
647 B
Markdown

---
id: 5900f4c11000cf542c50ffd3
challengeType: 5
title: 'Problem 341: Golomb"s self-describing sequence'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler341(), 56098610614277016, "<code>euler341()</code> should return 56098610614277016.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler341() {
// Good luck!
return true;
}
euler341();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>