Remove duplicates in a list of numbers

def remove_duplicates(listNumbers): total=[] for i in listNumbers: if i in total: continue else: total.append(i) return total def remove_duplicates_fastly(listNumbers): return list(set(listNumbers))
Simple function that remove duplicates in a list of numbers

2 Responses

Let's try to convert a list to set and vice versa

x = [1, 2, 1, 2]
print list(set(x))

profit :)

Write a comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.