Files
freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-157-solving-the-diophantine-equation.chinese.md

55 lines
691 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
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>