796. Rotate String

Posted learning-c

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了796. Rotate String相关的知识,希望对你有一定的参考价值。

这是程序员面试金典里面的一个题目。判断B是否是A旋转得到的,只要判断B是否是A+A的字串即可。

class Solution(object):
    def rotateString(self, A, B):
        """
        :type A: str
        :type B: str
        :rtype: bool
        """
        return len(A)==len(B) and B in A+A
        

 

以上是关于796. Rotate String的主要内容,如果未能解决你的问题,请参考以下文章

796. Rotate String

796. Rotate String

[LC] 796. Rotate String

796. Rotate String - Easy

leetcode-796-Rotate String

796. Rotate String