B. front_x Given a list of strings, return a list with the strings in sorted order, except group all the strings that begin with \'x\' first. e.g. [\'mix\', \'xyz\', \'apple\',
return sorted([w for w in words if w[0] == 'x']) + sorted([w for w in words if w[0] != 'x'])