import java.util.*;
public class SetsDemo {
public static void main(String[] args) {
Set<String> uniqueKoelPages = new TreeSet<>();
uniqueKoelPages.add("LoginPage");
uniqueKoelPages.add("HomePage");
uniqueKoelPages.add("HomePage");
uniqueKoelPages.add("ProfilePage");
uniqueKoelPages.add("AProfilePage");
System.out.println(uniqueKoelPages);
}
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter