Skip to content

TypeScript code snippet – How to check how many elements in a set java?

import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
/*
check a set size by set.size()
*/

public class MainClass {
  public static void main(String[] a) {
    String elements[] = { "A", "B", "C", "D", "E" };
    Set set = new HashSet(Arrays.asList(elements));

    System.out.println(set.size());
  }
}
See also  Python code snippet - How to add turtle in tkinter?

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.