Problem Statement
In a Unix file system, which permission set allows a user to remove files from a directory?
Explanation
In Unix-style systems, to remove files from a directory the user must have write permission (to modify the directory contents) AND execute permission (to access the directory). A directory without execute bit might prevent access. Knowledge of file and directory permissions is a common interview topic.
