all tasks
This commit is contained in:
parent
b83f433714
commit
68f8f3e56b
14735 changed files with 178959 additions and 0 deletions
19
Task/Symmetric-difference/Lua/symmetric-difference.lua
Normal file
19
Task/Symmetric-difference/Lua/symmetric-difference.lua
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
A = { ["John"] = true, ["Bob"] = true, ["Mary"] = true, ["Serena"] = true }
|
||||
B = { ["Jim"] = true, ["Mary"] = true, ["John"] = true, ["Bob"] = true }
|
||||
|
||||
A_B = {}
|
||||
for a in pairs(A) do
|
||||
if not B[a] then A_B[a] = true end
|
||||
end
|
||||
|
||||
B_A = {}
|
||||
for b in pairs(B) do
|
||||
if not A[b] then B_A[b] = true end
|
||||
end
|
||||
|
||||
for a_b in pairs(A_B) do
|
||||
print( a_b )
|
||||
end
|
||||
for b_a in pairs(B_A) do
|
||||
print( b_a )
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue