For ArrayList we have:
public boolean add(E e) {
but for remove we have:
public boolean remove(Object o) {
Why isn't it?:
public boolean remove(E e) {
For ArrayList we have:
public boolean add(E e) {
but for remove we have:
public boolean remove(Object o) {
Why isn't it?:
public boolean remove(E e) {