Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 851 Bytes

HJ001.md

File metadata and controls

36 lines (26 loc) · 851 Bytes

题目描述

HJ001
计算字符串最后一个单词的长度,单词以空格隔开。

输入描述

输入一行,代表要计算的字符串,非空,长度小于5000。

输出描述

输出一个整数,表示输入字符串最后一个单词的长度。

示例

输入

hello nowcoder

输出

8

解答一

let str = "his guide assumes that you have already read the Composition API Introduction and Reactivity Fundamentals"
function getLastLength(e){
  if(e.length ===0){
    return 0
  }
  const arr = e.split(' ')
  return arr[arr.length - 1].length
}
console.log(getLastLength(str)); //12