I have some arrays and all the arrays have redundant strings. now I have to remove redundant strings from then arrays but I can't afford brute force technique in my scenario. is there any efficient way to remove redundant values from an array?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The problem of NSSet is that uses the isEqual and hash method. Some alternatives: 1. Override NSString and implement hash and isEqual: This case you'd get your set without duplicated if in the isEqual method you return the result of caseInsensitiveCompare; 1. Capitalize all the strings and go ahead creating the set. |
|||
|
|
|
Depends on what exactly you need in the end. If you need a new array containing all input arrays values without duplicates, you can add all objects into a NSSet. A set will ignore added duplicates. If you need the original arrays excluding duplicates, the best way would be to sort each of them and then recurse through each of them, removing duplicates. |
|||
|

[[NSSet setWithArray:arrayWithDuplicates] allObjects]– Jonathan Cichon Nov 14 '12 at 14:11