题解 | #旋转字符串#

旋转字符串

https://www.nowcoder.com/practice/80b6bb8797644c83bc50ac761b72981c

class Solution {
public:

    bool solve(string A, string B) {
        // write code here
        if(A == B) return true;
        int an = A.size();
        int bn = B.size();
        if(bn != an) return false;
        for(int i = 1; i < an; i++){
            string temp1 = A.substr(0,i);
            string temp2 = A.substr(i, an);
         
            string temp = temp2 + temp1;
            if(temp == B) return true; 
       }
       return false;

        
    }
};

全部评论

相关推荐

darius_:我试了简历上有微服务和没微服务主动要简历的外包的比例都不一样,微服务稍微看看还是要写上去,人人都写你不写会被pass
点赞 评论 收藏
分享
用微笑面对困难:不是你千万别小看这家公司,他们的预估市值成倍上涨,三次在报告看见这个公司了,总之如果是给股权的话可以试试,未来没准真能发家致富哈哈哈哈
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务