freeCodeCamp/curriculum/challenges/portuguese/08-coding-interview-prep/project-euler/problem-423-consecutive-die...

56 lines
649 B
Markdown
Raw Normal View History

---
id: 5900f5141000cf542c510027
challengeType: 5
title: 'Problem 423: Consecutive die throws'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler423(), 653972374, "<code>euler423()</code> should return 653972374.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler423() {
// Good luck!
return true;
}
euler423();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>