Top Stories published by 數據共筆 in September of 2022
03
04
05
06
07
08
11
13
14
15
16
17
18
20
21
22
23
24
25
28
29
30

Reverse Vowels of a String

題目連結:https://leetcode.com/problems/reverse-vowels-of-a-string/

把字串中的母音交換位置

和 Reverse String是相似題目,相關的說明我已經寫在 LeetCode:(String)(Python)Reverse String

初始想法

  1. 不能用 s = s[::-1],所以我採用迴圈

LeetCode:(Array)(Python)Sort the People

題目連結:https://leetcode.com/problems/sort-the-people/

這題有兩個 list,一個存放身高,一個存放人名,希望把人名由高到矮排列,換句話說要一次處理兩個 list。

解題思維

  1. 不合併 list,分別處理
  2. 合併 list,再排序

LeetCode:(String)(Python)Reverse String

題目連結:https://leetcode.com/problems/reverse-string/

把一個 list整個反過來,不用 return,而是把存在原本的 list中。

題目限制只能使用 O(1)記憶體。

初始想法


LeetCode:(SQL)Sales Analysis III

題目連結:https://leetcode.com/problems/sales-analysis-iii/

要找出在 2019年1月1日至 2019年3月31日之間賣出的所有商品,同時這些商品沒有在其他時間賣出去過。

初始想法

照著字面意義來做

  1. 找出有在時間內賣出的產品

LeetCode:(Array)(Python)Intersection of Two Arrays II

題目連結:https://leetcode.com/problems/intersection-of-two-arrays-ii/

這題是 Intersection of Two Arrays的延伸題,相關的文章我已經寫在 LeetCode:(Array)(Python)Intersection of Two Arrays

These were the top 10 stories published by 數據共筆 in September of 2022. You can also dive into daily archives for September of 2022 by using the calendar at the top of this page.