From fec396ae74de8521cd5e8c31b749537b4ecedd6d Mon Sep 17 00:00:00 2001 From: Diem-Trang Pham <6422507+pdtrang@users.noreply.github.com> Date: Tue, 18 Nov 2025 14:21:04 -0600 Subject: [PATCH] fix(curriculum): unclear instruction: Build a hash table (#63952) --- .../english/blocks/lab-hash-table/67ed03ac474c48692f41749e.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/blocks/lab-hash-table/67ed03ac474c48692f41749e.md b/curriculum/challenges/english/blocks/lab-hash-table/67ed03ac474c48692f41749e.md index 322c2991c7d..34ec9856a15 100644 --- a/curriculum/challenges/english/blocks/lab-hash-table/67ed03ac474c48692f41749e.md +++ b/curriculum/challenges/english/blocks/lab-hash-table/67ed03ac474c48692f41749e.md @@ -26,8 +26,8 @@ For the purpose of this lab, the hashing function will be simple: it will sum th 4. The `add` method should: - Take two arguments representing a key-value pair, and compute the hash of the key. - - Use the computed hash value to store the key-value pair inside the `collection` dictionary. - - If multiple keys produce the same hash value, their key-value pairs should be stored in a nested dictionary under the same hash value. + - Use the computed hash value as a key to store a dictionary containing the key-value pair inside the `collection` dictionary. + - If multiple keys produce the same hash value, their key-value pairs should be stored in the existing nested dictionary under the same hash value. 5. The `remove` method should: