Round 1
Questions: Implement Linux find command as an API. The API will support finding files that have given size requirements and a file with a certain format like:
find all file >5mb
find all xml
Assume the following class structure:
class File { String getName(); List<File> directoryListFiles(); File getFile(); }
Design classes and interfaces to create a library that is flexible.
Candidate's Approach
No approach provided.
Interviewer's Feedback
No feedback provided.
Round 2
Questions: Specific question not provided.
Follow-up Question
- Binary tree level order traversal
- Zigzag level order traversal
Candidate's Approach
No approach provided.
Interviewer's Feedback
No feedback provided.
Round 3
Questions: Specific question not provided.
Candidate's Approach
No approach provided.
Interviewer's Feedback
No feedback provided.