【LeetCode】242. 有效的字母異位詞
題目連結:https://leetcode-cn.com/problems/valid-anagram/description/
題目描述
給定兩個字串 s 和 t ,編寫一個函式來判斷 t 是否是 s 的一個字母異位詞。
示例
輸入: s = “anagram”, t = “nagaram”
輸出: true
輸入: s = “rat”, t = “car”
輸出: false
說明:
你可以假設字串只包含小寫字母。
進階:
如果輸入字串包含 unicode 字元怎麼辦?你能否調整你的解法來應對這種情況?
解決方法
解題思路:題目較簡單
class Solution {
public:
bool isAnagram(string s, string t) {
sort(s.begin(),s.end());
sort(t.begin(),t.end());
if (s==t) return true;
return false;
}
};
相關推薦
【LeetCode】242. 有效的字母異位詞
題目連結:https://leetcode-cn.com/problems/valid-anagram/description/ 題目描述 給定兩個字串 s 和 t ,編寫一個函式來判斷 t 是否是 s 的一個字母異位詞。 示例 輸入: s = “anagram”, t
Leetcode-有效字母異位詞
242.有效字母的異位詞 給定兩個字串 s 和 t ,編寫一個函式來判斷 t 是否是 s 的一個字母異位詞。 示例 1: 輸入: s = “anagram”, t = “nagaram” 輸出: true 示例 2: 輸入: s = “rat”, t = “car” 輸出
LeetCode242有效字母異位詞&&LeetCode438 找到所有字串中的字母異位詞
【242】有效的字母異位詞 給定兩個字串 s 和 t ,編寫一個函式來判斷 t 是否是 s 的一個字母異位詞。 示例 1: 輸入: s = "anagram", t = "nagaram" 輸出:
LeetCode 第49題 字母異位詞分組
兩個 add arraylist 等於 說明 順序 外部 字符串排序 sort (一) 題目描述 給定一個字符串數組,將字母異位詞組合在一起。字母異位詞指字母相同,但排列不同的字符串。 示例: 輸入: ["eat", "tea", "tan", "ate",
Leetcode題庫——49.字母異位詞分組
imp lis upa 一個 字典 最終 __init__ software clas @author: ZZQ @software: PyCharm @file: leetcode49_groupAnagrams.py @time: 2018/11/19 13:18 要
LeetCode242有效字母異位詞&&LeetCode438 找到所有字串中的字母異位詞
【242】有效的字母異位詞 給定兩個字串 s 和 t ,編寫一個函式來判斷 t 是否是 s 的一個字母異位詞。 示例 1: 輸入: s = "anagram", t = "nagaram" 輸出: true 示例 2: 輸入: s = "rat", t = "ca
【leetcode 簡單】 第七十題 有效的字母異位詞
給定 etc turn dot 怎麽辦 sorted 說明 ott 編寫 給定兩個字符串 s 和 t ,編寫一個函數來判斷 t 是否是 s 的一個字母異位詞。 示例 1: 輸入: s = "anagram", t = "nagaram" 輸出: true 示例 2: 輸
【LeetCode 簡單題】66-有效的字母異位詞
宣告: 今天是第66道題。給定兩個字串 s 和 t ,編寫一個函式來判斷 t 是否是 s 的一個字母異位詞。以下所有程式碼經過樓主驗證都能在LeetCode上執行成功,程式碼也是借鑑別人的,在文末會附上參考的部落格連
【leetcode】有效的字母異位詞(C、Python解答)
題目: 給定兩個字串 s 和 t ,編寫一個函式來判斷 t 是否是 s 的一個字母異位詞。 示例 1: 輸入: s = "anagram", t = "nagaram" 輸出: true 示例 2: 輸入: s = "rat", t = "car" 輸出: fal
【初級算法】15. 有效的字母異位詞
color isa 算法 pre 返回 bool 一個 () AS 題目: 給定兩個字符串 s 和 t ,編寫一個函數來判斷 t 是否是 s 的一個字母異位詞。 例如, s = "anagram",t = "nagaram",返回 true s = "rat",t =
LeetCode--242--有效的字母異位詞
時間復雜度 sel spa 說明 復雜度 color lee and nic 問題描述: 給定兩個字符串 s 和 t ,編寫一個函數來判斷 t 是否是 s 的一個字母異位詞。 示例 1: 輸入: s = "anagram", t = "nagaram" 輸出: true
【LeetCode】49. 字母異位詞分組
題目連結:https://leetcode-cn.com/problems/group-anagrams/description/ 題目描述 給定一個字串陣列,將字母異位詞組合在一起。字母異位詞指字母相同,但排列不同的字串。 示例 輸入: [“eat”, “tea”, “
【LeetCode 簡單題】98-找到字串中所有字母異位詞
宣告: 今天是第98道題。給定一個字串 s 和一個非空字串 p,找到 s 中所有是 p 的字母異位詞的子串,返回這些子串的起始索引。以下所有程式碼經過樓主驗證都能在LeetCode上執行成功,程式碼也是借鑑別人的,在文末會附上
leetcode 242 有效的字母異位詞
給定兩個字串 s 和 t ,編寫一個函式來判斷 t 是否是 s 的一個字母異位詞。 示例 1: 輸入: s = "anagram", t = "nagaram" 輸出: true 示例 2: 輸
[LeetCode javaScript] 242. 有效的字母異位詞
給定兩個字串 s 和 t ,編寫一個函式來判斷 t 是否是 s 的一個字母異位詞。 示例 1: 輸入: s = “anagram”, t = “nagaram” 輸出: true 示例 2: 輸入: s = “rat”, t = “car” 輸出: false
LeetCode演算法題242:有效的字母異位詞解析
給定兩個字串 s 和 t ,編寫一個函式來判斷 t 是否是 s 的一個字母異位詞。 示例 1: 輸入: s = "anagram", t = "nagaram" 輸出: true 示例 2: 輸入: s = "rat", t = "car" 輸出: false
Leetcode 242.有效的字母異位詞
pre return 有效 spa mil pub 輸出 bsp -s 有效的字母異位詞 給定兩個字符串 s 和 t ,編寫一個函數來判斷 t 是否是 s 的一個字母異位詞。 示例 1: 輸入: s = "anagram", t = "nagaram" 輸出: tru
LeetCode 242. 有效的字母異位詞
解題思路: 把s和t中每個元素的個數存下,然後判斷兩個字串中各個元素個數是否相等,即可。 我的判斷方法是,判斷s的元素個數大於等於t中的,然後判斷t中的元素個數大於等於s中的,就是相等了; 不然需要用迭代器判斷,略麻煩 (adsbygoogl
leetcode 有效的字母異位詞
說明 lean 有效 javascrip 給定 ram car ron 輸入 給定兩個字符串 s 和 t ,編寫一個函數來判斷 t 是否是 s 的一個字母異位詞。 示例 1: 輸入: s = "anagram", t = "nagaram" 輸出: true 示例 2:
LeetCode題目--有效的字母異位詞(python實現)
題目 給定兩個字串 s 和 t ,編寫一個函式來判斷 t 是否是 s 的一個字母異位詞。 示例 1: 輸入: s = "anagram", t = "nagaram" 輸出: true