LeetCode) 58. Length of Last Word

·2021년 11월 10일
0

Leet_code(Easy)

목록 보기
14/20

문장의 마지막 단어의 길이를 반환하는 문제.

Language: java

class Solution {
    public int lengthOfLastWord(String s) {
        String[] newStr = s.split(" ");
        
        return newStr[newStr.length-1].length();
    }
}

이건 이미 알고있는 함수가 있어서 빠르게 풀 수 있었다!

profile
HAPPY !

0개의 댓글