leetcode:509 .斐波那契數

` class Solution { public int fib(int N) { if(N==0){ return 0; } if(N==1||N==2){ return 1; } return fib(N-1)+fib(N-2); } }
相關文章
相關標籤/搜索