leetcode-面试题44-数字序列某位中的数字

题目描述:

 方法一:找规律

class Solution {
    public int findNthDigit(int n) {
        int digit = 1;
        long start = 1;
        long count = 9;
        while(n > count){
            n -= count;
            digit += 1;
            start *= 10;
            count = digit * start * 9;
        }
        long num = start + (n - 1) /digit;
        return Long.toString(num).charAt((n-1) % digit) - '0';
    }
}

猜你喜欢

转载自www.cnblogs.com/oldby/p/12904852.html