--- id: 5900f51f1000cf542c510031 challengeType: 5 title: 'Problem 434: Rigid graphs' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler434(), 863253606, "euler434() should return 863253606.");' ```
## Challenge Seed
```js function euler434() { // Good luck! return true; } euler434(); ```
## Solution
```js // solution required ```