How to check value and its position are same in 2 array list wi?.
Example:
//These should be not equal.
ArrayList<String> listA = {"a", "b", "c"}
ArrayList<String> listB = {"b", "c", "a"}
In this example element are not same position in both array list so return false..
How to check same value in same position without using for loop
I want to expected result this if.
//These should be equal.
ArrayList<String> listA = {"a", "b", "c"}
ArrayList<String> listB = {"a", "b", "c"}
this type array list then return true because the value and position are same in both array..
return listA.equals(listB). If you don't likeforloop, usewhileArrays.equalsis cheatting :D