Tagged Questions
The unique tag has no wiki summary.
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?
23
votes
8answers
15k views
How do you remove duplicates from a list in Python whilst preserving order?
Is there a built-in that removes duplicates from list in Python, whilst preserving order? I know that I can use a set to remove duplicates, but that destroys the original order. I also know that I can ...
18
votes
8answers
8k views
.NET unique object identifier
Is there any way of getting an unique identifier of an instance?
GetHashCode() is same for 2 references pointing to the same instance. However, 2 different instances can (quite early) get same hash ...
17
votes
16answers
2k views
What can C++ do that is too hard or messy in any other language?
I still feel C++ offers some things that can't be beaten. It's not my intention to start a flame war here, please, if you have strong opinions about not liking C++ don't vent them here. I'm ...
17
votes
6answers
37k views
MySQL: Select N rows, but with only unique values in one column
Given this data set:
ID Name City Birthyear
1 Egon Spengler New York 1957
2 Mac Taylor New York 1955
3 Sarah Connor Los Angeles 1959
4 ...
16
votes
5answers
6k views
How do you remove duplicates from a list in Python?
Given a list of strings, I want to sort it alphabetically and remove duplicates. I know I can do this:
from sets import Set
[...]
myHash = Set(myList)
but I don't know how to retrieve the list ...
16
votes
3answers
8k views
How to create a unique index on a NULL column?
I am using SQL Server 2005. I want to constrain the values in a column to be unique, while allowing NULLS.
My current solution involves a unique index on a view like so:
CREATE VIEW vw_unq WITH ...
13
votes
6answers
530 views
Checking if all elements in a list are unique
What is the best way (best as in the conventional way) of checking whether all elements in a list are unique?
My current approach using a Counter is:
>>> x = [1, 1, 1, 2, 3, 4, 5, 6, 2]
...
12
votes
11answers
772 views
Determining if an unordered vector<T> has all unique elements
Profiling my cpu-bound code has suggested I that spend a long time checking to see if a container contains completely unique elements. Assuming that I have some large container of unsorted elements ...
12
votes
10answers
613 views
How to keep only duplicates efficiently?
Given an STL vector, output only the duplicates in sorted order, e.g.,
INPUT : { 4, 4, 1, 2, 3, 2, 3 }
OUTPUT: { 2, 3, 4 }
The algorithm is trivial, but the goal is to make it as efficient as ...
11
votes
4answers
4k views
Generating a Hardware-ID on Windows
What is the best way to generate a unique hardware ID on Microsoft Windows with C++ that is not easily spoofable (with for example changing the MAC Address)?
10
votes
5answers
97 views
Java: Enforcing doubly linked objects
I am designing a game engine in Java.
At the core of this engine exist the two classes Asset and Attribute, where an Asset has a list of Attributes. Most Attributes need no link back up to their ...
10
votes
6answers
2k views
How to Generate Unique Number in C# of 8 digits?
I am using this code to generate a 8 digit unique number.
byte[] buffer = Guid.NewGuid().ToByteArray();
return BitConverter.ToUInt32(buffer, 8).ToString();
Does this code really generate a unique ...
10
votes
7answers
3k views
What's the fastest way to check List<String> contains a unique String?
It's in Java. Basically I have about 1,000,000 strings, for each request I have to check a String is belonged to the list or not.
I'm worried about the performance, so what's the best method? ...
10
votes
6answers
7k views
How do I get the unique elements from an array of hashes in Ruby?
I have an array of hashes, and I want the unique values out of it. Calling Array.uniq doesn't give me what I expect.
a = [{:a => 1},{:a => 2}, {:a => 1}]
a.uniq # => [{:a => 1}, {:a ...
10
votes
8answers
4k views
Uniq by object attribute in Ruby
What's the most elegant way to select out objects in an array that are unique with respect to one or more attributes?
These objects are stored in ActiveRecord so using AR's methods would be fine too. ...
9
votes
4answers
2k views
Unique constraint with JPA and Bean Validation
I'd like to have a @Unique constraint with Bean Validation, but that is not provided by the standard. If I would use JPA's @UniqueConstraint I wouldn't have a unique validation and error reporting ...
9
votes
3answers
6k views
How to check if a table contains an element in Lua?
Is there a method for checking if a table contains a value ? I have my own (naive) function, but I was wondering if something "official" exists for that ? Or something more efficient...
function ...
8
votes
2answers
205 views
How to select part of a Timestamp in a SQL Query
In the DB I am working with, I want to select only the year from a specific TimeStamp field. In particular, I'm hoping to select the unique years from this database column.
For instance, if all of ...
8
votes
9answers
705 views
Generating a Not-Quite-Globally Unique Identifier
I've found a number of different questions on generating UIDs, but as far as I can tell, my requirements here are somewhat unique (ha).
To summarize: I need to generate a very short ID that's ...
8
votes
5answers
1k views
Unique model field in Django and case sensitivity (postgres)
Consider the following situation: -
Suppose my app allows users to create the states / provinces in their
country. Just for clarity, we are considering only ASCII characters
here.
In the US, a user ...
8
votes
5answers
15k views
Select unique or distinct values from a list in UNIX shell script
I have a ksh script that returns a long list of values, newline separated, and I want to see only the unique/distinct values. It is possible to do this?
For example, say my output is file suffixes in ...
8
votes
9answers
758 views
Should I check for DB constraints in code or should I catch exceptions thrown by DB
I have an application that saves data into a table called Jobs. The Jobs table has a column called Name which has a UNIQUE constraint. The Name column is not PRIMARY KEY. I wonder if I should check ...
8
votes
3answers
1k views
What's the difference between creating a UNIQUE index as “index” or as “constraint” in SQL Server?
When creating an index over a column that is going to be UNIQUE (but not the primary key of the table), SQL server let's me choose a few options:
1) I can choose for it to be a Constraint or an ...
7
votes
2answers
353 views
Efficient data structure for GUIDs
I am in search of a data structure which enables me to quickly (prefarably O(1)-quickly) determine if a given GUID is a member of a Collection of GUIDs or not.
My current approach is to use a ...
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
7answers
409 views
What's the most pythonic way to ensure that all elements of a list are different?
I have a list in Python that I generate as part of the program. I have a strong assumption that these are all different, and I check this with an assertion.
This is the way I do it now:
If there ...
7
votes
5answers
6k views
Getting all unique Items in a C# list
What is the fasters / most efficient way of getting all the unique items out of a C# list?
I have List that possiably has multiple repeating items in it and only want the unique values within the ...
7
votes
6answers
4k views
Unique hardware ID in Mac OS X
Mac OS X development is a fairly new animal for me, and I'm in the process of porting over some software. For software licensing and registration I need to be able to generate some kind of hardware ...
6
votes
1answer
373 views
Unique validator in WTForms with SQLAlchemy models
I defined some WTForms forms in an application that uses SQLALchemy to manage database operations.
That exemple form is managing Categories:
class CategoryForm(Form):
name = TextField(u'name', ...
6
votes
3answers
201 views
Is this a bug in the CPAN Uniq module?
use Uniq;
my @test1 = ("0","0","A");
my @test2 = ("1","1","A");
@test1 = uniq sort @test1;
@test2 = uniq sort @test2;
print "$_" for @test1;
print "\n";
print "$_" for @test2;
print "\n";
...
6
votes
4answers
783 views
Check For Duplicate Records VS try/catch Unique Key Constraint
I have a database table that has a Unique Key constraint defined to avoid duplicate records from occurring.
I'm curious if it is bad practice to NOT manually check for duplicate records prior to ...
6
votes
7answers
3k views
How to make elements of vector unique? (remove non adjacent duplicates)
I have a vector containing few non-adjacent duplicates.
As a simple example, consider:
2 1 6 1 4 6 2 1 1
I am trying to make this vector unique by removing the non-adjacent duplicates and ...
6
votes
5answers
618 views
Handling close-to-impossible collisions on should-be-unique values
There are many systems that depend on the uniqueness of some particular value. Anything that uses GUIDs comes to mind (eg. the Windows registry or other databases), but also things that create a hash ...
6
votes
5answers
15k views
How do I print unique elements in Perl array?
I'm pushing elements into an array during a while statement. Each element is a teacher's name. There ends up being duplicate teacher names in the array when the loop finishes. Sometimes they are not ...
6
votes
8answers
4k views
Is the Hash of a GUID unique?
I create a GUID (as a string) and get the Hash of it. Can I consider this Hash to be unique?
5
votes
3answers
131 views
Dedupe and sort a list in Python 2.2
In Python 2.2 (don't ask), what's the neatest way to sort a list and remove duplicates?
I can obviously write a function that would sort() then iterate, but am wondering if there's an idiomatic ...
5
votes
1answer
227 views
Algorithm to create unique random concatenation of items
I'm thinking about an algorithm that will create X most unique concatenations of Y parts, where each part can be one of several items. For example 3 parts:
part #1: 0,1,2
part #2: a,b,c
part #3: ...
5
votes
6answers
420 views
C++ list remove duplicates strings
I have a little problem when using lists.
What I have: I am reading lines from a chatbox where new lines of text come now and then.
I always fetch the last 20 lines from the box, then i want to ...
5
votes
3answers
531 views
Is there unique() function in javascript to remove similar elements in array of numbers?
I have an array of numbers, like: [1, 4, 7, 1, 2, 1, 3, 1, 4].
I would like to remove duplicate elements and sort the result, i.e. the required result is: [1, 2, 3, 4, 7].
Is there any built in ...
5
votes
2answers
116 views
How do I prevent MySQL from auto-incrementing the Primary Key while using ON DUPLICATE KEY UPDATE when the duplicate is a different unique column?
Consider the following table:
+-------------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
...
5
votes
5answers
2k views
Unique list of items using LINQ
I've been using LINQ for a while now, but seem to be stuck on something with regards to Unique items, I have the folling list:
List<Stock> stock = new List<Stock>();
This has the ...
5
votes
8answers
551 views
Need a SQL statement focus on combination of tables but entries always with unique ID
I need SQL code to solve the tables combination problem, described on below:
Table old data: table old
name version status lastupdate ID
A 0.1 on 6/8/2010 ...
5
votes
6answers
1k views
Unique text field in MySQL and php
I've created a salt using; md5(rand(0,10000000)); (there is probably a better way?)
There doesn't seem to be possible to make a text field unique in MYSQL. So how do I check if the salt has already ...
5
votes
2answers
3k views
How to get a list of all Subversion commit author usernames?
I'm looking for an efficient way to get the list of unique commit authors for an SVN repository as a whole, or for a given resource path. I haven't been able to find an SVN command specifically for ...
5
votes
4answers
2k views
Unique List<T> in .NET 2
What is a
preferably generic;
unique(IComparable/IEquitable) valued
collection of objects for .NET 2?
(à la List<T>, or an equivalent of HashSet<T> from .NET 3.5, but without ...
5
votes
3answers
412 views
Unique Virtual Machine
I am working on some method to protect my software with a license. Doing some wmi calls to uniquely distinguish computers and making sure there cannot be loaded multiple instances of the application.
...
5
votes
8answers
2k views
PHP short unique ID generation using auto_increment?
I would like to generate a short, unique ID without having to check for collisions.
I currently do something like this, but the ID I currently generate is random and checking for collisions in a loop ...
5
votes
2answers
11k views
Rails: How do I find() all records unique in certain fields?
I have a list of 'request' objects, each of which has fairly normal activerecord qualities. The requests table is related to the games table with a join table, 'games_requests,' so that a request has ...
5
votes
3answers
2k views
Generating a unique ID in PHP
I'm trying to generate a unique ID in php in order to store user-uploaded content on a FS without conflicts. I'm using php, and at the moment this little snippet is responsible for generating the ...