Smart Keypad - Advanced

how no. is being converted into string??
eg : 34 has 9 combination

Hey its the same as in smart keypad 1 problem ,i.e,
String table[]= { " ", “.+@$”, “abc”, “def”, “ghi”, “jkl” , “mno”, “pqrs” , “tuv”, “wxyz” }.

So in this question you need to print those strings (from searchIn array) that contain the strings generated by the alphabetical combination of number given as the input
Ex:- 34
3 => d,e,f
4 => g,h,i
So print all those strings that contain these combinations
dg, dh, di, eg, eh, ei, fg, fh, fi.

Also you only need to print strings from these only
string searchIn [] = {
“prateek”, “sneha”, “deepak”, “arnav”, “shikha”, “palak”,
“utkarsh”, “divyam”, “vidhi”, “sparsh”, “akku”
};

@Debugger If you don’t have any further queries please mark the doubt as resolved.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.