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

public class HashmapChaining<K, V> {
  private LinkedList<Entry<K, V>>[] table;

  /**
   * Associates the value with the given key.
   * @param key, the key.
   * @return The value associated with the given key.
   */
  public V get(Object key) {
    // your code.
  }
  
  private class Entry<K,V> {
    K key;
    V value;
  }
}

Time remaining: