Code two programs for the Jumping Numbers problem described at: http://practice.geeksforgeeks.org/problems/jumping-numbers/0 Given a positive number x, print all Jumping Numbers smaller than or equal to x. A number is called a Jumping Number if all adjacent digits in it differ by 1. The difference between '9' and '0' is not considered 1. All single digit numbers are considered Jumping Numbers. For example 7, 8987 and 4343456 are Jumping numbers but 796 and 89098 are not. One program should use non-determinism where it is appropriate. The other program should be deterministic. Follow the submission guidelines.