【leetcode】58. 最后一个单词的长度
文章目录
- 题目
- 题解
- 1. 库函数
- 2. 双指针(从后往前)
题目
58. 最后一个单词的长度
给你一个字符串 s,由若干单词组成,单词前后用一些空格字符隔开。返回字符串中 最后一个 单词的长度。
单词 是指仅由字母组成、不包含任何空格字符的最大子字符串。
示例 1:
输入:s = “Hello World”
输出:5
解释:最后一个单词是“World”,长度为 5。
示例 2:
输入:s = " fly me to the moon "
输出:4
解释:最后一个单词是“moon”,长度为 4。
示例 3:
输入:s = “luffy is still joyboy”
输出:6
解释:最后一个单词是长度为 6 的“joyboy”。
题解
1. 库函数
class Solution(object):def lengthOfLastWord(self, s):""":type s: str:rtype: int"""return len(s.strip().split(" ")[-1])
2. 双指针(从后往前)
class Solution(object):def lengthOfLastWord(self, s):""":type s: str:rtype: int"""# 双指针,从后往前n = len(s)slow = n - 1fast = n - 1while fast >= 0:if s[slow] == " " and s[fast] == " ":fast -= 1slow -= 1elif s[slow] != " " and s[fast] != " ":fast -= 1elif s[slow] != " " and s[fast] == " ":return slow - fastreturn slow - fast