refactor(fibonacci): identacao do codigo
This commit is contained in:
parent
2954160e87
commit
915507c469
@ -2,9 +2,9 @@ export function fibonacci(value) {
|
||||
// implementar logica aqui
|
||||
if (value < 1) {
|
||||
return 0
|
||||
} else if (value <= 2) {
|
||||
return 1
|
||||
} else {
|
||||
return (fibonacci(value - 1) + fibonacci(value - 2))
|
||||
}
|
||||
} else if (value <= 2) {
|
||||
return 1
|
||||
} else {
|
||||
return (fibonacci(value - 1) + fibonacci(value - 2))
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user