/// Simplify path
///
/// Given an absolute Unix-style file path, simplify it by resolving '.' (current directory), '..' (parent directory), and multiple slashes.
///
/// # Examples
///
/// Basic usage:
/// ```
/// let result = algorithmz::stack::simplify_path("/home/");
/// assert_eq!(result, String::from("/home"));
/// ```