문제
문자열이 들어왔을 때 공백을 제외한 마지막 문자의 길이를 반환시키는 문제
def solution(s): new_s = s.rstrip() words = new_s.split(" ") return len(words[-1])