import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public String deleteLeast(String str) { Set<Character> set=new HashSet<>(); //只有小写字母,用数组模拟哈希表,对应索引的值代表字母出现的次数 int[] hash=new int[26]; Arrays.fill(hash,Integer.MAX_VALUE); ...