Top "Duplicates" questions

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

IntegrityError duplicate key value violates unique constraint - django/postgres

I'm following up in regards to a question that I asked earlier in which I sought to seek a conversion …

django postgresql duplicates unique-constraint database-integrity
Android Studio: Duplicate files copied in APK META-INF/DEPENDENCIES when compile

I exported my project from Eclipse and imported to Android Studio using the instructions in this link: http://developer.android.…

android android-studio duplicates meta-inf
How to check if exists any duplicate in Java 8 Streams?

In java 8, what's the best way to check if a List contains any duplicate? My idea was something like: list.…

java java-8 duplicates java-stream
Find all duplicate documents in a MongoDB collection by a key field

Suppose I have a collection with some set of documents. something like this. { "_id" : ObjectId("4f127fa55e7242718200002d"), "id":1, "…

mongodb mapreduce duplicates aggregation-framework
duplicate symbols for architectures in Xcode

Here is the error message I receive when compiling ... Ld /Users/ilia3546/Library/Developer/Xcode/DerivedData/MasterDetail-fhgogwnbpzovbtaskgecptdnvgjs/Build/Products/Debug-iphonesimulator/…

objective-c xcode duplicates symbols
Using Binary Search with sorted Array with duplicates

I've been tasked with creating a method that will print all the indices where value x is found in a …

java duplicates binary-search
PHP MySQL Copy a row within the same table... with a Primary and Unique key

My table has two keys, one is an auto incrementing id (PRIMARY), the other is the name of the item (…

php mysql duplicates row
How to abort INSERT operation in MySql trigger?

I have a table containing an url and a string representing its parameters. The problem is I want an url …

mysql triggers duplicates
Prevent auto increment on MySQL duplicate insert

Using MySQL 5.1.49, I'm trying to implement a tagging system the problem I have is with a table with two columns: …

mysql insert duplicates innodb auto-increment
Remove duplicate tuples from a list if they are exactly the same including order of items

I know questions similar to this have been asked many, many times on Stack Overflow, but I need to remove …

python list duplicates tuples itertools