Re: [LeetCode] 刷到面試 Grind169 C++

作者: SuiseiLeda (星街雷達)   2023-03-15 17:00:45
242. Valid Anagram easy題
哈希表
第一次遇到這個
但還滿好懂得
class Solution {
public:
bool isAnagram(string s, string t) {
int hash[26] = {0};
if(s.length()!=t.length()) return false;
for(int i=0;i<s.length();i++){
hash[s[i]-'a']++;
hash[t[i]-'a']

Links booklink

Contact Us: admin [ a t ] ucptt.com