The unique-values tag has no wiki summary.
17
votes
3answers
6k views
Efficient list of unique strings C#
What is the most efficient way to store a list of strings ignoring any duplicates?
I was thinking a dictionary may be best inserting strings by writing dict[str] = false; and enumerating through the ...
3
votes
4answers
60 views
removing columns with same value from a data frame
I've got a data frame like this one
1 1 1 K 1 K K
2 1 2 K 1 K K
3 8 3 K 1 K K
4 8 2 K 1 K K
1 1 1 K 1 K K
2 ...
2
votes
5answers
429 views
What regular expression can remove duplicate items from a string?
Given a string of identifiers separated by :, is it possible to construct a regular expression to extract the unique identifiers into another string, also separated by :?
How is it possible to ...
1
vote
4answers
272 views
How to get multiple values from a for loop?
I have a list of records from a column, the list is named as dates. I am trying to get different dates out of the list. The list have many repetitive dates, such as 1/1/2010,1/1/2010, …. but there are ...
0
votes
4answers
2k views
Doubt in action script for Flex: getting unique elements from an ArrayCollection
I have an ArrayCollection as mentioned below.
private var initDG:ArrayCollection = new ArrayCollection([
{fact: "Order #2314", appName: "AA"},
{fact: "Order #2315", ...