-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathSteppingNumbers.cpp
65 lines (48 loc) · 1.04 KB
/
SteppingNumbers.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
Given N and M find all stepping numbers in range N to M
The stepping number:
A number is called as a stepping number if the adjacent digits have a difference of 1.
e.g 123 is stepping number, but 358 is not a stepping number
Example:
N = 10, M = 20
all stepping numbers are 10 , 12
Return the numbers in sorted order.
LINK: https://www.interviewbit.com/problems/stepping-numbers/
*/
typedef long long int ll;
vector<int> res;
int a;
int b;
void solve(ll num)
{
if(num>b)
return;
if(num>=a)
res.push_back(num);
int lastDig = num%10;
if(lastDig == 0)
solve(num*10 + 1);
else
if(lastDig == 9)
solve(num*10 + 8);
else
{
solve(num*10 + lastDig - 1);
solve(num*10 + lastDig + 1);
}
}
vector<int> Solution::stepnum(int A, int B)
{
res.clear();
a = A;
b = B;
if(A>B)
return res;
if(A==0)
res.push_back(0);
for(int i=1;i<=9;i++)
solve(i);
if(!res.empty())
sort(res.begin(), res.end());
return res;
}