fix: replace .chinese.md extension with .md

This commit is contained in:
Oliver Eyton-Williams
2020-09-29 19:06:51 +02:00
parent 2b9e38a17b
commit 41b7a33100
1588 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,56 @@
---
id: 5900f47c1000cf542c50ff8e
challengeType: 5
title: 'Problem 270: Cutting Squares'
videoUrl: ''
localeTitle: 问题270切割方块
---
## Description
<section id="description">放置具有整数尺寸N×N的正方形纸在原点处具有拐角并且沿x轴和y轴具有两个侧面。然后我们按照以下规则进行切割我们只在位于正方形不同侧面的两个点之间进行直线切割并且具有整数坐标。两个切口不能交叉但是几个切口可以在相同的边界点处相遇。继续进行直到不再进行合法削减。将任何反射或旋转计数为不同我们将CN称为切割N×N平方的方式的数量。例如C1= 2且C2= 30如下所示<p>什么是C30mod 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>