题解 | #斐波那契数列#
斐波那契数列
http://www.nowcoder.com/practice/aa8ffe28ec7c4050b2aa8bc9d26710e9
构造一个n+1的斐波那契数列,取最后一位
function fibonacci(n) {
var
a = 0,
b = 1,
arr = [0, 1];
while (arr.length < n + 1) {
[a, b] = [b, a + b];
arr.push(b);
}
return arr[arr.length - 1]
}
汤臣倍健公司氛围 388人发布