2024 iThome 鐵人賽
Share More Gain More
佛心分享-刷題不只是刷題
選手 27 文章 768
原文題目 You are given an m x n integer matrix matrix with the following two propert...
Day 10
2024-09-24
439
0
解題程式碼 var exist = function (board, word) { const DFS = (i, j, wordIndex) =>...
Day 23
2024-10-07
439
0
強化基礎概念是有效學習和解題的根本。基礎概念是理解更複雜問題的基石,若基礎不牢固,後續學習會受到限制。強化基礎概念意味著對每個核心概念、公式或定理進行深入的理解...
Day 16
2024-08-25
435
0
83. Remove Duplicates from Sorted List 题目描述: 給定一個已排序的Linked List,刪除所有重複的元素,使每個元素...
題目 2326. Spiral Matrix IV難度: 中等偏易 題意 給定一鏈結串列head,及二整數m n。回傳m * n大小的矩陣,從左上角開始,按照順...
203. Remove Linked List Elements tags: Easy、Linked-List Given the head of a lin...