题解 | #提取不重复的整数# 字符串拼接 包含 算小白路过

提取不重复的整数

https://www.nowcoder.com/practice/253986e66d114d378ae8de2e6c4577c1

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        String str = in.nextLine();
        String[] strlist = str.split("");
        StringBuilder sb = new StringBuilder();
        for(int i = strlist.length - 1; i >=0; i--){
            String res = strlist[i];
            if(!sb.toString().contains(res)){
                sb.append(res);
            }
        }
        System.out.println(sb.toString());
    }
}

#华为OD的机试题目不容易啊##剑指offr##华为机试#
全部评论

相关推荐

11-08 10:39
门头沟学院 C++
点赞 评论 收藏
分享
hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
服从性笔试吗,发这么多笔,现在还在发。
蟑螂恶霸zZ:傻 x 公司,发两次笔试,两次部门匹配挂,
投递金山WPS等公司10个岗位 >
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务