Description
An integer has sequential digits if and only if each digit in the number is one more than the previous digit.
Return a sorted list of all the integers in the range [low, high]
inclusive that have sequential digits.
Example 1:
<strong>Input:</strong> low = 100, high = 300
<strong>Output:</strong> [123,234]
Example 2:
<strong>Input:</strong> low = 1000, high = 13000
<strong>Output:</strong> [1234,2345,3456,4567,5678,6789,12345]
Constraints:
10 <= low <= high <= 10^9
Code
Sliding Window
Enumeration
Time Complexity: O(1), Space Complexity: O(1)
Source