fix: replace .chinese.md extension with .md
This commit is contained in:
@ -0,0 +1,56 @@
|
||||
---
|
||||
id: 5900f47c1000cf542c50ff8e
|
||||
challengeType: 5
|
||||
title: 'Problem 270: Cutting Squares'
|
||||
videoUrl: ''
|
||||
localeTitle: 问题270:切割方块
|
||||
---
|
||||
|
||||
## Description
|
||||
<section id="description">放置具有整数尺寸N×N的正方形纸,在原点处具有拐角,并且沿x轴和y轴具有两个侧面。然后,我们按照以下规则进行切割:我们只在位于正方形不同侧面的两个点之间进行直线切割,并且具有整数坐标。两个切口不能交叉,但是几个切口可以在相同的边界点处相遇。继续进行,直到不再进行合法削减。将任何反射或旋转计数为不同,我们将C(N)称为切割N×N平方的方式的数量。例如,C(1)= 2且C(2)= 30(如下所示)。 <p>什么是C(30)mod 108? </p></section>
|
||||
|
||||
## Instructions
|
||||
<section id="instructions">
|
||||
</section>
|
||||
|
||||
## Tests
|
||||
<section id='tests'>
|
||||
|
||||
```yml
|
||||
tests:
|
||||
- text: <code>euler270()</code>应该返回82282080。
|
||||
testString: assert.strictEqual(euler270(), 82282080);
|
||||
|
||||
```
|
||||
|
||||
</section>
|
||||
|
||||
## Challenge Seed
|
||||
<section id='challengeSeed'>
|
||||
|
||||
<div id='js-seed'>
|
||||
|
||||
```js
|
||||
function euler270() {
|
||||
// Good luck!
|
||||
return true;
|
||||
}
|
||||
|
||||
euler270();
|
||||
|
||||
```
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
## Solution
|
||||
<section id='solution'>
|
||||
|
||||
```js
|
||||
// solution required
|
||||
```
|
||||
|
||||
/section>
|
Reference in New Issue
Block a user