Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
3-liner: dis(ord)er solution in Creative category for Worth of Words by przemyslaw.daniel
K = '02210313074020029000033739'
f = lambda w: sum(int(K[ord(x)-97])+1 for x in w)
worth_of_words = lambda w: max(w, key=f)
April 2, 2018
Comments: