Below is a Go program that takes as input two lines: the first line contains a number, and the second line contains three space-separated digits (digit1, digit2, digit3).
Your task is to write the additional required code to create two functions:
convertNumberToSlice()— To convert the inputnumberinto a slice of its digits.suitableDigits()— That takes a slice of digits from anumberand a variadic slice of digits to check. This function should return a slice of the digits included in thenumber.
Finally, your program should print the result of the function suitableDigits() to the console.