Let's consider this scenario with arrays:
numbers = [[3,5],[2,4]]
elements = [2,4]
It seems like the array numbers
contains the array elements
But when we try to find the index of elements
in numbers
, it returns -1
Any thoughts on how to tackle this issue?