leetcode

1448. Count Good Nodes in Binary Tree

題目連結: 1448. Count Good Nodes in Binary Tree 題意 * 給定一個二元樹,要找出這棵樹中所有的 good nodes * 一個節點如果在從 root 到該節點的路徑上,其值大於或等於該路徑上所有其他節點的值,則該節點為 good 限制 * The number of nodes in the binary tree is in the range [1,

1396. Design Underground System

題意 * 設計一個地鐵系統,含有幾個 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

1376. Time Needed to Inform All Employees

題目連結: 1376. Time Needed to Inform All Employees 題意解析 * 每個員工都有一位直屬上司(除了公司的最高主管 headID,用 -1 表示)。 * 每位員工通知其直屬下屬所需的時間 informTime[i] 已知。 * 目標是計算從 headID 開始,通知所有員工所需的最長時間。 題目限制 * 1 <= n <= 10^5 * 0 <= headID

1291. Sequential Digits

題目連結:1291. Sequential Digits 題目描述 給定一個範圍 [low, high],請找出所有介於 low 與 high 之間的「順序數字(Sequential Digits)」並由小到大排序後返回。 「順序數字」是指其每個位數的數字皆為連續遞增的整數,如 123、789、1234 等。 範例 * 輸入:low = 100, high = 300 輸出:[123, 234]