package com.codedifferently.lesson12;

/** Implement the below Stack by providing code for the class methods. */
public class Stack {
  private ListNode top;

  public Stack() {
    this.top = null;
  }

  public void push(int value) {
    // Your code here
  }

  public int pop() {
    return 0;
  }

  public int peek() {
    return 0;
  }

  public boolean isEmpty() {
    return true;
  }
}
