I need to check if list with lists contains list with similar values to the specified list, values may be in different order but in case all values are same it should return true
a= ["1","2","3","4","5"]
b= ["2","3","6","4","7"]
e = (["1","3","2","4","5"],["2","3","6","4","7"])
CombinationFound = []
for i in e:
if i == a:
CombinationFound = True
break;
else:
CombinationFound = False
it should return true since ["1","2","3","4","5"]
and ["1","3","2","4","5"]
have same values