summaryrefslogtreecommitdiff
path: root/src/test/HashChainsTest.java
AgeCommit message (Collapse)Author
2019-03-16Rabin-Karp string search done!Haidong Ji
Fun exercise. Some takeaways: 1. Smallest test case is easy to walk through and verify the logic, indexing, and such is correct; 2. Persist, don't give up, take it step by step, and you'll reach the goal! Hooray!
2019-03-10Hash chain simulation done!Haidong Ji
Created test cases for the hash function. Tested the code by running the main function without writting test cases. I wish the starter code was written in a way that facilitated testing...