Back to course home
0% completed
Solution: Nth Digit
Problem Statement
Given a positive integer n
, find the n<sup>th</sup> digit of the infinite integer sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13...
and so on.
Examples
-
Example 1:
- Input:
n = 3
- Expected Output:
3
- Justification: The third digit in the sequence
1, 2, 3, 4, 5, 6, 7...
is3
.
- Input:
-
Example 2:
- Input:
n = 110000
- Expected Output:
2
- Justification: In the sequence, the 110,000th digit is part of a larger number where the pattern has expanded beyond single, double, and triple digits
- Input:
.....
.....
.....
Like the course? Get enrolled and start learning!
Table of Contents
Contents are not accessible
Contents are not accessible
Contents are not accessible
Contents are not accessible
Contents are not accessible