728x90
def solution(strlist):
    answer = []
    for i in strlist:
        answer.append(len(i))
    return answer
728x90

+ Recent posts