首页 > 其他 > 详细

leetcode 242

时间:2016-07-22 09:57:59      阅读:170      评论:0      收藏:0      [点我收藏+]

排序判断相等即可

class Solution {
public:
    bool isAnagram(string s, string t) {
        sort(s.begin(),s.end());
        sort(t.begin(),t.end());
        if(s==t)
          return true;
          return false;
    }
};

 

leetcode 242

原文:http://www.cnblogs.com/thefirstfeeling/p/5693951.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!