Software Engineer · Senior-Level · Phone Screen
The interview question was to implement a simplified file system with two functions: * `addFile(String path)`: Stores a file given a string path like `path/to/somewhere/file.txt`. * `getFile(String path)`: Given `path/to/somewhere`, return `file.txt`. Given `p...