freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-453-lattice-quadril...

56 lines
1.0 KiB
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: 5900f5311000cf542c510044
challengeType: 5
videoUrl: ''
title: 问题453格子四边形
---
## Description
<section id="description">简单的四边形是具有四个不同顶点的多边形,没有直角并且不会自相交。 <p>设Qmn为简单四边形的数量其顶点为格点坐标xy满足0≤x≤m且0≤y≤n。 </p><p>例如Q2,2= 94如下所示 </p><p>还可以证实Q3,7= 39590Q12,3= 309000和Q123,45= 70542215894646。 </p><p>找到Q12345,6789mod 135707531。 </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler453()</code>应该返回104354107。
testString: assert.strictEqual(euler453(), 104354107);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler453() {
// Good luck!
return true;
}
euler453();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>