-`delete_and_backspace`: which receives a borrowed string, and processes it. `-` represents the backspace key and `+` represents the delete key, so that `"helll-o"` and `"he+lllo"` are both converted to `"hello"`. The `-` and `+` characters should be removed from the string.
-`do_operations`: which borrows a Vector of string literals representing simple addition and subtraction equations. The function should replace the operation with the result.