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

Examples

open allclose all

Basic Examples  (2)

Delete duplicated elements:

Delete elements whose values duplicate those earlier in the association:

Scope  (3)

The list need not have head List:

Delete elements that are preceded by at least one larger element:

Treat numbers as equal if they differ by 0.01 or less:

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]]:

Possible Issues  (1)

If the comparison function returns neither True nor False, elements are assumed to be distinct:

Compare with the function that always reports elements as distinct:

Wolfram Research (2008), DeleteDuplicates, Wolfram Language function, https://reference.wolfram.com/language/ref/DeleteDuplicates.html (updated 2014).

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

BibTeX

@misc{reference.wolfram_2023_deleteduplicates, author="Wolfram Research", title="{DeleteDuplicates}", year="2014", howpublished="\url{https://reference.wolfram.com/language/ref/DeleteDuplicates.html}", note=[Accessed: 19-March-2024 ]}

BibLaTeX

@online{reference.wolfram_2023_deleteduplicates, organization={Wolfram Research}, title={DeleteDuplicates}, year={2014}, url={https://reference.wolfram.com/language/ref/DeleteDuplicates.html}, note=[Accessed: 19-March-2024 ]}