I've an array of string, I want to find the duplicate strings in the array and want to make the duplicates null by using HashMap with a good time complexity.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Sounds like you want to use a Set. This clears all duplicate entries, but you can also just create an array which has the unique entries (and no null values)
|
|||||||||
|
|
You don't actually need a map. Here's an example that uses a
|
||||
|
|
|
You can do it in |
|||
|
|
|
Instead of a HashMap you can use a Set too, the steps are (you can work the details out yourself):
That's it. |
|||
|
|