796. Rotate String

Posted zhuangbijingdeboke

tags:

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

 1 class Solution 
 2 {
 3 public:
 4     bool rotateString(string A, string B) 
 5     {
 6         if(A.length()==B.length()&&(A+A).find(B)!=string::npos)
 7             return true;
 8         return false;
 9     }
10 };

把俩A拼起来,能找到B,则可以通过循环右移将A转化为B

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

796. Rotate String

796. Rotate String

[LC] 796. Rotate String

796. Rotate String - Easy

leetcode-796-Rotate String

796. Rotate String