마지막 단어의 길이를 알기 위해 필요한 과정은 다음과 같다.
하여 아래와 같은 로직이 작성되었음
function lengthOfLastWord(s: string): number {
// 좌 우 공백 제거
const trimedStr = s.trim()
// 공백을 기준으로 단어 분리
const splitedStr = trimedStr.split(" ")
// 마지막 단어의 길이 반환
return splitedStr.at(-1).length
};