Files
freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-351-hexagonal-orchards.chinese.md
Kristofer Koishigawa b3213fc892 fix(i18n): chinese test suite (#38220)
* fix: Chinese test suite

Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working.

* fix: ran script, updated testStrings and solutions
2020-03-03 18:49:47 +05:30

1.1 KiB
Raw Blame History

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f4cb1000cf542c50ffde 5 Problem 351: Hexagonal orchards 问题351六角形果园

Description

n阶六角形果园是由正六边形中具有边n的点构成的三角形格子。以下是5阶六角形果园的示例

以绿色突出显示的是通过靠近它的点从中心隐藏的点。可以看出对于5阶六角形果园中心隐藏了30个点。

设Hn是在n阶六角形果园中从中心隐藏的点数。

H5= 30.H10= 138.H1 000= 1177848。

找H100 000 000

Instructions

Tests

tests:
  - text: <code>euler351()</code>应该返回11762187201804552。
    testString: assert.strictEqual(euler351(), 11762187201804552);

Challenge Seed

function euler351() {
  // Good luck!
  return true;
}

euler351();

Solution

// solution required