I struggled to learn how to handle arrays of arrays.
Let's say I had this array:
my_array = [['ORANGE',1],['APPLE',2],['PEACH',3]
How can I find the index my_array containing "apple" and delete this index (deleting the submatrix ['APPLE', 2], because "apple" was copied to the array at this index)?
Thank you, I really appreciate the help here.
source share