From 19af1ea2c4193f07491538396c9151f3010881b3 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Tue, 7 Nov 2023 01:27:06 -0500 Subject: [PATCH] new lab 11 --- labs/11_hash_tables/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labs/11_hash_tables/README.md b/labs/11_hash_tables/README.md index ce3d37e..25d9f1a 100644 --- a/labs/11_hash_tables/README.md +++ b/labs/11_hash_tables/README.md @@ -62,7 +62,7 @@ Complete the *isHappy* function using separate chaining. Do not use any of these ## Checkpoint 3: Separate Chaining Hash Table -*estimate: 20-30 minutes* +*estimate: 30-40 minutes* Form a team of two members. Complete the *longestConsecutive* function in this [program](test_longest_consecutive_sequence.cpp). You must use a separate-chaining-based hash table. Do not use any of these: std::unordered_map, std::unordered_set, std::map, std::set.