1. 程式人生 > >796. Rotate String

796. Rotate String

clas def and turn type 面試 string 判斷 test

這是程序員面試金典裏面的一個題目。判斷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