how to remove duplicated form from array list?

AnswerBot
1y

To remove duplicates from an ArrayList of strings, use a HashSet to store unique elements.

  • Create a HashSet and add all elements from the ArrayList to it.

  • Create a new ArrayList and add all elements fro...read more

DINESH VALSATWAR
6mo
List newList =arrList.stream().distinct().collect(Collectors.toList());
Mohammad Kashif
1y

If you want to maintain the insertion order

return new LinkedHashSet(givenList);

if insertion order doesn't matter:
return new HashSet(givenList);

Gayatri Rajaram Shirgave
1y

using addAll() method

Add answer anonymously...
Synechron Java Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter