Computer Science/알고리즘 ( Algorithm )

XX 알고리즘 문제 6

bugtype 2019. 4. 28. 14:19

Input: “abc 123 apple”

Output: “cba 321 elppa”

def solution(userInput):
    splitStr = userInput.split(" ")
    splitStr = list(map(lambda x: x[::-1], splitStr))
    print(" ".join(splitStr))

solution("abcdef defg 123")

'Computer Science > 알고리즘 ( Algorithm )' 카테고리의 다른 글

K번째 수  (0) 2019.10.06
XX 알고리즘 문제 7  (0) 2019.04.28
XX 알고리즘 문제 5  (0) 2019.04.14
XX 알고리즘 문제 4  (0) 2019.04.02
XX 알고리즘 문제 3  (0) 2019.03.25