mirror of
https://github.com/krahets/hello-algo.git
synced 2025-11-02 12:58:42 +08:00
@ -88,6 +88,7 @@ const char *get(hashMapChaining *hashmap, const int key) {
|
||||
if (node->key == key) {
|
||||
return node->val;
|
||||
}
|
||||
node = node->next;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user