develop #12

Merged
Rhayllon_Daudt merged 22 commits from develop into master 2022-11-01 00:35:27 +00:00
Showing only changes of commit 56e918b956 - Show all commits

View File

@ -1,4 +1,7 @@
export function fibonacci(value) {
// implementar logica aqui
}
if(value <= 1){
return value
}
return fibonacci(value - 1) + fibonacci(value - 2)
}