題目連結: 1448. Count Good Nodes in Binary Tree
題意
* 給定一個二元樹,要找出這棵樹中所有的 good nodes
* 一個節點如果在從 root 到該節點的路徑上,其值大於或等於該路徑上所有其他節點的值,則該節點為 good
限制
* The number of nodes in the binary tree is in the range [1,
題意
* 設計一個地鐵系統,含有幾個 function
* void checkIn(int id, string stationName, int t)
* id 從 stationName 的進站時間 t
* void checkOut(int id, string stationName, int t)
* id 從 stationName 的出站時間 t
* double getAverageTime(string
題目連結: 1343. Number of Sub-arrays of Size K and Average Greater than or Equal to Threshold
題意
給定一個數字陣列 arr,找出長度為 k,且平均值大於或等於 threshold 的子陣列數量。
限制
* 1 <= arr.length <= 10^5
* 1