Say for example I have a list of 7 numbers, let's call it 'lineA' and I have 50 lines of numbers below and I want to see if 'lineA' matches my 50 lines EXACTLY in that order. What is the quickest (time-wise)/most efficient way of doing it? A loop? Or any other method?
lineA = [1,2,3,4,5,6,7]
lineTwo = [1,33,40,44,45,1,2]
lineThree = [2,13,22,41,50,8,9]
lineFour = [1,2,3,4,5,6,7]
lineFive = etc.....(repeat this 50 times)
Thank you