Take out a piece of paper and put your name on the upper right corner.

public class LinkedList<E> {
  private LinkedNode<E> head;

  public int length() {
    // your code
  }
}

Time remaining: