A number is considered slidey if for every digit in the number, the next digit from that has an absolute difference of one. Check the examples below.
is_slidey(123454321) ➞ true
is_slidey(54345) ➞ true
is_slidey(987654321) ➞ true
is_slidey(1123) ➞ false
is_slidey(1357) ➞ false