Type Username Here
Not a new member
For(String s: someStringList)
{
if(s.charAt(0)=='o' || s.charAt(someStringList.size())=='o')
{
System.out.println(s);}
}
my nicca....you are learning grasshopper
however for string or chars use .equals() for comparison not ==
The bold should be someStringList.size()-1
otherwise it would be an index out of range.