freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-164-numbers-for-whi...

55 lines
693 B
Markdown
Raw Normal View History

---
id: 5900f4111000cf542c50ff23
challengeType: 5
title: 'Problem 164: Numbers for which no three consecutive digits have a sum greater than a given value'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler164(), 378158756814587, "<code>euler164()</code> should return 378158756814587.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler164() {
// Good luck!
return true;
}
euler164();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>