freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-341-golombs-self-de...

817 B

id challengeType title videoUrl localeTitle
5900f4c11000cf542c50ffd3 5 Problem 341: Golomb"s self-describing sequence Задача 341: самоописательная последовательность Голомба

Description

undefined

Instructions

undefined

Tests

tests:
  - text: <code>euler341()</code> должен вернуть 56098610614277016.
    testString: 'assert.strictEqual(euler341(), 56098610614277016, "<code>euler341()</code> should return 56098610614277016.");'

Challenge Seed

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

euler341();

Solution

// solution required