摘要: leetcode地址,java版代码: 1 class Solution { 2 public int findNthDigit(int n) { 3 int digit = 1; 4 long start = 1; 5 long count = 9; 6 while (n > count) { / 阅读全文
posted @ 2021-10-25 19:57 Sempron2800+ 阅读(24) 评论(0) 推荐(0) 编辑