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

题目描述:

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';
    }
}

 

上一篇:c++ 使用json的库。cJSON


下一篇:Python学习系列(一)(基础入门)