remove duplicates from an unsorted array in java

remove duplicates from an unsorted array in java



I was asked in one of the interview that i recently appeared to remove duplicates from unsorted array while still maintaining the order in which they appeared.



For example:


int nums = [2,1,3,3,2,1,4]


int result = [2,1,3,4]



I tried two options one with Hashset and other with list. But i was still wondering if there is an better optimized solution to this.
Appreciate if you can help me out
NerdyHB



Here is are solution


public static void main(String args)
int nums = new int 2, 1, 3, 2, 1 ;
List<Integer> result = removeDuplicates(nums);
System.out.println(result);

int res = removeDuplicatesUsingHashSet(nums);
System.out.println(Arrays.toString(res));


public static List<Integer> removeDuplicates(int nums)
List<Integer> result = new ArrayList<>();
for (int n : nums)
if (!result.contains(n))
result.add(n);



return result;



public static int removeDuplicatesUsingHashSet(int nums)
HashSet<Integer> hset = new HashSet<>();
for (int n : nums)
hset.add(n);

int result = new int[hset.size()];
int counter = 0;
Iterator<Integer> itr = hset.iterator();
while (itr.hasNext())
result[counter++] = itr.next();


return result;





your HashSet solution doesn't preserve order.
– jdigital
Aug 31 at 3:56




1 Answer
1



Change the line:


HashSet<Integer> hset = new HashSet<>();



to:


LinkedHashSet<Integer> hset = new LinkedHashSet<>();



Thanks for contributing an answer to Stack Overflow!



But avoid



To learn more, see our tips on writing great answers.



Some of your past answers have not been well-received, and you're in danger of being blocked from answering.



Please pay close attention to the following guidance:



But avoid



To learn more, see our tips on writing great answers.



Required, but never shown



Required, but never shown






By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Edmonton

Crossroads (UK TV series)