" " 로 분리하고 마지막 문자열의 길이를 반환했다.
class Solution {
public int lengthOfLastWord(String s) {
String res[] = s.split(" ");
int size = res.length;
if(size - 1 < 0) return 0;
return res[res.length-1].length();
}
}
class Solution:
def lengthOfLastWord(self, s: str) -> int:
res = s.strip().split(" ")
size = len(res)
if size - 1 < 0: return 0
return len(res[size - 1])