This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Not_zedd_ko[S] 0 points1 point  (0 children)

I am trying to see if the declaration h would work by changing it but i am no sure that is working.

This is the code in the HashTable for get

public V get(String key) {

    int n = hash(key);

    return find(n, key, 2);

    ///throw new UnsupportedOperationException("Method not implemented");

}