Using hash tables in racket
- by user2963128
Im working on an Ngrams program and im having trouble filling out my hash table.
i want to write out a recursive function that will take the words and add them to the hash table. The way its supposed to work is given the data set 1 2 3 4 5 6 7
the first entry in the hash table should have a key of
[1 2] and the data should be 3.
The second entry…