Lua 环境安装
Linux 系统上安装
Linux amp;amp;amp; Mac上安装 Lua 安装非常简单,只需要下载源码包并在终端解压编译即可,本文使用了5.3.0版本进行安装:
curl -R -O http://www.lua.org/ftp/lua-5.3.0.tar.gz
tar ...……
本文翻译自 LUA官方文档
When a function is called, the list of arguments is adjusted to the length of the list of parameters, unless the function is a vararg function, which is indicated by three d ...……
--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}
...……