class Solution { public: /** * 旋转字符串 * @param A string字符串 * @param B string字符串 * @return bool布尔型 */ bool solve(string A, string B) { // write code here int lenA=A.size(); int lenB=B.size(); if( lenA!=lenB ) { return false; } A+=A; //查找子串 if( -1== A.find(B,0) ) { return false; } else { return true; } } };