lua语言中合并一张表的重复元素
发布网友
发布时间:2022-04-22 12:34
我来回答
共1个回答
热心网友
时间:2022-05-27 12:11
local model={
{1.5,11},
{1.2,10},
{1.5,5},
{1.2,12}
}
local one = {}
local two = {}
for i,v in pairs(model) do
if v[1] == 1.5 then
table.insert(one,v);
else
table.insert(two,v);
end
end
model ={one,two}