前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >LeetCode 0400 - Nth Digit

LeetCode 0400 - Nth Digit

作者头像
Reck Zhang
发布2021-08-11 11:07:44
2430
发布2021-08-11 11:07:44
举报
文章被收录于专栏:Reck Zhang

LeetCode 0400 - Nth Digit

Desicription

Find the nth digit of the infinite integer sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, …

Note:

n is positive and will fit within the range of a 32-bit signed integer (n < 231).

Example 1:

代码语言:javascript
复制
Input:
3

Output:
3

Example 2:

代码语言:javascript
复制
Input:
11

Output:
0

Explanation:
The 11th digit of the sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... is a 0, which is part of the number 10.

Solution

代码语言:javascript
复制
class Solution {
public:
    int findNthDigit(int n) {
        long long start = 1;
        long long len = 1;
        long long count = 9;
        while(n > len * count) {
            n -= len * count;
            len++;
            count *= 10;
            start *= 10;
        }
        return std::to_string(start + (n - 1) / len)[(n - 1) % len] - '0';
    }
};
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019-10-02,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • LeetCode 0400 - Nth Digit
    • Desicription
      • Solution
      领券
      问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档