/// Delete Reoccurring Characters
///
/// Given a string, delete any reoccurring characters and return the new string containing only the first occurrence of each character.
///
/// # Examples
///
/// Basic usage:
/// ```
/// let results = algorithmz::string::delete_reoccuring("aaabcccc");
/// assert_eq!(results, String::from("abc"));
/// ```