2022-07-26 解題區►Leetcode►Easy Leetcode 242 - Valid Anagram 題目 Problem# 給你兩個字串 s 和 t 問你 s 重新排順序能不能變成 t 想法# 紀錄兩個字串每個字母出現的頻率,接著比較頻率表即可 時間複雜度: $\mathcal{O}(n)$ 空間複雜度: $\mathcal{O}(1)$ AC Code# Newer Leetcode 1207 - Unique Number of Occurrences Older Leetcode 36 - Valid Sudoku