Android 5.0, Java 1.7
I has 2 lists. I need to compare only content of this lists. The order of the elements does not matter. Example:
[1,2,3,4,5] , [1,2,3,4,5] -> return true
[1,2,3,4] , [1,2,3,4,5] -> return false
[1,3,5,4,2] , [1,2,3,4,5] -> return true