--- id: 5900f5081000cf542c51001a challengeType: 5 title: 'Problem 412: Gnomon numbering' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler412(), 38788800, "euler412() should return 38788800.");' ```
## Challenge Seed
```js function euler412() { // Good luck! return true; } euler412(); ```
## Solution
```js // solution required ```