--- id: 5900f4a51000cf542c50ffb7 challengeType: 5 title: 'Problem 312: Cyclic paths on SierpiƄski graphs' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler312(), 324681947, "euler312() should return 324681947.");' ```
## Challenge Seed
```js function euler312() { // Good luck! return true; } euler312(); ```
## Solution
```js // solution required ```