Last active
September 9, 2016 23:30
-
-
Save hosamshahin/c55d1b5ee2354cba56eeb7534790eb0a to your computer and use it in GitHub Desktop.
code-workout: list ADT
This file contains 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 List buildList(List L) | |
{ | |
L.moveToStart(); | |
L.insert(30); | |
L.insert(23); | |
L.insert(19); | |
L.insert(4); | |
L.moveToPos(2); | |
return L; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment