본문 바로가기
코딩 테스트

[LeetCode] Length of Last Word (Python)

by zoodi 2025. 1. 15.
728x90

1.문제

https://leetcode.com/problems/length-of-last-word/description/?envType=study-plan-v2&envId=top-interview-150

 

2.풀이

공백을 기준으로 split 메소드를 사용하면 간단한 문제!

 

 

3.코드

class Solution:
    def lengthOfLastWord(self, s: str) -> int:
        last_word = s.split()[-1]
        # print(last_word)
        return len(last_word)
728x90

댓글