题解 | #删除字符串中出现次数最少的字符#

删除字符串中出现次数最少的字符

https://www.nowcoder.com/practice/05182d328eb848dda7fdd5e029a56da9

import java.util.*;
// 使用HashMap计算字符出现的个数
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        while (in.hasNextLine()) { // 注意 while 处理多个 case
            String s = in.nextLine();
            char[] chars = s.toCharArray();
            Map<String, Integer> map = new HashMap();
            for (char c : chars) {
                if (map.containsKey(String.valueOf(c))) {
                    map.put(String.valueOf(c), map.get(String.valueOf(c)) + 1);
                } else {
                    map.put(String.valueOf(c), 1);
                }
            }
            Collection<Integer> value = map.values();
            Integer minNum = Collections.min(value);
            for (String ss : map.keySet()) {
                if (map.get(ss) == minNum) {
                    s = s.replaceAll(ss, "");
                }
            }
            System.out.println(s);
        }
    }
}

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务