Lua上樓梯問題

--01 --樓梯有n階臺階 上樓可以一步上一節 也可以一步上兩節 多少種走法 --遞歸求解 function Way(n) local ans={} if n==1 then table.insert(ans,{1}) return ans elseif n==2 then local tmp1={1,1} local tmp2={2} table.insert(
相關文章
相關標籤/搜索