Files
freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-453-lattice-quadrilaterals.chinese.md

56 lines
1.1 KiB
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: 5900f5311000cf542c510044
challengeType: 5
title: 'Problem 453: Lattice Quadrilaterals'
videoUrl: ''
localeTitle: 问题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, "<code>euler453()</code> should return 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>