what does this error mean? and how do i solve it?
foreach not applicable to expression type.
im am trying to write a method find(). that find a string in a l
Make sure your for-construct looks like this
LinkedList stringList = new LinkedList(); //populate stringList for(String item : stringList) { // do something with item }