--- id: 5900f4081000cf542c50ff1a challengeType: 5 title: 'Problem 155: Counting Capacitor Circuits' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler155(), 3857447, "euler155() should return 3857447.");' ```
## Challenge Seed
```js function euler155() { // Good luck! return true; } euler155(); ```
## Solution
```js // solution required ```