Example list:
1 2 3 1
A set is similar to a list, but has the following differences:
You can convert a list to a set by creating a 'weighted list'. The weighted list includes a count column so that you can determine when an item in the list appears more than once:
1,2 2,1 3,1Notice that there are two number 1 values in the weighted list. In order to make insertions into such a list scalable, consider using partitioning to avoid [Read more...]