- this project is part of OSTEP projects
- implementing the key-value store in C, project description
gcc -o kv kv.c hashmap.c hashmap.h -Wall
./kv p,key1,value1 p,key2,value2 p,key3,value3
./kv g,key3
- Reimplement the hashmap with a linked list
- Use Valgrind to SOLVE the memory leaks