freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-337-totient-stairst...

780 B

id challengeType title videoUrl localeTitle
5900f4be1000cf542c50ffd0 5 Problem 337: Totient Stairstep Sequences Задача 337 Totient последовательности Stairstep

Description

undefined

Instructions

Tests

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

Challenge Seed

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

euler337();

Solution

// solution required