freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-437-fibonacci-primi...

703 B

id challengeType title videoUrl localeTitle
5900f5241000cf542c510036 5 Problem 437: Fibonacci primitive roots Задача 437: примитивные корни Фибоначчи

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler437();

Solution

// solution required