freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-400-fibonacci-tree-...

693 B

id challengeType title videoUrl localeTitle
5900f4fe1000cf542c510010 5 Problem 400: Fibonacci tree game Задача 400: игра дерева Фибоначчи

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler400();

Solution

// solution required