Arr = [[1,2,3,4,5], [6,7,8,9,10], [11,12,13,14,15], [16,17,18,19,20]]
and the given lists are as follows :
lst  = [1,2,3,4,5]        True, as it matches with the row 0.
   [16,17,20,19,18]      False, as it doesn't match with any row.
   [3,2,5,-4,5]        False, as it doesn't match with any row.
   [11,12,13,14,15]      True, as it matches with the row 2.