dsa2 min read
Design a File System — Trie-Based Path Storage
Implement a file system that creates paths and associates values with them. Uses a Trie or HashMap to map full paths to values with O(L) operations.
Read →
webcoderspeed.com
1 articles
Implement a file system that creates paths and associates values with them. Uses a Trie or HashMap to map full paths to values with O(L) operations.