countStepNums with parameters: current index, tightness, leading zeros, previous digit, and the DP table.countStepNums for the next index with updated parameters.
c. Sum the results of the recursive calls.countStepNums for the range from 0 to low and from 0 to high.low from the result for high and adjust for inclusivity of low if it's a stepping number.