Created
October 4, 2016 03:09
-
-
Save jjlumagbas/f21f7b63538a9db8a720b1195e1207bc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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