freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-426-box-ball-system...

55 lines
617 B
Markdown
Raw Normal View History

---
id: 5900f5171000cf542c510029
challengeType: 5
title: 'Problem 426: Box-ball system'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler426(), 31591886008, "<code>euler426()</code> should return 31591886008.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler426() {
// Good luck!
return true;
}
euler426();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>