Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for Worth of Words by Tinus_Trotyl
def worth_of_words(words):
Vals = ("", "eaionrtlsu", "dg", "bcmp", "fhvwy", "k", "", "", "jx", "", "qz")
scores = [sum([i for i, chars in enumerate(Vals) if char in chars][0] for char in word) for word in words]
return words[scores.index(max(scores))]
March 17, 2018