#12741: c++ AC code


bert30702 (bert30702)

學校 : 臺北市立成功高級中學
編號 : 62008
來源 : [223.136.190.31]
最後登入時間 :
2019-11-16 18:56:07
a275. 字串變變變 | From: [36.228.181.180] | 發表日期 : 2017-09-22 20:05

#include <bits/stdc++.h>
using namespace std;

int main(){
    string a, b;
    while(cin >> a >> b){
        unordered_map<char, int> x, y;
        for(auto it: a) x[it]++;
        for(auto it: b) y[it]++;
        cout << (x == y ? "yes\n" : "no\n");
    }
}

 
ZeroJudge Forum