We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
原题链接
过滤掉末尾空格后,反向遍历字符串,并使用 count 计数,再次遇到空格时结束。
const lengthOfLastWord = function(s) { if (s.length === 0) return 0 let count = 0 for (let i = s.length - 1; i >= 0; i--) { if (s.charAt(i) === ' ') { if (count === 0) continue break } count++ } return count }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
原题链接
反向遍历
过滤掉末尾空格后,反向遍历字符串,并使用 count 计数,再次遇到空格时结束。
The text was updated successfully, but these errors were encountered: