Languages
[Edit]
EN

Java - remove duplicates from ArrayList

0 points
Created by:
Lennie-S
439

In this article, we would like to show you how to remove duplicates from ArrayList in Java.


In the following example, to remove duplicates from letters ArrayList, we create a new ArrayList (filtered) and add the first appearance of each element from letters using contains() method. As a result, we receive a new ArrayList without duplicates.

Practical example:

import java.util.*;

public class Example {

    public static void main(String[] args) {
        List<String> letters = new ArrayList<>();

        letters.add("A");
        letters.add("A");
        letters.add("B");
        letters.add("B");
        letters.add("C");
        letters.add("C");

        List<String> filtered = new ArrayList<>();

        for (String letter : letters) {
            if (!filtered.contains(letter)) {
                filtered.add(letter);
            }
        }

        System.out.println("Original ArrayList: " + letters);
        System.out.println("Without duplicates: " + filtered);
    }
}

Output:

Original ArrayList: [A, A, B, B, C, C]
Without duplicates: [A, B, C]
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Java Collections - ArrayList

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join