Skip to content

Instantly share code, notes, and snippets.

@dnivra26
Created June 5, 2019 09:50
Show Gist options
  • Save dnivra26/7e28915781dcfa07be54130193521c79 to your computer and use it in GitHub Desktop.
Save dnivra26/7e28915781dcfa07be54130193521c79 to your computer and use it in GitHub Desktop.
class List {
public void add(){
}
public int get() {
}
}
class Stack {
List list;
public void add() {
}
public int get() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment