Problem
Given a string s
, the power of the string is the maximum length of a non-empty substring that contains only one unique character.
Return the power of the string.
Example 1:
1 | Input: s = "leetcode" |
Example 2:
1 | Input: s = "abbcccddddeeeeedcba" |
Example 3:
1 | Input: s = "triplepillooooow" |
Example 4:
1 | Input: s = "hooraaaaaaaaaaay" |
Example 5:
1 | Input: s = "tourist" |
Constraints:
1 <= s.length <= 500
s
contains only lowercase English letters.
Analysis
题目给出一个字符串,要求计算最长的相同字符字串长度。因为答案只需要长度,所以一次遍历就可以完成。遍历的时候和前一个字符对比是否相同,如果相同则长度+1,否则,长度从1开始重新计算,到最后维护一个最大的长度即可。
Solution
可以用一个额外的char记录前一个字符,用于比较。记得在不同的时候,需要把长度重置为1。
Code
1 | class Solution { |
Summary
这道题目比较简单,但是在一些面试中也会作为热身题出现,所以在这里总结一下思路,以后碰到就可以秒解了。这道题目的分享到这里,谢谢!