码迷,mamicode.com
首页 > 其他好文 > 详细

796. Rotate String

时间:2018-07-08 17:15:27      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:pre   div   题目   highlight   elf   self   ==   test   pytho   

这是程序员面试金典里面的一个题目。判断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

标签:pre   div   题目   highlight   elf   self   ==   test   pytho   

原文地址:https://www.cnblogs.com/learning-c/p/9280538.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!