Given two ArrayLists of Strings (ArrayList<String>), write
a Java method to return the higher count of the characters in each
ArrayList. For example, if list1 has strings (“cat,
“dog”, “boat”, “elephant”) and list 2 has strings (“bat”, “mat”,
“port”, “stigma”), you will return the value 18. The
list 1 has 18 characters in total for all its strings combined and
list2 has 16 characters for all of its strings
combined. The higher value is 18. If the character count
is the same, you...