Files
freeCodeCamp/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-164-numbers-for-which-no-three-consecutive-digits-have-a-sum-greater-than-a-given-value.english.md
Oliver Eyton-Williams f1c9b08cf3 fix(curriculum): add isHidden: false to challenges
This includes certificates (where it does nothing), but does not
include any translations.
2020-05-25 16:25:19 +05:30

882 B

id, challengeType, isHidden, title, forumTopicId
id challengeType isHidden title forumTopicId
5900f4111000cf542c50ff23 5 false Problem 164: Numbers for which no three consecutive digits have a sum greater than a given value 301798

Description

How many 20 digit numbers n (without any leading zero) exist such that no three consecutive digits of n have a sum greater than 9?

Instructions

Tests

tests:
  - text: <code>euler164()</code> should return 378158756814587.
    testString: assert.strictEqual(euler164(), 378158756814587);

Challenge Seed

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

euler164();

Solution

// solution required