Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
10answers
12k views

Is there a no-duplicate List implementation out there?

I know about SortedSet, but in my case I need something that implements List, and not Set. So is there an implementation out there, in the API or elsewhere? It shouldn't be hard to implement myself, ...
3
votes
3answers
132 views

Does Javascript supports Sets?

Does Javascript supports Sets(list with unique objects only) ? I have found this link, but from what I remember foreach in JS in not supported by every browser.
2
votes
1answer
84 views

php array stack ordering

I am trying to sort this array in php: Array ( [Levi Self] => Array ( [0] => Portraits [1] => Abstract ) [Portraits] => Array ( ...
2
votes
3answers
257 views

Removing Identical Objects in Ruby?

I am writing a Ruby app at the moment which is going to search twitter for various things. One of the problems I am going to face is shared results between searches in close proximity to each other ...
1
vote
2answers
83 views

deleting duplicate records on mysql?

I have this mysql query that finds duplicates and the number of occurances for each topic: SELECT name, COUNT(name) AS NumOccurrences FROM topics GROUP BY name HAVING ( COUNT(name) > 1 ) but ...
1
vote
4answers
300 views

How to not print duplicates in a data grid view using LINQ

I have a table called TIME and there are multiple students in it. Sometimes, student A will have more than one entry in TIME. How do I print just the latest record for student A?
1
vote
1answer
546 views

SQLite: remove duplicate rows when entire row is not unique

I'm creating an SQLite view to track customer emails and their accounts. There are some customers who created multiple accounts with the same email address. Using SQLite, is there a way to restrict ...
1
vote
13answers
196 views

Avoiding duplicate identifiers in the database

NOTICE: Appericiate all the answers, thanks but we already have a sequence.. and can't use the UNIQUE contraints because some items need to have duplicates.. I need to handle this using PLSQL somehow, ...
1
vote
6answers
703 views

C# Check Object Array For Duplicates

I have an array of Customer[] objects, and I want to use it to create a Dictionary<Customer, string>. What is the easiest way to examine the array for duplicates before I load the Dictionary? ...
1
vote
2answers
113 views

Selecting with preference in SQL Server

I have a table in SQL Server 2000 with data similar to the following: ReferenceNumber ReferenceValue 00001 Not assigned 00002 Not assigned 00002 ABCDE in ...
0
votes
1answer
94 views

Batch filter duplicate lines and write to a new file (semi-finished)

I have successfully made a script that filters out duplicate lines in a file and saves the results to a variable semi-colon separated (sort of an "array"). I could not find any real good solution to ...
0
votes
2answers
54 views

Is there a way to check for Duplicates when Importing Excel Sheet into MySQL table using vb.net

I have a upload excel file on my web application. When the file is uploaded it is supposed to be openned and then import the data into a mysql table. It works fine in that it adds the information just ...
0
votes
1answer
61 views

Which hash algorithm for duplicate URLs checking?

I am saving URL's in a database, and when i insert a new one, i want to check if that url exists already in the database. A common practice (if i'm not mistaken) is to hash the urls using md5 or ...
0
votes
2answers
92 views

MySQL Ignore is not working

I am trying to prevent duplicates from occuring using the following query, but it doesnt seem to work. Please could you tell me what the problem is? INSERT IGNORE INTO Following SET `followingUserID` ...
0
votes
4answers
110 views

Python: Unexpected ordering in lists

I've encountering a weird behavior while working with lists in Python. I've implemented a method that returns a list of lists of Integers; in particular, those are cycles within a graph each including ...
0
votes
4answers
540 views

How to remove duplicate items from a queue within a time frame?

I would like to remove duplicate entries from a queue in an efficient way. The queue has a custom class with DateTime and FullPath and a few other things private Queue<MyCustomClass> ...
0
votes
2answers
137 views

sort an $array of ints by repetition and remove repetitions

i need to do this in php lets say i have [1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,4,5,5,5,5,5,5,5,5,5,5,5,9,9,9,9,9] i would like [1,5,9,2,3,4] but my situation its a bit different, it's result from a mysql ...
0
votes
2answers
1k views

Removing duplicates from a linked-list in Java without the use of extra buffer

I am reviewing some snippets of code for an upcoming test. I saw this in my notes, and just now realized that this code for method 1 doesn't actually remove duplicates if the list is in this way A -> ...
0
votes
1answer
405 views

Duplicate List records

How do I avoid entering the same kind of data from the same users in sharepoint list? Any directions please Hari Gillala
0
votes
1answer
1k views

Python mysql check for duplicate before insert

here is the table CREATE TABLE IF NOT EXISTS kompas_url ( id BIGINT(20) NOT NULL AUTO_INCREMENT, url VARCHAR(1000), created_date datetime, modified_date datetime, PRIMARY KEY(id) ...
-1
votes
3answers
176 views

how to exclude rows that have duplicates in one field

I have a very simple task, but I cannot find any solution. I have two tables, 'articles' and 'categories' My article table look like this: id | cat_id | title | content 1 1 Blah ...