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

848 B
Raw Blame History

id title challengeType videoUrl dashedName
5900f4cb1000cf542c50ffde 问题351六角形果园 5 problem-351-hexagonal-orchards

--description--

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

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

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

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

找H100 000 000

--hints--

euler351()应该返回11762187201804552。

assert.strictEqual(euler351(), 11762187201804552);

--seed--

--seed-contents--

function euler351() {

  return true;
}

euler351();

--solutions--

// solution required