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...
Top Synechron Java Developer interview questions & answers
Popular interview questions of Java Developer
Top HR questions asked in Synechron Java Developer
Stay ahead in your career. Get AmbitionBox app
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