Mode:
Duration:
1
2
3
4
5
6
7
8
9
10
11
import java.util.*;
public class SetExample {
public static void main(String[] args) {
Set<String> set = new HashSet<>();
set.add("Alice");
set.add("Bob");
set.add("Alice"); // Duplicate ignored
System.out.println(set);
}
}Coding works best on desktop or with an external keyboard.