--- id: 5900f3851000cf542c50fe98 challengeType: 5 title: 'Problem 25: 1000-digit Fibonacci number' forumTopicId: 301897 localeTitle: 'Задача 25: 1000-значный номер Фибоначчи' --- ## Description
Последовательность Фибоначчи определяется рекуррентным соотношением:
F n = F n-1 + F n-2 , где F 1 = 1 и F 2 = 1.
Следовательно, первые 12 терминов будут:
F 1 = 1
F 2 = 1
F 3 = 2
F 4 = 3
F 5 = 5
F 6 = 8
F 7 = 13
F 8 = 21
F 9 = 34
F 10 = 55
F 11 = 89
F 12 = 144
12-й термин, F 12 , является первым термином, содержащим три цифры. Что такое индекс первого слагаемого в последовательности Фибоначчи, который содержит n цифр?
## Instructions
## Tests
```yml tests: - text: digitFibonacci(5) should return 21. testString: assert.strictEqual(digitFibonacci(5), 21); - text: digitFibonacci(10) should return 45. testString: assert.strictEqual(digitFibonacci(10), 45); - text: digitFibonacci(15) should return 69. testString: assert.strictEqual(digitFibonacci(15), 69); - text: digitFibonacci(20) should return 93. testString: assert.strictEqual(digitFibonacci(20), 93); ```
## Challenge Seed
```js function digitFibonacci(n) { // Good luck! return n; } digitFibonacci(20); ```
## Solution
```js const digitFibonacci = (n) => { const digits = (num) => { return num.toString().length; }; let f1 = 1; let f2 = 1; let index = 3; while (true) { let fn = f1 + f2; if (digits(fn) === n) return index; [f1, f2] = [f2, fn]; index++; } }; ```