freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-157-solving-the-dio...

55 lines
691 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
id: 5900f4091000cf542c50ff1c
challengeType: 5
title: 'Problem 157: Solving the diophantine equation'
videoUrl: ''
localeTitle: 问题157解决丢番图方程
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler157()</code>应返回53490。
testString: 'assert.strictEqual(euler157(), 53490, "<code>euler157()</code> should return 53490.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler157() {
// Good luck!
return true;
}
euler157();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>