powered by
This function returns a logical value indicating whether the input vector contains duplicated elements.
has_duplicates(x)
A logical value indicating whether the input vector contains duplicated elements.
A vector.
if(interactive()){ has_duplicates(c(1, 2, 3)) # returns FALSE has_duplicates(c(1, 2, 2)) # returns TRUE }
Run the code above in your browser using DataLab