Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 04-collisions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ For an overview of other types of collision resolution, see the
The index that should be used after `i` collisions is given by:

```
index = hash_a(string) + i * hash_b(string) % num_buckets
index = (hash_a(string) + i * hash_b(string)) % num_buckets
```

We see that if no collisions have occurred, `i = 0`, so the index is just
Expand Down