Top Stories published by 數據共筆 in August of 2022
01
03
04
05
06
07
08
09
10
11
12
16
17
18
19
20
22
25
26
27
28
30

LeetCode:(Array)(Python)Majority Element

題目連結:https://leetcode.com/problems/majority-element/

有一個 list,裡面的數字沒有經過排序,但會有一個數字的數量佔整個 list超過一半,找出那個數字。

以下範例

初始想法


LeetCode:(String)(Python)Excel Sheet Column Title

題目連結:https://leetcode.com/problems/excel-sheet-column-title/

題意簡單,把數字轉成英文字母,如下圖

題外話,這題是 Excel Sheet Column Number的相反思維,相關的解題討論我已經寫在 LeetCode:(String)(Python)Excel Sheet Column Number


LeetCode:(String)(Python)Isomorphic Strings

題目連結:https://leetcode.com/problems/isomorphic-strings/

題意解析

  1. 字串 s和字串 t等長,都只有字母

2. 可以是1對1關係,但不能是多對1關係或是1對多關係,以下舉例。

  • (O) s = “222”, t = ”444”

LeetCode:(Array)(Python) Missing Number

題目連結:https://leetcode.com/problems/missing-number/

找出 list中連續數字的缺值

初始想法

  1. 加總 nums的數值 → sum(nums)
  2. 創造一個沒有缺失的 list,加總其數值 → sum(list(range(n)))

LeetCode:(String)(Python)Valid Palindrome

題目連結https://leetcode.com/problems/valid-palindrome/

題意說明

資料來源是一個句子,可能有各種 ASCII的符號

  • 保留字母和數字
  • 要將所有字母轉為小寫

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