freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-396-weak-goodstein-...

55 lines
621 B
Markdown

---
id: 5900f4f81000cf542c51000b
challengeType: 5
title: 'Problem 396: Weak Goodstein sequence'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler396(), 173214653, "<code>euler396()</code> should return 173214653.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler396() {
// Good luck!
return true;
}
euler396();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>