develop #1

Merged
affonso_kopmann merged 11 commits from develop into master 2022-10-30 18:58:45 +00:00
Showing only changes of commit c4e8de1c15 - Show all commits

View File

@ -1,4 +1,8 @@
export function fibonacci(value) {
// implementar logica aqui
let arr = [ 0, 1 ];
for (let i = 2; i < value + 1; i++) {
arr.push ( arr [ i - 2 ] + arr [ i - 1 ] )
}
return arr [ value ];
}