2024 iThome 鐵人賽
Share More Gain More
佛心分享-刷題不只是刷題
選手 27 文章 757
You are given an integer array nums consisting of n elements, and an integer k....
Day 21
2024-08-21
158
0
HardRelated Topics: String / Dynamic ProgrammingLeetCode Source 解題想法 這道題目是關於計算...
21. Merge Two Sorted Lists You are given the heads of two sorted linked lists l...
Day 12
2024-08-21
225
0
66. Plus One 題目描述: 給定一個由整陣列成的非空陣列,表示一個非負整數,在該數的基礎上加一,並返回結果陣列。 最高位數字存放在陣列的首位,陣列中每...
Day 20
2024-08-20
137
0
MediumRelated Topics: Array / Math / Dynamic Programming / Prefix Sum / Game Th...
Sliding Window是一種針對處理substring以及subarray的解題方法,可以減少時間複雜度,將O(n2)或O(n3)減至O(n)。 那麼Sl...