[LeetCode] 1291. Sequential Digits -문제풀이
Description 주어진 범위내의 정수 안에서 연속된 digit으로 구성된 가능한 모든 숫자를 반환하는 문제입니다. 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: Input: low = 100, high = 300 Output: [123,234] Example 2: Input: low = 1000, high = 13000 Output: [1234,2..