leetcode#58 Length of Last Word

정은경·2022년 5월 27일
0

알고리즘

목록 보기
61/125

1. 문제

2. 나의 풀이

class Solution(object):
    def lengthOfLastWord(self, s):
        """
        :type s: str
        :rtype: int
        """
        words = s.split(" ")        
        for i in range(len(words)-1, -1, -1):
            if len(words[i]) > 0:
                return len(words[i])

3. 남의 풀이

profile
#의식의흐름 #순간순간 #생각의스냅샷

0개의 댓글