提取不重复的整数

提取不重复的整数

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

相关推荐

躺尸修仙中:因为很多92的也去卷中小厂,反正投递简历不要钱,面试不要钱,时间冲突就推,不冲突就面试积累经验
点赞 评论 收藏
分享
11-08 17:36
诺瓦科技_HR
点赞 评论 收藏
分享
3 收藏 评论
分享
牛客网
牛客企业服务