文章 5 浏览 44
题目描述 代码: function fib(n, current = 1, next = 1) { if(n == 1) return current; if(n == 2) return next; return fib(n -1, next, current +…
文章 0 评论 0
接受