forked from M3-Academy/challenge-algorithms-v2.0
feat(fibonacci): desenvolvimento da funcao
This commit is contained in:
parent
2fcbcd717c
commit
33485e66ff
@ -1,4 +1,11 @@
|
|||||||
export function fibonacci(value) {
|
export function fibonacci(value) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
let a = 0, b = 1, c = value;
|
||||||
|
|
||||||
|
for (let i = 2; i <= value; i++) {
|
||||||
|
c = a + b;
|
||||||
|
a = b;
|
||||||
|
b = c;
|
||||||
|
}
|
||||||
|
return c;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user