freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-419-look-and-say-se...

56 lines
692 B
Markdown

---
id: 5900f5101000cf542c510022
challengeType: 5
title: 'Problem 419: Look and say sequence'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler419(), 998567458, 1046245404, 43363922, "<code>euler419()</code> should return 998567458, 1046245404, 43363922.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler419() {
// Good luck!
return true;
}
euler419();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>