提取不重复的整数

提取不重复的整数

http://www.nowcoder.com/questionTerminal/253986e66d114d378ae8de2e6c4577c1

import java.util.Scanner;

public class Main 
{
    private int cal(int number) {
        boolean[] marked = new boolean[10];
        int result = 0;
        while (number != 0) {
            if (!marked[number % 10]) {
                result = result * 10 + number % 10;
                marked[number % 10] = true;
            }
            number /= 10;
        }
        return result;
    }

    public Main() 
    {
        Scanner in = new Scanner(System.in);
        while (in.hasNextInt()) 
        {
            int number = in.nextInt();
            int result = cal(number);
            System.out.println(result);
        }
    }

    public static void main(String[] args) 
    {
        Main solution = new Main();
    }
}
全部评论
这个解法效率是不是有点太低了
点赞 回复 分享
发布于 2021-03-13 19:15

相关推荐

点赞 评论 收藏
分享
01-30 22:03
门头沟学院 Java
用微笑面对困难:我滴妈,【俩月】【实习】【主管】仨debuff吃满了,独立设计开发的项目写了绝大占比的运营板块,你独立开发,那维护、问题复盘、日志更新、bug、策划书全是自己整的? 不建议写那么大,可以从小出发更容易
点赞 评论 收藏
分享
评论
3
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务