题解 | #删除字符串中出现次数最少的字符#
提取不重复的整数
http://www.nowcoder.com/practice/253986e66d114d378ae8de2e6c4577c1
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
HashSet<Integer> HS = new HashSet<Integer>();
//HashSet 基于 HashMap 来实现的,是一个不允许有重复元素的集合。
int num = in.nextInt();
while( num !=0 ){
int res = num%10;
if( !HS.contains(res) ){
//如果不包含这个数,则读出来
HS.add(res);
System.out.print(res);
}
num = num/10;
}//while
}//main
}
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
HashSet<Integer> HS = new HashSet<Integer>();
//HashSet 基于 HashMap 来实现的,是一个不允许有重复元素的集合。
int num = in.nextInt();
while( num !=0 ){
int res = num%10;
if( !HS.contains(res) ){
//如果不包含这个数,则读出来
HS.add(res);
System.out.print(res);
}
num = num/10;
}//while
}//main
}