Golang leetcode 509. Fibonacci Number.go 2019-04-12 14:37:32 浏览数 (1) 版权声明:原创勿转 https://cloud.tencent.com/developer/article/1412990 思路简单的递归code代码语言:javascript复制func fib(N int) int { if N == 0 { return 0 } if N == 1 { return 1 } return fib(N-1) fib(N-2) } code 递归 0 人点赞 上一篇:分享雷军22年前编写的代码