Skip to content

Instantly share code, notes, and snippets.

@adojos
Last active March 9, 2023 11:08
Show Gist options
  • Save adojos/2f1a446ec6de1d2b1d0ad636643225a1 to your computer and use it in GitHub Desktop.
Save adojos/2f1a446ec6de1d2b1d0ad636643225a1 to your computer and use it in GitHub Desktop.
Java: Remove Duplicates from List : Set.addAll #java
public static void usingSetAddAll(){
List<Integer> input = Arrays.asList(5,10,15,20,10,5,35,40,10,25);
Set<Integer> output = new LinkedHashSet<Integer>();
output.addAll(input);
for(Integer num:output){
System.out.print(num+" ");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment