How could I do to delete repeated values in a table?
Ex:
a = {1,2,3,4,3,2,1}
How would you erase 3, 2, and 1, keeping only one of each?
My table is one inside another:
a = {
{a=1, b=2},
{a=2, b=3},
{a=1, b=2},
}
In this case, the la...
asked by
30.10.2014 / 17:06