freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-425-prime-connectio...

55 lines
665 B
Markdown
Raw Normal View History

---
id: 5900f5151000cf542c510028
challengeType: 5
title: 'Problem 425: Prime connection'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler425()</code>应该返回46479497324。
testString: 'assert.strictEqual(euler425(), 46479497324, "<code>euler425()</code> should return 46479497324.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler425() {
// Good luck!
return true;
}
euler425();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>