freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-443-gcd-sequence.ru...

682 B

id challengeType title videoUrl localeTitle
5900f5271000cf542c51003a 5 Problem 443: GCD sequence Задача 443: последовательность GCD

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler443(), 2744233049300770, "<code>euler443()</code> should return 2744233049300770.");'

Challenge Seed

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

euler443();

Solution

// solution required