codewars (python) 연습 노트 14: 가장 큰 단 어 를 찾 아 라.

codewars (python) 연습 노트 14: 가장 큰 단 어 를 찾 아 라.
제목.
Given a string of words, you need to find the highest scoring word.
Each letter of a word scores points according to it's position in the alphabet: a = 1, b = 2, c = 3 etc.
You need to return the highest scoring word as a string.
If two words score the same, return the word that appears earliest in the original string.
All letters will be lowercase and all inputs will be valid.
Test case:
test.assert_equals(high('man i need a taxi up to ubud'), 'taxi')
test.assert_equals(high('what time are we climbing up the volcano'), 'volcano')
test.assert_equals(high('take me to semynak'), 'semynak')

제목 대의: a = 1, b = 2, c = 3 을 순서대로 유추 하여 문장의 모든 자모 더하기 와 값 이 가장 큰 단 어 를 구한다.
나의 해법:
#!/usr/bin/python

def high(x):
    list_p = []
    for item in x.split(' '):
        p = 0
        for i in item:
            p += ord(i)-ord('a')+1
        list_p.append(p)
    return x.split(' ')[list_p.index(max(list_p))]

강압 적 인 해법:
def high(x):
    return max(x.split(), key=lambda k: sum(ord(c) - 96 for c in k))

생각 이 대동소이 하 다.

좋은 웹페이지 즐겨찾기