Results 1 comments of 毛瑞

每次提交耗时不太一致,但也和你差不多 ``` function fibonacci(n) { let a = 0, b = 1, c = 0 if (--n > 1) { while (--n) { c = a + b a =...