I want to give an example directly to explain better
search1 = 'test'
search2 = 'value'
search_array = [[], [], [], [], ....]
I have a list of lists with different lengths and values. I want to find index number of a list if both search1 and search2 exists. At the moment i'm doing nested loops which is super slow performance wise with 50.000 items in list.