Created
May 23, 2022 15:40
-
-
Save mym0404/4084f87e724a597ca7b552a6af25020b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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