Hi I have this exercise from this book and its telling me to
Insert the keys E A S Y Q U T I O N in that order into an initially empty table of M = 5 lists, using separate chaining. Use the hash function 11 k % M to transform the kth letter of the alphabet into a table index.
However, what does it mean by "Use the hash function 11 k % M"
The hash function is how you take your input -> the key for the table you are putting it in. So when you insert some letter, you should plug it into that function and use that as the key where you insert it.