forked from M3-Academy/challenge-algorithms-v2.0
Merge branch 'feature/fibonacci' into development
This commit is contained in:
commit
19bf672c52
@ -1,4 +1,12 @@
|
||||
export function fibonacci(value) {
|
||||
// implementar logica aqui
|
||||
|
||||
let n1 = 0
|
||||
let n2 = 1
|
||||
let temp
|
||||
for (let i = 0; i < value; i++) {
|
||||
temp = n1
|
||||
n1 = n1 + n2
|
||||
n2 = temp
|
||||
}
|
||||
return n1
|
||||
}
|
Loading…
Reference in New Issue
Block a user