标签:ret mda 长度 内存 ash pytho word span style
class Solution: def lengthOfLastWord(self, s: str) -> int: if s==‘ ‘*len(s): return 0 if ‘ ‘ not in s: return len(s) a=s.split(‘ ‘) i=-1 while a[i]==‘‘: i-=1 return len(a[i])
标签:ret mda 长度 内存 ash pytho word span style
原文地址:https://www.cnblogs.com/taoyuxin/p/11688537.html