README ¶ 第 N 位数字 给你一个整数 n ,请你在无限的整数序列 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ...] 中找出并返回第 n__位上的数字。 示例 1: 输入:n = 3 输出:3 示例 2: 输入:n = 11 输出:0 解释:第 11 位数字在序列 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... 里是 0 ,它是 10 的一部分。 提示: 1 <= n <= 231 - 1 第 n 位上的数字是按计数单位(digit)从前往后数的第 n 个数,参见 示例 2 。 Expand ▾ Collapse ▴ Documentation ¶ There is no documentation for this package. Source Files ¶ View all Source files 0400.nth-digit.go Directories ¶ Show internal Expand all Path Synopsis 0401 0403 0405 0407 0412 0413 0414 0419 0421 0423 0430 0434 0438 0441 0443 0446 0447 0451 0453 0457 0458 0459 0461 0470 0472 0475 0476 0482 0483 0488 0492 0494 0495 0496 Click to show internal directories. Click to hide internal directories.