--- id: 5900f53a1000cf542c51004c challengeType: 5 title: 'Problem 461: Almost Pi' videoUrl: '' localeTitle: 'Проблема 461: Почти Pi' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler461(), 159820276, "euler461() should return 159820276.");' ```
## Challenge Seed
```js function euler461() { // Good luck! return true; } euler461(); ```
## Solution
```js // solution required ```