From 6ffbd6eb55a81d43b7e3cee4913224a0f9fa2b5d Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Wed, 28 Mar 2018 09:30:30 +0300 Subject: [PATCH] Add HashTable. --- src/data-structures/hash-table/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data-structures/hash-table/README.md b/src/data-structures/hash-table/README.md index 16837c3c7..6b5ba3e92 100644 --- a/src/data-structures/hash-table/README.md +++ b/src/data-structures/hash-table/README.md @@ -6,4 +6,4 @@ |Insert |O(1)* | |Delete |O(1)* | -* - assuming that we have "good" hash function and big enough hash table size so that collisions are rare. +* assuming that we have "good" hash function and big enough hash table size so that collisions are rare.