Skip to content

Instantly share code, notes, and snippets.

@mym0404
Created May 23, 2022 15:40
Show Gist options
  • Save mym0404/4084f87e724a597ca7b552a6af25020b to your computer and use it in GitHub Desktop.
Save mym0404/4084f87e724a597ca7b552a6af25020b to your computer and use it in GitHub Desktop.
import java.util.*;
class Main {
public static void main(String[] args) {
TreeSet<Integer> treeSet = new TreeSet();
TreeMap<Integer, Integer> treeMap = new TreeMap();
HashSet<Integer> hashSet = new HashSet();
HashMap<Integer, Integer> hashMap = new HashMap();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment