--- id: 5900f3cf1000cf542c50fee1 challengeType: 5 title: 'Problem 98: Anagramic squares' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler98(), 18769, "euler98() should return 18769.");' ```
## Challenge Seed
```js function euler98() { // Good luck! return true; } euler98(); ```
## Solution
```js // solution required ```