All MicroEvals
Write a function to check if a string is present as a substr...
Create MicroEval
Header image for Write a function to check if a string is present as a substr...

Write a function to check if a string is present as a substr...

Prompt

Write a function to check if a string is present as a substring in a given list of string values. Your function should satisfy these tests: ```python assert find_substring(["red", "black", "white", "green", "orange"],"ack")==True assert find_substring(["red", "black", "white", "green", "orange"],"abc")==False assert find_substring(["red", "black", "white", "green", "orange"],"ange")==True ```

Answer guidance

Reference solution: def find_substring(str1, sub_str): if any(sub_str in s for s in str1): return True return False

Drag to resize
Drag to resize
Drag to resize