--- id: 5900f4db1000cf542c50ffee challengeType: 5 title: 'Problem 367: Bozo sort' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler367(), 48271207, "euler367() should return 48271207.");' ```
## Challenge Seed
```js function euler367() { // Good luck! return true; } euler367(); ```
## Solution
```js // solution required ```