forked from M3-Academy/challenge-algorithms-v2.0
Merge pull request 'feat(fibonacci): Adicionando algoritmo que retorna o resultado da sequencia de fibonacci.' (#4) from feature/fibonacci into development
Reviewed-on: #4
This commit is contained in:
commit
b971aab7fc
@ -1,4 +1,15 @@
|
||||
export function fibonacci(value) {
|
||||
// implementar logica aqui
|
||||
|
||||
}
|
||||
let vet = [];
|
||||
vet.push(0);
|
||||
vet.push(1);
|
||||
if (value == 0) {
|
||||
return vet[0];
|
||||
} else if (value == 1) {
|
||||
return vet[1];
|
||||
} else {
|
||||
for (let index = 2; index <= value; index++) {
|
||||
vet[index] = vet[index - 2] + vet[index - 1];
|
||||
}
|
||||
}
|
||||
return vet.at(-1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user