class Solution {public: bool isAnagram(string s, string t) { int alphabet[26]={ 0}; for(int i=0;i
不同的字母数是否相等。
本文共 185 字,大约阅读时间需要 1 分钟。
class Solution {public: bool isAnagram(string s, string t) { int alphabet[26]={ 0}; for(int i=0;i
不同的字母数是否相等。
转载于:https://www.cnblogs.com/azureice/p/leetcode242.html