reference on a list and find if a given string is in the list java code example
Example: list contains
List<Integer> arr = new ArrayList<Integer>(4);
boolean ans = arr.contains(2);
List<Integer> arr = new ArrayList<Integer>(4);
boolean ans = arr.contains(2);