Skip to content

Instantly share code, notes, and snippets.

@adojos
Last active March 9, 2023 11:08
Show Gist options
  • Save adojos/437a30542833e4c46326c867dbb8efba to your computer and use it in GitHub Desktop.
Save adojos/437a30542833e4c46326c867dbb8efba to your computer and use it in GitHub Desktop.
Java: Remove Duplicates from List : HashSet #java
public static void usingHashSet(){
List<Integer> input = Arrays.asList(5,10,15,20,10,5,35,40,10,25);
Set<Integer> output = new HashSet<Integer>(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