Create a function that validates whether a number n is within the bounds of lower and upper. Return false if n is not an integer.
n
lower
upper
false
int_within_bounds(3, 1, 9) ➞ true int_within_bounds(6, 1, 6) ➞ false int_within_bounds(4.5, 3, 8) ➞ false