Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,10 @@
|
|||
items = {1,2,3,4,1,2,3,4,"bird","cat","dog","dog","bird"}
|
||||
flags = {}
|
||||
io.write('Unique items are:')
|
||||
for i=1,#items do
|
||||
if not flags[items[i]] then
|
||||
io.write(' ' .. items[i])
|
||||
flags[items[i]] = true
|
||||
end
|
||||
end
|
||||
io.write('\n')
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
local items = {1,2,3,4,1,2,3,4,0/0,nil,"bird","cat","dog","dog","bird",0/0}
|
||||
|
||||
function rmdup(t)
|
||||
local r,dup,c,NaN = {},{},1,{}
|
||||
for i=1,#t do
|
||||
local e = t[i]
|
||||
local k = e~=e and NaN or e
|
||||
if k~=nil and not dup[k] then
|
||||
c, r[c], dup[k]= c+1, e, true
|
||||
end
|
||||
end
|
||||
return r
|
||||
end
|
||||
|
||||
print(table.concat(rmdup(items),' '))
|
||||
Loading…
Add table
Add a link
Reference in a new issue