题解 | #翻转单词序列#

翻转子串

http://www.nowcoder.com/practice/bc12808a2b0f445c96a64406d5513e96

    public boolean checkReverseEqual(String s1, String s2) {
        if (s1.length() != s2.length()) {
            return false;
        }
        String str = s1 + s1;
        return str.contains(s2);
    }

    public static void main(String[] args) {
        Solution solution = new Solution();
        System.out.println(solution.checkReverseEqual("waterbottle", "erbottlewat"));
    }
}
全部评论

相关推荐

一颗宏心:华为HR晚上过了十二点后还给我法消息。
点赞 评论 收藏
分享
牛客5655:其他公司的面试(事)吗
点赞 评论 收藏
分享
评论
1
1
分享
牛客网
牛客企业服务