Here is my cases,
ListA "1", "2", "3"
ListB "2", "1", "3"
If ListA == ListB, => it should return true since ListA values are in ListB.
ListA "1", "2", "3"
ListB "1", "2", "3", "4"
=> it should return false since ListB of 4 is not in ListA.
Can anybody help on this?