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

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

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

import java.util.*;

public class Main{

public static void main(String[] args){

    Scanner sc =  new Scanner(System.in);

    String str= sc.nextLine();
    Integer minValue = 20;

    Map map=  new LinkedHashMap<Character,Integer>();

    for(char c : str.toCharArray()){

        if(map.containsKey(c)){
            map.put(c,(int)map.get(c)+1);
        }else map.put(c,1);
    }
    for(Object c : map.keySet()){
        minValue = minValue > (int)map.get(c)? (int)map.get(c) : minValue;
    }


    for(Object c : map.keySet()){
        if(minValue == map.get(c)){
            str= str.replaceAll(c.toString() , "");
        }
    }
    System.out.print(str);

}

}

全部评论

相关推荐

09-23 08:41
已编辑
门头沟学院 Java
牛客吹哨人:可恶!它越来越嚣张了...哨哥晚点统一更新到黑名单:能救一个是一个!26届毁意向毁约裁员黑名单https://www.nowcoder.com/discuss/1525833
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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