Enter your favorite musical artist and see their albums in order of popularity
A Pen by Ryan Irilli on CodePen.
| import java.util.Set; | |
| import java.util.HashSet; | |
| class Test{ | |
| public static void main(String[] args){ | |
| Set<String> a = new HashSet<String>(); | |
| Set<String> b = new HashSet<String>(); | |
| a.add("a"); | |
| b.add("b"); |
Enter your favorite musical artist and see their albums in order of popularity
A Pen by Ryan Irilli on CodePen.