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

import java.util.*;
import java.lang.*;
public class Main{
public static void main(String[] args)
    { 
        Scanner sc = new Scanner(System.in);
        String str = sc.nextLine();
        sc.close();
        int[] n = new int[26];
        for(char c:str.toCharArray()){
            n[c-'a']++;
        }
        int min = 21;
        for(int res:n){
            if(res0){
                min = res;
            }
        }
        for(int i=0;i

你可能感兴趣的:(HWOJ删除字符串中出现次数最少的字符)