| 10 | #include "hashing_count_unique_substrings.h" |
| 11 | |
| 12 | int main() { |
| 13 | assert(compute_hash("abc") != compute_hash("abd")); |
| 14 | |
| 15 | vector<string> v = {"a", "b", "abc", "b", "b", "abc"}; |
| 16 | assert(group_identical_strings(v).size() == 3); |
| 17 | |
| 18 | assert(count_unique_substrings("abaabcabc") == 35); |
| 19 | } |
| 20 |
nothing calls this directly
no outgoing calls
no test coverage detected