18
votes
In Python, what is the fastest algorithm for removing duplicates from a list so that all elements are unique *while preserving order*?
def unique(items):
found = set([])
keep = []
for item in items:
if item not in found:
found.add(item)
keep.append(item)
return keep
print …
1
vote
Create many constrained, random permutation of a list
This could be improved, but it seems to do the job (Python):
import math, random
def get_pool(items, y, z):
slots = y*z
use_each_times = slots/len(items)
exceptions = …
4
votes
