2024 iThome 鐵人賽
Share More Gain More
佛心分享-刷題不只是刷題
選手 27 文章 768
Day 10
2024-08-19
263
0
35. Search Insert Position 题目描述: 給定一個排序陣列和一個目標值,請在陣列中找到目標值,並返回其索引。如果目標值不在陣列中,則返回...
EasyRelated Topics: Array / Hash Table / SortingLeetCode Source 解題想法 基本上就是判斷說兩...
Day 24
2024-09-07
261
0
108. Convert Sorted Array to Binary Search Tree tags: Easy、Tree Given an intege...
Day 12
2024-08-12
260
0
EasyRelated Topics: Tree / Design / BST / Heap (Priority Queue) / BT / Data Str...
Day 17
2024-08-17
257
0
MediumRelated Topics: Array / Dynamic ProgrammingLeetCode Source 解題想法 暴力解的話,會使...
Day 16
2024-08-25
257
0
83. Remove Duplicates from Sorted List 题目描述: 給定一個已排序的Linked List,刪除所有重複的元素,使每個元素...