Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save RakhmedovRS/70950a8b5d8c6669cdd270d3ef7737e1 to your computer and use it in GitHub Desktop.
Save RakhmedovRS/70950a8b5d8c6669cdd270d3ef7737e1 to your computer and use it in GitHub Desktop.
class MyLinkedList {
public MyLinkedList() {
}
public int get(int index) {
}
public void addAtHead(int val) {
}
public void addAtTail(int val) {
}
public void addAtIndex(int index, int val) {
}
public void deleteAtIndex(int index) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment