Merge branch 'new_branch_4'

This commit is contained in:
Nathalia Sardou 2022-11-02 00:42:03 -03:00
commit 320c3830ac

View File

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