DeleteDuplicates
DeleteDuplicates[list]
deletes all duplicates from list.
DeleteDuplicates[list,test]
applies test to pairs of elements to determine whether they should be considered duplicates.
Details
- DeleteDuplicates[list] deletes all but the first occurrence of each distinct element that appears in list.
- DeleteDuplicates also works on associations, removing entries whose values duplicate those earlier in the association.
- DeleteDuplicates never reorders elements, but only removes them.
- DeleteDuplicates[list] is equivalent to DeleteDuplicates[list,SameQ]. »
Examples
open allclose allBasic Examples (2)
Scope (3)
The list need not have head List:
Delete elements that are preceded by at least one larger element:
Properties & Relations (4)
DeleteDuplicates[list] is equivalent to DeleteDuplicates[list,SameQ]:
DeleteDuplicates is similar to Union without sorting:
Avoiding the sort improves the speed substantially:
DeleteDuplicates[list,test] applies test to two elements to determine if they are duplicates:
DeleteDuplicatesBy[list,f] transforms each element using f, then compares the results:
CountDistinct[list] is equivalent to Length[DeleteDuplicates[list]]:
CountDistinct[list,test] is equivalent to Length[DeleteDuplicates[list,test]]:
Text
Wolfram Research (2008), DeleteDuplicates, Wolfram Language function, https://reference.wolfram.com/language/ref/DeleteDuplicates.html (updated 2014).
CMS
Wolfram Language. 2008. "DeleteDuplicates." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2014. https://reference.wolfram.com/language/ref/DeleteDuplicates.html.
APA
Wolfram Language. (2008). DeleteDuplicates. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/DeleteDuplicates.html