--- id: 5900f4c31000cf542c50ffd5 challengeType: 5 title: 'Problem 342: The totient of a square is a cube' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler342(), 5943040885644, "euler342() should return 5943040885644.");' ```
## Challenge Seed
```js function euler342() { // Good luck! return true; } euler342(); ```
## Solution
```js // solution required ```