MediumRelated Topics: Math / Dynamic ProgrammingLeetCode Source
解題想法
題目要求我們找到最...
13. Roman to Integer
題目描述:羅馬數字包含以下七種字符:I、V、X、L、C、D 和 M。例如,羅馬數字 2 寫作 II,即為兩個並列的 1...
在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...
EasyRelated Topics: Bit ManipulationLeetCode Source
解題想法
十進位數字轉成二進制
之後將1轉成0
將0...