2024 iThome 鐵人賽
Share More Gain More
佛心分享-刷題不只是刷題
選手 27 文章 768
Day 21
2024-09-04
422
0
144. Binary Tree Preorder Traversal tags: Easy、Tree Given the root of a binary...
Day 10
2024-08-24
422
0
2848. Points That Intersect With Cars tags: Easy、Pointer You are given a 0-inde...
Day 29
2024-09-29
420
1
紀錄2024/09/28的雙週賽結果 題號 難度 結果 完成時間 Q1 EASY AC 00:02:20 Q2 Medium AC (WA P...
題目:在這篇文章中,我們來探討 LeetCode 第 733 題 Flood Fill。這是一道圖形處理的問題,與填充演演算法有關,類似於繪圖軟體中使用「油漆桶...
Day 25
2024-08-25
419
0
EasyRelated Topics: Stack / Tree / Depth-First Search / Binary TreeLeetCode Sou...
解題程式碼 var pathSum = function (root, targetSum) { if (!root) return 0; let pa...