2024 iThome 鐵人賽
Share More Gain More
佛心分享-刷題不只是刷題
選手 27 文章 768
Day 19
2024-08-19
300
0
MediumRelated Topics: Math / Dynamic ProgrammingLeetCode Source 解題想法 題目要求我們找到最...
13. Roman to Integer 題目描述:羅馬數字包含以下七種字符:I、V、X、L、C、D 和 M。例如,羅馬數字 2 寫作 II,即為兩個並列的 1...
Day 28
2024-09-09
293
0
在Leetcode的題目中,有些題目會要求你不能使用額外的空間、只能原地反轉linked list,這時就會需要用到 In-place reversal of...
21. Merge Two Sorted Lists 題目描述: 給定兩個升序Linked List l1 和 l2,將它們合併為一個升序Linked Lis...
MediumRelated Topics: Array / Two Pointers / Binary Search / SortingLeetCode So...
Day 22
2024-08-22
288
0
EasyRelated Topics: Bit ManipulationLeetCode Source 解題想法 十進位數字轉成二進制 之後將1轉成0 將0...