题解 | #明明的随机数# Java HashMap
明明的随机数
https://www.nowcoder.com/practice/3245215fffb84b7b81285493eae92ff0
import java.util.*;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
// 空间换时间
HashMap<Integer, Integer> map = new HashMap<Integer, Integer>(500); // 容量500,如果小于500 则数据可能不会按照顺序put
in.nextInt(); // 输入的个数,下面用了while就不需要第一个参数了
while (in.hasNextInt()) {
map.put(in.nextInt(), 1);
}
Set keys = map.keySet();
for (Object key : keys) {
System.out.println(key);
}
}
}