parent
5a7cd9b162
commit
76551b0e8a
|
@ -1,10 +1,17 @@
|
||||||
const fibonacci = function(count) {
|
const fibonacci = function(count) {
|
||||||
if (count < 0) return "OOPS"
|
if (count < 0) return "OOPS";
|
||||||
const fibPart = [0, 1];
|
if (count === 0) return 0;
|
||||||
for (let index = 1; index < count; index++) {
|
|
||||||
fibPart.push(fibPart[index] + fibPart[index -1]);
|
let first_prev = 1;
|
||||||
}
|
let second_prev = 0;
|
||||||
return fibPart[count];
|
|
||||||
|
for (let i = 2; i <= count; i++) {
|
||||||
|
let curr = first_prev + second_prev;
|
||||||
|
second_prev = first_prev;
|
||||||
|
first_prev = curr;
|
||||||
|
}
|
||||||
|
|
||||||
|
return first_prev;
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = fibonacci;
|
module.exports = fibonacci;
|
||||||
|
|
Loading…
Reference in New Issue