Languages
[Edit]
EN

Java - remove duplicates from ArrayList using HashSet

0 points
Created by:
Kara
541

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

Quick solution:

Set<String> mySet = new HashSet<>(myArrayList);

 

Practical example

In this example, we create HashSet from the letters ArrayList to remove duplicates.

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("A");

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

        letters.add("C");

        Set<String> distinctSet = new HashSet<>(letters);  // removes duplicates

        System.out.println(distinctSet);
    }
}

Output:

[A, B, C]

Alternative titles

  1. Java - remove duplicated values from ArrayList using HashSet
  2. Java - remove duplicated elements from ArrayList using HashSet
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