| 
 | 
back to boardCompilation Error(Java) So I wrote a programm and in my sollution on Java I have used such method like: ll.removeFirstOccurrence(Integer.valueOf(point)); Where ll is LinkedList But I have got Compilation Error! When I change this line to: ll.remove(Integer.valueOf(point)); I got AC. Can you explain me what is it.  |  
  | 
|