/// Is Sorted
///
/// Check whether a stack is sorted in ascending order from bottom to top using a single auxiliary stack.
///
/// # Examples
///
/// Basic usage:
/// ```
/// let result = algorithmz::stack::is_sorted(vec![3,4,5]);
/// assert_eq!(result, true);
/// ```