Files
freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-319-bounded-sequences.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.2 KiB
Raw Blame History

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f4ab1000cf542c50ffbe 5 Problem 319: Bounded Sequences 问题319有界序列

Description

令x1x2...xn为长度为n的序列使得 x1 = 2 对于所有1 这样的长度为2的序列只有五个 {2,4}{2,5}{2,6}{2,7}和{2,8}。 有293个这样的长度为5的序列。 以下是三个示例: {2,5,11,25,55}{2,6,14,36,88}{2,8,22,64,181}。

令tn表示长度为n的此类序列的数量。 给出t10= 86195和t20= 5227991891。

找出t1010并给出答案模块109。

Instructions

Tests

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

Challenge Seed

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

euler319();

Solution

// solution required