Given a list of strings, return a new list with the strings sorted in increasing order, except any strings that start with 'x' should come first in the list in lexicographic order.
['mix', 'xyz', 'apple', 'xanadu', 'aardvark']
['xanadu', 'xyz', 'aardvark', 'apple', 'mix']