Skip to content

Commit 821db84

Browse files
authored
remove indecipherable symbol
1 parent b6f3cd4 commit 821db84

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hash_tables/hash_tables.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ address_book.get("Bob")
1111
'111-222-3333'
1212
```
1313

14-
Hash tables are very efficient â“ their insertion, deletion, and get operations take, on average, constant time.
14+
Hash tables are very efficient. Operations such as insertion, deletion, and get take, on average, constant time.
15+
1516
## How it works:
1617
### Hash Codes
1718
Internally,a hash table stores its values in an array. A special **hash function** is utilized to convert each key into a code, which is then converted into an index into the underlying array. This hash function has a hard requirement to return the same hash code for equal keys.

0 commit comments

Comments
 (0)