Leetcode-Easy 796. Rotate String

796. Rotate String

  • 描述:
    有两个字符串A和B,将A的第一个字符左移到最后位置,判断此时A是否等于B,如果等于返回true。不等于则继续左移,直到A遍历完毕,如果不相等返回false


    Leetcode-Easy 796. Rotate String_第1张图片
  • 思路:
    通过python切片和拼接

  • 代码

class Solution:
    def rotateString(self, A, B):
        """
        :type A: str
        :type B: str
        :rtype: bool
        """
        for char in A:
            if A==B:
                return True
            A=A[1:]+A[0]
        return False

你可能感兴趣的:(Leetcode-Easy 796. Rotate String)