Given a list of strings, return a new list with the strings in sorted order, except group all the strings that begin with 'x' first.
['mix', 'xyz', 'apple', 'xanadu', 'aardvark']
['xanadu', 'xyz', 'aardvark', 'apple', 'mix']
Bot