https://discuss.leetcode.com/topic/68976/sliding-window-algorithm-templa...
225. Implement Stack using Queues 使用queue來構(gòu)造stack, 我們就只能使用queue的特性沪斟,stack...
204. Count Primes 時間 O(NloglogN) 空間 O(N)如果一個數(shù)是另一個數(shù)的倍數(shù),那這個數(shù)肯定不是素數(shù)暇矫。利用這個性質(zhì)主之,...
55. Jump Game Every time we try the furthest position we can reach from ...
11. Container With Most Water Brute force解法是針對每一個左邊豎線,計算所有它形成的container的...
215. Kth Largest Element in an Array 要找第K大的數(shù)李根,就是找第len(nums)-k-1小的數(shù)槽奕,構(gòu)造一個最小...
401. Binary Watch 給一個二進(jìn)制的表,事實上并不是完全的二進(jìn)制房轿,上一排用來顯示小時粤攒,下一排用來顯示分鐘。給定一個數(shù)字囱持,代表表上有...
4. Median of Two Sorted Arrays We can use the method that find the k-th ...
130. Surrounded Regions 可以分為三個步驟 初始化一個list或dequequeue = collections.dequ...