题解 | #删除字符串中出现次数最少的字符#
删除字符串中出现次数最少的字符
https://www.nowcoder.com/practice/05182d328eb848dda7fdd5e029a56da9
import java.util.Scanner; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); // 注意 hasNext 和 hasNextLine 的区别 while (in.hasNext()) { // 注意 while 处理多个 case char [] s = in.next().toCharArray(); int [] count =new int [26]; for(int i=0;i<s.length;i++) { count[s[i]-'a']++; } int m=20; for(int i=0;i<26;i++) { if(count[i]!=0&&m>count[i]) { m=count[i]; } } for(int i=0;i<s.length;i++) { if(count[s[i]-'a']>m) { System.out.print(s[i]); } } } } }