leetcode 796. Rotate String 旋转字符串 python 字符串的切片操作

所有Leetcode题目不定期汇总在 Github, 欢迎大家批评指正,讨论交流。
class Solution:
    def rotateString(self, A, B):
        """
        :type A: str
        :type B: str
        :rtype: bool
        """
        if A != B:      # 处理空字符串的特殊情况
            for _ in range(len(A)):
                if A == B : return True
                A = A[1:] + A[0]
            return False
        return True
        
所有Leetcode题目不定期汇总在 Github, 欢迎大家批评指正,讨论交流。

你可能感兴趣的:(【leetcode】,刷题总结,&,编程心得)