Search for a unique number in the list
for num in list: if num not in unique: unique.append(num)
the code above works pretty well