Skip to content

Instantly share code, notes, and snippets.

@adojos
Last active March 9, 2023 11:08
Show Gist options
  • Save adojos/ce2f356102b1b84fe236a0e4f2a9398f to your computer and use it in GitHub Desktop.
Save adojos/ce2f356102b1b84fe236a0e4f2a9398f to your computer and use it in GitHub Desktop.
Java: Remove Duplicates from List : For-Loop #java
public static void usingForLoop(){
List<Integer> input = Arrays.asList(5,10,15,20,10,5,35,40,10,25);
List<Integer> output = new ArrayList<Integer>();
for(Integer num:input){
if(!output.contains(num)){
output.add(num);
}
}
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