Given two inputs both comma delimitated - input 1 is a list of words, input two represents a list of
ascii values for letters. Find how many of those words can be constructed by the values of the letters given in input 2.
arg1: cat,dog
arg2: 116,100,97,99,103,111
Expected: 2
arg1: mouse,horse,dog,cat
arg2: 115,111,101,116,99,117,104,97,114,109
Expected: 3
arg1: EngineerMan,Bones,Brtwrst,HexF
arg2: 110,97,105,103,110,69,110,116,114,116,77,101,114,115,101,66,119
Expected: 2
Argument 1 cat,dogArgument 2 116,100,97,99,103,111Expected Output 2
Argument 1 mouse,horse,dog,catArgument 2 115,111,101,116,99,117,104,97,114,109Expected Output 3
Argument 1 EngineerMan,Bones,Brtwrst,HexFArgument 2 110,97,105,103,110,69,110,116,114,116,77,101,114,115,101,66,119Expected Output 2
Argument 1 cat,dog,horse,JoKing,zebra,emkc,rabbit,hashme,LyndonArgument 2 110,105,74,109,116,110,103,110,121,100,99,97,104,115,109,104,114,104,101,114,103,97,111,107,76,101,100,97,116,111,75,99,101,98,111,115,111,98,105Expected Output 8