赞
踩
代码随想录第六天 2023.7.17
题目链接:
242. 有效的字母异位词 - 力扣(Leetcode)https://leetcode.cn/problems/valid-anagram/
代码如下:
- class Solution {
- public:
- bool isAnagram(string s, string t) {
- int hash[26]={0};
- int i;
- for(i=0;i<s.size();i++){
- hash[s[i]-'a']++;
- }
- for(i=0;i<t.size();i++){
- hash[t[i]-'a']--;
- }
- for(i=0;i<26;i++){
- if(hash[i]!=0){
- return false;
- }
- }
- return true;
-
- }
- };
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。