freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-434-rigid-graphs.ch...

55 lines
610 B
Markdown

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