链接
https://leetcode-cn.com/problems/shu-zi-xu-lie-zhong-mou-yi-wei-de-shu-zi-lcof/
题意
数字以0123456789101112131415…的格式序列化到一个字符序列中。在这个序列中,第5位(从下标0开始计数)是5,第13位是1,第19位是4,等等。
解法
将求解分为三步:
确定 n 所在 数字 的 位数 ,记为 digit ;
确定 n 所在的 数字 ,记为 num ;
确定 n 是 num 中的哪一数位,并返回结果。
代码
1 | class Solution { |