feature #1

Merged
Emilly_schuenck merged 12 commits from feature into master 2022-11-02 21:34:20 +00:00
Showing only changes of commit 518eecfc7c - 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)
}