Given an absolute path for a file (Unix-style), simplify it.Use stack to simplify the path and handle cases like '..', '/', '/./', etc.Ignore redundant slashes and use stack to handle '..' by popping the top element.Return the simplified path as the result.