chore(i8n,learn): processed translations

This commit is contained in:
Crowdin Bot
2021-02-06 04:42:36 +00:00
committed by Mrugesh Mohapatra
parent 15047f2d90
commit e5c44a3ae5
3274 changed files with 172122 additions and 14164 deletions

View File

@ -1,24 +1,24 @@
---
id: 5900f4e81000cf542c50fffb
title: 问题380惊人的迷宫
title: 'Problem 380: Amazing Mazes!'
challengeType: 5
videoUrl: ''
forumTopicId: 302044
dashedName: problem-380-amazing-mazes
---
# --description--
m×n迷宫是m×n矩形网格其中墙壁放置在网格单元之间使得从左上角正方形到任何其他正方形恰好有一条路径。以下是9×12迷宫和15×20迷宫的示例
An m×n maze is an m×n rectangular grid with walls placed between grid cells such that there is exactly one path from the top-left square to any other square. The following are examples of a 9×12 maze and a 15×20 maze:
设Cmn为不同m×n个迷宫的数量。可以通过来自另一个迷宫的旋转和反射形成的迷宫被认为是不同的。
Let C(m,n) be the number of distinct m×n mazes. Mazes which can be formed by rotation and reflection from another maze are considered distinct.
可以证实C1,1= 1C2,2= 4C3,4= 2415C9,12= 2.5720e46科学计数法四舍五入为5显着位。找到C100,500并用科学计数法将你的答案写成五位有效数字。
It can be verified that C(1,1) = 1, C(2,2) = 4, C(3,4) = 2415, and C(9,12) = 2.5720e46 (in scientific notation rounded to 5 significant digits). Find C(100,500) and write your answer in scientific notation rounded to 5 significant digits.
在给出答案时使用小写e来分隔尾数和指数。例如如果答案是1234567891011则答案格式为1.2346e12
When giving your answer, use a lowercase e to separate mantissa and exponent. E.g. if the answer is 1234567891011 then the answer format would be 1.2346e12.
# --hints--
`euler380()`应该返回Infinity
`euler380()` should return Infinity.
```js
assert.strictEqual(euler380(), Infinity);