整理 LeetCode #566 Reshape the Matrix — flatten 後按新維度填充。
整理 LeetCode #2186 — linked list。
介紹 Python set() 快速找重複—去重、集合運算、找重複內容、題目的一個資料型別、set。
紀錄 Python ord() 與 chr() 用法 — 字元轉 ASCII 碼值、反向轉換、處理 C-style 字元比較。
整理 LeetCode #2185 — linked list。
整理六大排序演算法 — Selection、Insertion、Bubble、Quick、Merge、Heap 的時間與空間複雜度比較。
紀錄《Popworld 圖靈策略》實境解謎遊戲 — 邏輯推理謎題、多角色互動、策略規劃型解謎體驗評論。
紀錄「non-void function」編譯錯誤 — 所有分支都需加 return,避免編譯器認為有無返回分支。
整理 LeetCode #88 Merge Sorted Array — 從後向前填充、不需額外空間、兩指標。
整理 LeetCode #1 Two Sum — hash map 儲存 (value, index)、一次遍歷、O(n) 時間空間換時間。