Daily LeetCode Challenge - 58. Length of Last Word

Min Young Kim·2023년 6월 17일
0

algorithm

목록 보기
175/198

Problem From.

https://leetcode.com/problems/length-of-last-word/

오늘 문제는 string s 가 주어졌을때, 나오는 마지막 단어의 길이를 구하는 문제였다.

split 함수를 통해 각각의 낱말들을 " " 을 기준으로 나눠두고, 단어가 존재하는 마지막 요소를 가지고와서 길이를 리턴해주었다.

class Solution {
    fun lengthOfLastWord(s: String): Int {
        
        val array = s.split(" ")
        
        for(i in array.size - 1 downTo 0) {
            if(array[i].length != 0) return array[i].length
        }
        
        return array.last().length
        
    }
}
profile
길을 찾는 개발자

0개의 댓글