freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-237-tours-on-a-4-x-...

744 B
Raw Blame History

id title challengeType videoUrl dashedName
5900f4591000cf542c50ff6c 问题237在4 x n游戏板上游览 5 problem-237-tours-on-a-4-x-n-playing-board

--description--

设Tn为4×n游戏板上的游览次数使得游览从左上角开始。巡视包括向上向下向左或向右一个方格的移动。游览访问每个广场一次。游览结束于左下角。该图显示了4×10板上的一次巡视

T10是2329.什么是T1012模108

--hints--

euler237()应该返回15836928。

assert.strictEqual(euler237(), 15836928);

--seed--

--seed-contents--

function euler237() {

  return true;
}

euler237();

--solutions--

// solution required