Task 1 You are given
Nrecipes, the
K-th of which is represented by a string A[K]. Each letter of the string represents a single unit of an ingredient: for example, recipe "toast" requires two ur its of ingredient '
t' and one unit of ingredients '
o', '
a' and '
s'. Yourare also given a list of available ingredients represented by a string S. Which recipes can be prepared using ingredients from the list? Wite a function: def solution(A, S) given an array
Aconsisting of
Nstrings representing the recipes, and a string S representing the list of available ingredients, returns the number of recipes that can be prepared using available ingredients. Examples: Given "toast", "bread", "breada", "cheese"] and S = "abcdeeehrs", the function should return 2. With our ingredients, recipes "bread" and "cheese" can be prepared
