题解 | #字符串最后一个单词的长度#
字符串最后一个单词的长度
http://www.nowcoder.com/practice/8c949ea5f36f422594b306a2300315da
const str = readline()
const res = str.trim().split(' ').reverse()[0].length;
console.log(res);
字符串最后一个单词的长度
http://www.nowcoder.com/practice/8c949ea5f36f422594b306a2300315da
const str = readline()
const res = str.trim().split(' ').reverse()[0].length;
console.log(res);
相关推荐