Hey i have written a method to take two lists of strings as input, merge these two lists together, then go through each list individually and if it contains a
word in the merge list, to return 1 otherwise return 0. However currently this only checks if the "exact" same
string is in the list, as in it is case sensitive, i need it to be case insensitive for what i am trying to do
The return statement here is redundant i am just returning an int to
test the method. Does anybody know how i can perform the same test while ignoring case? I would appreciate any help
Thanks