How can I find unique elements in a string in the best way?
Sample string format is
myString = "34345667543"
o/p
['3','4','3','5'.....]
|
|
This is an interesting question, and since it returns so many almost similar results, I did a simple benchmark to decide which is actually the best solution:
and the results of this test are, not entirely surprising (0n 1.8.7p352):
and on 1.9.2p180 :
The results for REE (1.8.7) are close to 1.9.2 :
For fun, I also tried on rubinius:
So while the It is weird to notice that on rubinius the |
|||||||||||||
|
I find this reads well: create a Set (which implies unique entries) from the characters in the string. This is missing from the benchmark above, and is the second fastest in my tests with 1.9.3-p274 (fastest is the chars.to_a.uniq). Although we're still talking microbenchmarks here, pretty unlikely to matter in an application :) |
|||
|
|
|
Just use the split method:
|
|||
|
|
Take the characters from a string and make a Set out of them:
The |
|||
|
|