Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
@vars solution in Clear category for Worth of Words by veky
from functools import partial
@vars
class Value:
e = a = i = o = n = r = t = l = s = u = 1
d = g = 2
b = c = m = p = 3
f = h = v = w = y = 4
k = 5
j = x = 8
q = z = 10
worth_of_words = partial(max, key=lambda word: sum(map(Value.get, word)))
April 23, 2018