freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-351-hexagonal-orcha...

1.2 KiB
Raw Blame History

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, "<code>euler351()</code> should return 11762187201804552.");'

Challenge Seed

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

euler351();

Solution

// solution required