Implement contains, which takes non-negative integers and . It returns whether all the digits of also appear in order among the digits of . Given and the numbers in appear sequentially in the number , so the function returns True
There are many ways to solve this task, but please try to solve using recursion.