題目
題目翻譯
給定 n 對的括號,撰寫一函式去生成所有合法的括號組合。
解題思路
問題描述:給定一個整數 n,需要生成所有可能且有效的由 n 對括號組成的組...
You are given a very large integer n, represented as a string,negative and an in...
在 LeetCode 217 題「Contains Duplicate」中,我們需要檢查一個整數陣列中是否包含重複的元素。如果陣列中有重複的數字,則回傳 tru...
解題程式碼
var pathSum = function (root, targetSum) {
if (!root) return [];
const...
AVL樹筆記
學習影片https://www.youtube.com/watch?v=2j8VlJFkLFg
基本定義
AVL 樹 是一種自平衡的二元搜尋樹...
290. Word Pattern
給定一個模式字串 pattern 和一個句子字串 s,請判斷 s 是否遵循 pattern 給定的模式。
題目條件:patt...