--- id: 5900f51b1000cf542c51002e challengeType: 5 title: 'Problem 431: Square Space Silo' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler431(), 23.386029052, "euler431() should return 23.386029052.");' ```
## Challenge Seed
```js function euler431() { // Good luck! return true; } euler431(); ```
## Solution
```js // solution required ```