mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 02:59:06 +01:00
14 lines
323 B
Python
14 lines
323 B
Python
|
from functools import reduce
|
||
|
|
||
|
def high(x):
|
||
|
x = x.split()
|
||
|
h = reduce(lambda total, char: total + ord(char) - 96, x[0], 0)
|
||
|
hw = x[0]
|
||
|
|
||
|
for word in x[1:]:
|
||
|
total = reduce(lambda total, char: total + ord(char) - 96, word, 0)
|
||
|
if total > h:
|
||
|
h = total
|
||
|
hw = word
|
||
|
return hw
|