Create a function that takes a string and returns true or false, depending on whether the characters are in order or not.
is_in_order("abc") ➞ true
is_in_order("edabit") ➞ false
is_in_order("123") ➞ true
is_in_order("xyzz") ➞ trueYou don't have to handle empty strings.