Skip to main content
added 9 characters in body
Source Link
Dennis
  • 211.7k
  • 41
  • 380
  • 830

Python 2, 6767 66 bytes

lambda s,k:''.join(sorted`sorted(s,key=lambda c:[k`k.index(3-ord(c)/32),c])`+c)`[2::5] 

Test it on Ideone.

Python 2, 67 bytes

lambda s,k:''.join(sorted(s,key=lambda c:[k.index(3-ord(c)/32),c])) 

Test it on Ideone.

Python 2, 67 66 bytes

lambda s,k:`sorted(s,key=lambda c:`k.index(3-ord(c)/32)`+c)`[2::5] 

Test it on Ideone.

Source Link
Dennis
  • 211.7k
  • 41
  • 380
  • 830

Python 2, 67 bytes

lambda s,k:''.join(sorted(s,key=lambda c:[k.index(3-ord(c)/32),c])) 

Test it on Ideone.