// In-class work on string hashCode() implementations // and on using polynomial codes to combine sequences // of hash code values public class String{ private char [] s; // O(N^2) where N is the length of the string public int hashCode(){ int ret = 0; for(int i=0; i