Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

42
votes
15answers
9k views

How to find a duplicate element in an array of shuffled consecutive integers?

I recently came across a question somewhere: Suppose you have an array of 1001 integers. The integers are in random order, but you know each of the integers is between 1 and 1000 (inclusive). In ...
33
votes
11answers
26k views

Find duplicate records in MySQL

I want to pull out duplicate records in a MySQL Database. This can be done with: SELECT address, count(id) as cnt FROM list GROUP BY address HAVING cnt > 1 Which results in: 100 MAIN ST 2 ...
27
votes
8answers
38k views

How do I remove duplicate items from an array in Perl?

I have an array in Perl: @my_array = ("one","two","three","two","three") How do I remove the duplicates from the array?
20
votes
10answers
36k views

How do I remove repeated elements from ArrayList?

I have an ArrayList of Strings, and I want to remove repeated strings from it. How can I do this?
20
votes
4answers
7k views

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 typically use something like: select afield1, afield2 from afile a where 1 < (select ...
17
votes
7answers
29k views

Java: Detect duplicates in ArrayList?

How could I go about detecting (returning true/false) whether an ArrayList contains more than one of the same element in Java? Many thanks, Terry Edit Forgot to mention that I am not looking to ...
16
votes
9answers
6k views

Removing duplicate rows in vi?

I have a text file that contains a long list of entries (one on each line). Some of these are duplicates, and I would like to know if it is possible (and if so, how) to remove any duplicates. I am ...
15
votes
4answers
179 views

Non-Stop cronjob

I got a new requirement from the business about "real time" data/statistics. They want to show how our system is performing in real time. I am not sure how to do it but here are my thoughts: I don't ...
13
votes
3answers
469 views

Finding an element in an array that isn't repeated a multiple of three times?

After reading this interesting question I was reminded of a tricky interview question I had once that I never satisfactorily answered: You are given an array of n 32-bit unsigned integers where ...
12
votes
5answers
6k views

How to find duplicates in 2 columns not 1

In my database, on a particular table there are several cloumns but the only 2 of interest right now are stone_id and upcharge_title. Individually they can each have duplicates, but they should never ...
12
votes
6answers
5k views

Removing duplicate rows from table in Oracle

I'm testing something in Oracle and populated a table with some sample data, but in the process I accidentally loaded duplicate records, so now I can't create a primary key using some of the columns. ...
11
votes
2answers
235 views

What's the most Pythonic way to identify consecutive duplicates in a list?

I've got a list of integers and I want to be able to identify contiguous blocks of duplicates: that is, I want to produce an order-preserving list of duples where each duples contains ...
9
votes
8answers
397 views

Python: find a duplicate in a container efficiently

I have a container cont. If I want to find out if it has duplicates, I'll just check len(cont) == len(set(cont)). Suppose I want to find a duplicate element if it exists (just any arbitrary duplicate ...
9
votes
6answers
700 views

How can I quickly tell if a list contains only duplicates?

There are multiple related questions, but I'm looking for a solution specific to my case. There is an array of (usually) 14 integers. How can I quickly tell if each int appears exactly twice (i.e. ...
9
votes
2answers
2k views

MySQL ON DUPLICATE KEY UPDATE for multiple rows insert in single query

I have a sql query where I want to insert multiple rows in single query. so I used something like: $sql = "INSERT INTO beautiful (name, age) VALUES ('Helen', 24), ('Katrina', 21), ('Samia', ...
9
votes
12answers
7k views

Deleting duplicate lines in a file using Java

As part of a project I'm working on, I'd like to clean up a file I generate of duplicate line entries. These duplicates often won't occur near each other, however. I came up with a method of doing so ...
8
votes
4answers
401 views

Find any one of multiple possible repeated integers in a list

Given an array of n+1 integers, each in the range 1 to n, find an integer that is repeated. I was asked this at a job interview. Here's my answer: The Pigeonhole Principle says there has to be a ...
8
votes
2answers
109 views

Instability in DeleteDuplicates and Tally

While preparing an answer to Count how many different values a list takes in Mathematica I came across an instability (for lack of a better term) in both DeleteDuplicates and Tally that I do not ...
8
votes
2answers
5k views

How can I remove duplicates in an array but keep the same order?

I have this cell array in MATLAB: y = { 'd' 'f' 'a' 'g' 'g' 'a' 'w' 'h'} I use unique(y) to get rid of the duplicates but it rearranges the strings in alphabetical order: >> unique(y) ans = ...
8
votes
6answers
2k views

how to delete duplicates on mysql table?

hello I need to know any way to delete duplicated items for specified sid on table. how can I do this with SQL queries ? DELETE (DUPLICATED TITLES) FROM table WHERE SID = "1" something like this ...
8
votes
3answers
1k views

Finding duplicate values in a SQL table

It's easy to find duplicates with one field SELECT name, COUNT(email) FROM users GROUP BY email HAVING ( COUNT(email) > 1 ) So if we have a table ID NAME EMAIL 1 John asd@asd.com 2 ...
8
votes
4answers
192 views

MySQL - Duplicate elimination and Preserving Valuable Data?

Scenario : I have few duplicate contacts in a table. The duplicates are identified, I can just delete them but the problem is I don't want to lose the data the duplicate might have and the original ...
8
votes
1answer
179 views

Why does this expression return true? [closed]

Possible Duplicate: Can somebody explain this Javascript method ? (x = [].reverse)() === window // true Any idea why?
8
votes
5answers
5k views

MySQL remove duplicates from big database quick

I've got big (>Mil rows) MySQL database messed up by duplicates. I think it could be from 1/4 to 1/2 of the whole db filled with them. I need to get rid of them quick (i mean query execution time). ...
8
votes
21answers
17k views

Algorithm: efficient way to remove duplicate integers from an array

I got this problem from an interview with Microsoft. Given an array of random integers, write an algorithm in C that removes duplicated numbers and return the unique numbers in the original ...
8
votes
5answers
4k views

How can I remove duplicate nodes in XQuery?

I have an XML document I generate on the fly, and I need a function to eliminate any duplicate nodes from it. My function looks like: declare function local:start2() { let $data := ...
8
votes
9answers
16k views

What is the best way to remove duplicates in an Array in Java?

I have an Array of Objects that need the duplicates removed/filtered. I was going to just override equals & hachCode on the Object elements, and then stick them in a Set... but I figured I should ...
7
votes
2answers
483 views

MySQL: finding duplicates across multiple fields

Let's say I had a MySQL database with the following five records in a table: ID: 1 Field1: A Field2: B Field3: C ID: 2 Field1: D Field2: E Field3: F ID: 3 Field1: A Field2: H Field3: I ID: 4 ...
7
votes
11answers
2k views

How do I remove duplicate characters and keep the unique one only in Perl?

How do I remove duplicate characters and keep the unique one only. For example, my input is: EFUAHUU UUUEUUUUH UJUJHHACDEFUCU Expected output is: EFUAH UEH UJHACDEF I came across perl ...
7
votes
3answers
263 views

Deleting duplicates from a large table

I have quite a large table with 19 000 000 records, and I have problem with duplicate rows. There's a lot of similar questions even here in SO, but none of them seems to give me a satisfactory answer. ...
7
votes
6answers
643 views

Show duplicates in Mathematica

In Mathematica I have a list: x = {1,2,3,3,4,5,5,6} How will I make a list with the duplicates? Like: {3,5} I have been looking at Lists as Sets, if there is something like Except[] for lists, ...
7
votes
2answers
3k views

counting duplicates in a sorted sequence using command line tools

I have a command (cmd1) that greps through a log file to filter out a set of numbers. the numbers are in random order, so i use sort -gr to get a reverse sorted list of numbers. there may be ...
7
votes
7answers
3k views

Detect duplicate MP3 files with different bitrates and/or different ID3 tags?

How could I detect (preferably with Python) duplicate MP3 files that can be encoded with different bitrates (but they are the same song) and ID3 tags that can be incorrect? I know I can do an MD5 ...
6
votes
7answers
138 views

Removing Duplicates From Dictionary

I have the following Python 2.7 dictionary data structure (I do not control source data - comes from another system as is): {112762853378: {'dst': ['10.121.4.136'], 'src': ['1.2.3.4'], ...
6
votes
7answers
118 views

How to determine duplicates in a collection of ints?

Let's say I've got the following values in a collection of integers: {1,3,4,5,5,6,7,7} The result I'd expect is {5,7}. How can I do that? Maybe using LINQ? EDIT: The input collection is unsorted, ...
6
votes
4answers
362 views

Best algorithm for delete duplicates in array of strings

Today at school the teacher asked us to implement a duplicate-deletion algorithm. It's not that difficult and everyone came up with the following solution (pseudo code): for i from 1 to n - 1 ...
6
votes
1answer
186 views

Is there an implementation of the idea described in “Detecting NearDuplicates for Web Crawling”

The paper: http://www2007.org/papers/paper215.pdf I am just wondering are there any implementations of chapter 3 of that paper. I mean querying among large datasets, NOT only the simhash (it's easy ...
6
votes
2answers
1k views

Remove Duplicate Rows Leaving Oldest Row Only?

I have a table of data and there are many duplicate entries from user submissions. I want to delete all duplicates rows based on the field subscriberEmail, leaving only the original submission. In ...
6
votes
6answers
2k views

Remove duplicate rows from a large file in Python

I've a csv file that I want to remove duplicate rows from, but it's too large to fit into memory. I found a way to get it done, but my guess is that it's not the best way. Each row contains 15 ...
6
votes
3answers
5k views

JQuery: Remove duplicate elements?

Say I have a list of links with duplicate values as below: <a href="#">Book</a> <a href="#">Magazine</a> <a href="#">Book</a> <a href="#">Book</a> ...
6
votes
2answers
667 views

How to remove duplicates from a list in C#

I want to remove duplicates from this list: List<Dictionary<string, object>> val = new List<Dictionary<string, object>>(); It does not work if I apply Distinct() in this ...
6
votes
6answers
836 views

How do I prevent duplicates, in XSL?

How do I prevent duplicate entries into a list, and then ideally, sort that list? What I'm doing, is when information at one level is missing, taking the information from a level below it, to ...
6
votes
5answers
3k views

Finding duplicate files and removing them

well, I am not a Programming guru in python but manage to write some of them :) The one I am writing is finding and removing the duplicate files from the folder. I have multiple copies of mp3 files, ...
6
votes
3answers
588 views

Need Duplicates Allowed In SortedCollection (C#, 2.0)

I have a project that I'm working on that requires changing a 'BaseSortedCollection' class to allow duplicates. The class currently implements IEnumerable, IDisposable, ICollection, and ...
5
votes
1answer
96 views

list of masked functions in R

I use a lot of packages and I know some functions are masked because they exist in several different packages. Is there a way to get the list of duplicate functions (or masked functions?) The ideal ...
5
votes
3answers
190 views

3rd way to find a duplicate

Two common ways to detect duplicates in an array: 1) sort first, time complexity O (n log n), space complexity O (1) 2) hash set, time complexity O (n), space complexity O (n) Is there a 3rd way to ...
5
votes
4answers
84 views

In PostgreSQL (and maybe other engines), why does the UNION statement consider NULL values the same, while the UNIQUE constraint does not?

I understand that the SQL standard allows multiple NULL values in a column that is part of the UNIQUE constraint. What I don't understand is why the UNION construct (at least in PostgreSQL,) treats ...
5
votes
2answers
625 views

Javascript / jQuery Find Text duplicates

How would you approach finding duplicates in a text document. Duplicates can be a set of consecutive words or sentence. Sentence not necessary ending with a dot. let's say page contains a document of ...
5
votes
2answers
278 views

Java Sockets: Socket.close() terminates connection different on Windows and Mac?

Situation is as follows: I have a Java Application, that communicates over TCP to a Microcontroller with TCP Stack on it. The Stack on the Controller works fine, I can sort this out. Problem is: When ...
5
votes
2answers
261 views

Find duplicates in app engine datastore

I've some duplicated elements in my datastore (not the whole row, but most of the fields on it) in App Engine. What's the best way to find them? I've both integer and string fields that are ...

1 2 3 4 5 19