Top "Duplicates" questions

The "duplicates" tag concerns detecting and/or dealing with multiple instances of items in collections.

Finding ALL duplicate rows, including "elements with smaller subscripts"

R's duplicated returns a vector showing whether each element of a vector or data frame is a duplicate of an …

r duplicates r-faq
Remove duplicates from an unsorted linked list

import java.util.*; /* * Remove duplicates from an unsorted linked list */ public class LinkedListNode { public int data; public LinkedListNode next; public …

java duplicates singly-linked-list
how to remove duplicates in SAS data step

How to remove duplicates in SAS data step. data uscpi; input year month cpi; datalines; 1990 6 129.9 1990 7 130.4 1990 8 131.6 1990 9 132.7 1991 4 135.2 1991 5 135.6 1991 6 136.0 1991 7 136.2 ; run; PROC SORT DATA = uscpi …

duplicates sas datastep
Scala: Remove duplicates in list of objects

I've got a list of objects List[Object] which are all instantiated from the same class. This class has a …

list scala duplicates
Fastest "Get Duplicates" SQL script

What is an example of a fast SQL to get duplicates in datasets with hundreds of thousands of records. I …

sql scripting duplicates performance
Remove duplicate records based on multiple columns?

I'm using Heroku to host my Ruby on Rails application and for one reason or another, I may have some …

ruby-on-rails-3 activerecord duplicates destroy
Highlight duplicate values

In Excel, Office 2007, I have the option to highlight duplicate values on the menu. Keep simple! Select the column, select "…

formatting duplicates openoffice-calc
Remove sequentially duplicate frames when using FFmpeg

Is there any way to detect duplicate frames within the video using ffmpeg? I tried -vf flag with select=gt(…

ffmpeg duplicates
Stored procedure using SP_SEND_DBMAIL sending duplicate emails to all recipients

I have a stored procedure that is run every night which is supposed to send the results of a query …

sql sql-server email duplicates sp-send-dbmail
Removing duplicates with unique index

I inserted between two tables fields A,B,C,D, believing I had created a Unique Index on A,B,…

mysql duplicates unique-index