题解 | #字符集合#

字符集合

http://www.nowcoder.com/questionTerminal/784efd40ed8e465a84821c8f3970b7b5

public class Main{
    public static void main(String[] args){
        Scanner scanner = new Scanner(System.in);
        while(scanner.hasNextLine()) {
        String str = scanner.nextLine();
        HashMap<Character, Integer> hashtable = new HashMap<Character,Integer>();
        for(int i = 0;i<str.length();i++) {
            if(!hashtable.containsKey(str.charAt(i))){
                System.out.print(str.charAt(i));
                hashtable.put(str.charAt(i),i);
            }
        }
            System.out.println();
    }
} 
}

哈希表yyds!

全部评论

相关推荐

shtdbb_:还不错,没有让你做了笔试再挂你
点赞 评论 收藏
分享
1 1 评论
分享
牛客网
牛客企业服务