编辑代码

import java.util.*;
class Main {
	public static void main(String[] args) {
        //JSRUN引擎2.0,支持多达30种语言在线运行,全仿真在线交互输入输出。
        Set<String> set = new HashSet<>();
        set.add("1");
        set.add("2");
        set.add("1");
		System.out.println(set);
	}
}