Sliding Window是一種針對處理substring以及subarray的解題方法,可以減少時間複雜度,將O(n2)或O(n3)減至O(n)。
那麼Sl...
203. Remove Linked List Elements
tags: Easy、Linked-List
Given the head of a lin...
108. Convert Sorted Array to Binary Search Tree
tags: Easy、Tree
Given an intege...
559. Maximum Depth of N-ary Tree
tags: Easy、Tree
Given a n-ary tree, find its m...
111. Minimum Depth of Binary Tree
题目描述:
給定一個二元樹的根節點 root,找出其最小深度。最小深度是從根節點到最近葉子節...
MediumRelated Topics: Array / GreedyLeetCode Source
解題想法
題目唯一要注意的點就是 arrays 最大...