Leslie_Wen

Untitled

Sep 20th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.26 KB | None | 0 0
  1. Array
  2.  
  3. - Two Sum - https://leetcode.com/problems/two-sum/
  4. - Best Time to Buy and Sell Stock - https://leetcode.com/problems/best-time-to-buy-and-sell-stock/
  5. - Contains Duplicate - https://leetcode.com/problems/contains-duplicate/
  6. - Product of Array Except Self - https://leetcode.com/problems/product-of-array-except-self/
  7. - Maximum Subarray - https://leetcode.com/problems/maximum-subarray/
  8. - Maximum Product Subarray - https://leetcode.com/problems/maximum-product-subarray/
  9. - Find Minimum in Rotated Sorted Array - https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/
  10. - Search in Rotated Sorted Array - https://leetcode.com/problems/search-in-rotated-sorted-array/
  11. - 3Sum - https://leetcode.com/problems/3sum/
  12. - Container With Most Water - https://leetcode.com/problems/container-with-most-water/
  13.  
  14. ---
  15.  
  16. Binary
  17.  
  18. - Sum of Two Integers - https://leetcode.com/problems/sum-of-two-integers/
  19. - Number of 1 Bits - https://leetcode.com/problems/number-of-1-bits/
  20. - Counting Bits - https://leetcode.com/problems/counting-bits/
  21. - Missing Number - https://leetcode.com/problems/missing-number/
  22. - Reverse Bits - https://leetcode.com/problems/reverse-bits/
  23.  
  24. ---
  25.  
  26. Dynamic Programming
  27.  
  28. - Climbing Stairs - https://leetcode.com/problems/climbing-stairs/
  29. - Coin Change - https://leetcode.com/problems/coin-change/
  30. - Longest Increasing Subsequence - https://leetcode.com/problems/longest-increasing-subsequence/
  31. - Longest Common Subsequence -
  32. - Word Break Problem - https://leetcode.com/problems/word-break/
  33. - Combination Sum - https://leetcode.com/problems/combination-sum-iv/
  34. - House Robber - https://leetcode.com/problems/house-robber/
  35. - House Robber II - https://leetcode.com/problems/house-robber-ii/
  36. - Decode Ways - https://leetcode.com/problems/decode-ways/
  37. - Unique Paths - https://leetcode.com/problems/unique-paths/
  38. - Jump Game - https://leetcode.com/problems/jump-game/
  39.  
  40. ---
  41.  
  42. Graph
  43.  
  44. - Clone Graph - https://leetcode.com/problems/clone-graph/
  45. - Course Schedule - https://leetcode.com/problems/course-schedule/
  46. - Pacific Atlantic Water Flow - https://leetcode.com/problems/pacific-atlantic-water-flow/
  47. - Number of Islands - https://leetcode.com/problems/number-of-islands/
  48. - Longest Consecutive Sequence - https://leetcode.com/problems/longest-consecutive-sequence/
  49. - Alien Dictionary (Leetcode Premium) - https://leetcode.com/problems/alien-dictionary/
  50. - Graph Valid Tree (Leetcode Premium) - https://leetcode.com/problems/graph-valid-tree/
  51. - Number of Connected Components in an Undirected Graph (Leetcode Premium) - https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/
  52.  
  53. ---
  54.  
  55. Interval
  56.  
  57. - Insert Interval - https://leetcode.com/problems/insert-interval/
  58. - Merge Intervals - https://leetcode.com/problems/merge-intervals/
  59. - Non-overlapping Intervals - https://leetcode.com/problems/non-overlapping-intervals/
  60. - Meeting Rooms (Leetcode Premium) - https://leetcode.com/problems/meeting-rooms/
  61. - Meeting Rooms II (Leetcode Premium) - https://leetcode.com/problems/meeting-rooms-ii/
  62.  
  63. ---
  64.  
  65. Linked List
  66.  
  67. - Reverse a Linked List - https://leetcode.com/problems/reverse-linked-list/
  68. - Detect Cycle in a Linked List - https://leetcode.com/problems/linked-list-cycle/
  69. - Merge Two Sorted Lists - https://leetcode.com/problems/merge-two-sorted-lists/
  70. - Merge K Sorted Lists - https://leetcode.com/problems/merge-k-sorted-lists/
  71. - Remove Nth Node From End Of List - https://leetcode.com/problems/remove-nth-node-from-end-of-list/
  72. - Reorder List - https://leetcode.com/problems/reorder-list/
  73.  
  74. ---
  75.  
  76. Matrix
  77.  
  78. - Set Matrix Zeroes - https://leetcode.com/problems/set-matrix-zeroes/
  79. - Spiral Matrix - https://leetcode.com/problems/spiral-matrix/
  80. - Rotate Image - https://leetcode.com/problems/rotate-image/
  81. - Word Search - https://leetcode.com/problems/word-search/
  82.  
  83. ---
  84.  
  85. String
  86.  
  87. - Longest Substring Without Repeating Characters - https://leetcode.com/problems/longest-substring-without-repeating-characters/
  88. - Longest Repeating Character Replacement - https://leetcode.com/problems/longest-repeating-character-replacement/
  89. - Minimum Window Substring - https://leetcode.com/problems/minimum-window-substring/
  90. - Valid Anagram - https://leetcode.com/problems/valid-anagram/
  91. - Group Anagrams - https://leetcode.com/problems/group-anagrams/
  92. - Valid Parentheses - https://leetcode.com/problems/valid-parentheses/
  93. - Valid Palindrome - https://leetcode.com/problems/valid-palindrome/
  94. - Longest Palindromic Substring - https://leetcode.com/problems/longest-palindromic-substring/
  95. - Palindromic Substrings - https://leetcode.com/problems/palindromic-substrings/
  96. - Encode and Decode Strings (Leetcode Premium) - https://leetcode.com/problems/encode-and-decode-strings/
  97.  
  98. ---
  99.  
  100. Tree
  101.  
  102. - Maximum Depth of Binary Tree - https://leetcode.com/problems/maximum-depth-of-binary-tree/
  103. - Same Tree - https://leetcode.com/problems/same-tree/
  104. - Invert/Flip Binary Tree - https://leetcode.com/problems/invert-binary-tree/
  105. - Binary Tree Maximum Path Sum - https://leetcode.com/problems/binary-tree-maximum-path-sum/
  106. - Binary Tree Level Order Traversal - https://leetcode.com/problems/binary-tree-level-order-traversal/
  107. - Serialize and Deserialize Binary Tree - https://leetcode.com/problems/serialize-and-deserialize-binary-tree/
  108. - Subtree of Another Tree - https://leetcode.com/problems/subtree-of-another-tree/
  109. - Construct Binary Tree from Preorder and Inorder Traversal - https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/
  110. - Validate Binary Search Tree - https://leetcode.com/problems/validate-binary-search-tree/
  111. - Kth Smallest Element in a BST - https://leetcode.com/problems/kth-smallest-element-in-a-bst/
  112. - Lowest Common Ancestor of BST - https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/
  113. - Implement Trie (Prefix Tree) - https://leetcode.com/problems/implement-trie-prefix-tree/
  114. - Add and Search Word - https://leetcode.com/problems/add-and-search-word-data-structure-design/
  115. - Word Search II - https://leetcode.com/problems/word-search-ii/
  116.  
  117. ---
  118.  
  119. Heap
  120.  
  121. - Merge K Sorted Lists - https://leetcode.com/problems/merge-k-sorted-lists/
  122. - Top K Frequent Elements - https://leetcode.com/problems/top-k-frequent-elements/
  123. - Find Median from Data Stream - https://leetcode.com/problems/find-median-from-data-stream/
  124.  
  125. You're welcome!
Add Comment
Please, Sign In to add comment