This problem could be made harder in various ways by changing the conditions.
For example, "what is the probability that the first digit and the last digit of the integer are
each equal to one more than the middle digit?" In this case, p=10/100 = 1/10 {100, 111, 122, 133 ... 199}
An additional change would be increasing the range to something like 100-399. Now we have more than one possibility for the first digit, set with First=2 would be one less {210, 221, 232 ... 298} and First=3 would be 2 less. p=10+9+8/300 = 27/300 = 9/100. It would be even more cumbersome if the range was something like 100-250 because we'd have a partial set of numbers to choose for 200-250.
Another change would be to ask, "what is the probability that the first digit and the last digit of the integer are equal to
two or more than the middle digit?" Now p=45/100= 9/20 {101, 102, 103 ... 109} {112, 113, 114 ... 119} etc. Each time First increases by 1 the number of possibilities is reduced by 1, so 9+8+7...+1. You could change the range here too and make it more calculation intensive.
EMPOWERgmatRichC Hope that's all correct.