Skip to content

Instantly share code, notes, and snippets.

@jjlumagbas
Created October 4, 2016 03:09
Show Gist options
  • Save jjlumagbas/f21f7b63538a9db8a720b1195e1207bc to your computer and use it in GitHub Desktop.
Save jjlumagbas/f21f7b63538a9db8a720b1195e1207bc to your computer and use it in GitHub Desktop.
public interface MyList {
public void add(Object item);
public void add(int i, Object item);
public Object get(int i);
public void remove(int i);
public void set(int i, Object item);
public int size();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment