原文題目Given an m x n grid of characters board and a string word, return true if wo...
You are given a binary string s. In one second, all occurrences of "01"...
嘿嘿~今天要來解一個大家都會碰到的經典題目:Reverse Linked List(反轉鏈結串列)。想像一下,我們要把一列數字倒過來,這就像翻書一樣,把後面...
解題程式碼
var RandomizedSet = function () {
this.indexMap = new Map();
this.valu...
這道題要求我們對一棵二元樹進行層次遍歷,也就是按照樹的層級順序,從左到右依次訪問每一層的節點,並將每層的節點值作為一個子清單存入結果中。
題目:
給定一棵二元樹...
在 LeetCode 第 242 題「Valid Anagram」中,我們要檢查兩個字串是否為「相同字母異序詞」(Anagram)。兩個字串如果包含相同數量的字...