240 发简信
IP属地:加州
  • Leetcode--Sliding Window

    https://discuss.leetcode.com/topic/68976/sliding-window-algorithm-templa...

  • Leetcode--Design

    225. Implement Stack using Queues 使用queue来构造stack, 我们就只能使用queue的特性,stack...

  • Leetcode--Math

    204. Count Primes 时间 O(NloglogN) 空间 O(N)如果一个数是另一个数的倍数,那这个数肯定不是素数。利用这个性质,...

  • Leetcode--Greedy Algorithm

    55. Jump Game Every time we try the furthest position we can reach from ...

  • Leetcode--Two pointers

    11. Container With Most Water Brute force解法是针对每一个左边竖线,计算所有它形成的container的...

  • Leetcode--Heap

    215. Kth Largest Element in an Array 要找第K大的数,就是找第len(nums)-k-1小的数,构造一个最小...

  • Leetcode--Bit

    401. Binary Watch 给一个二进制的表,事实上并不是完全的二进制,上一排用来显示小时,下一排用来显示分钟。给定一个数字,代表表上有...

  • Leetcode--Binary Search

    4. Median of Two Sorted Arrays We can use the method that find the k-th ...

  • Leetcode--BFS

    130. Surrounded Regions 可以分为三个步骤 初始化一个list或dequequeue = collections.dequ...