Find all N digit integers with sequential digits
Given an integer N, the task is to find all N digit integers with sequential digits Examples: Input: N = 4Output: {1234, 2345, 3456, 4567, 5678, 6789}Explanation: All 4 digit integers with sequential digits are: {1234, 2345, 3456, 4567, 5678, 6789} Input: N = 6Output: {123456, 234567, 345678, 456789