Gary Lai

496. Next Greater Element I

496. Next Greater Element I class Solution: def nextGreaterElement(self,

346. Moving Average from Data Stream

346. Moving Average from Data Stream class MovingAverage: def __init_

1544. Make The String Great

1544. Make The String Great class Solution: def makeGood(self,

71. Simplify Path

71. Simplify Path class Solution: def simplifyPath(self, path: str)

844. Backspace String Compare

844. Backspace String Compare class Solution: def backspaceCompare(self, s:

24. Swap Nodes in Pairs

24. Swap Nodes in Pairs 我一開始的想法比較單純,因為題目是要求奇數跟偶數的位置交換,所以我很直覺的寫了一個先把奇數位置的元素記錄起來,再把偶數元素記錄起來,最後再重新串起來。

336. Palindrome Pairs

336. Palindrome Pairs class Solution: def palindromePairs(self, words: List[

1302. Deepest Leaves Sum

1302. Deepest Leaves Sum # Definition for a binary tree node.

938. Range Sum of BST

938. Range Sum of BST 這個題目雖然是簡單,但應該只是實作簡單,真的寫起來不是這麼好想。 我的第一個想法是利用 BST

480. Sliding Window Median

480. Sliding Window Median 這個題目是一個移動窗口以及找尋中位數的題目,難度為 hard ,這個題目難的地方在於: 1. 每次移動窗口的時候,