Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.20 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. - Non-overlapping Intervals - https://leetcode.com/problems/non-overlapping-intervals/
  59. - Meeting Rooms (Leetcode Premium) - https://leetcode.com/problems/meeting-rooms/
  60. - Meeting Rooms II (Leetcode Premium) - https://leetcode.com/problems/meeting-rooms-ii/
  61.  
  62. ---
  63.  
  64. Linked List
  65.  
  66. - Reverse a Linked List - https://leetcode.com/problems/reverse-linked-list/
  67. - Detect Cycle in a Linked List - https://leetcode.com/problems/linked-list-cycle/
  68. - Merge Two Sorted Lists - https://leetcode.com/problems/merge-two-sorted-lists/
  69. - Merge K Sorted Lists - https://leetcode.com/problems/merge-k-sorted-lists/
  70. - Remove Nth Node From End Of List - https://leetcode.com/problems/remove-nth-node-from-end-of-list/
  71. - Reorder List - https://leetcode.com/problems/reorder-list/
  72.  
  73. ---
  74.  
  75. Matrix
  76.  
  77. - Set Matrix Zeroes - https://leetcode.com/problems/set-matrix-zeroes/
  78. - Spiral Matrix - https://leetcode.com/problems/spiral-matrix/
  79. - Rotate Image - https://leetcode.com/problems/rotate-image/
  80. - Word Search - https://leetcode.com/problems/word-search/
  81.  
  82. ---
  83.  
  84. String
  85.  
  86. - Longest Substring Without Repeating Characters - https://leetcode.com/problems/longest-substring-without-repeating-characters/
  87. - Longest Repeating Character Replacement - https://leetcode.com/problems/longest-repeating-character-replacement/
  88. - Minimum Window Substring - https://leetcode.com/problems/minimum-window-substring/
  89. - Valid Anagram - https://leetcode.com/problems/valid-anagram/
  90. - Group Anagrams - https://leetcode.com/problems/group-anagrams/
  91. - Valid Parentheses - https://leetcode.com/problems/valid-parentheses/
  92. - Valid Palindrome - https://leetcode.com/problems/valid-palindrome/
  93. - Longest Palindromic Substring - https://leetcode.com/problems/longest-palindromic-substring/
  94. - Palindromic Substrings - https://leetcode.com/problems/palindromic-substrings/
  95. - Encode and Decode Strings (Leetcode Premium) - https://leetcode.com/problems/encode-and-decode-strings/
  96.  
  97. ---
  98.  
  99. Tree
  100.  
  101. - Maximum Depth of Binary Tree - https://leetcode.com/problems/maximum-depth-of-binary-tree/
  102. - Same Tree - https://leetcode.com/problems/same-tree/
  103. - Invert/Flip Binary Tree - https://leetcode.com/problems/invert-binary-tree/
  104. - Binary Tree Maximum Path Sum - https://leetcode.com/problems/binary-tree-maximum-path-sum/
  105. - Binary Tree Level Order Traversal - https://leetcode.com/problems/binary-tree-level-order-traversal/
  106. - Serialize and Deserialize Binary Tree - https://leetcode.com/problems/serialize-and-deserialize-binary-tree/
  107. - Subtree of Another Tree - https://leetcode.com/problems/subtree-of-another-tree/
  108. - Construct Binary Tree from Preorder and Inorder Traversal - https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/
  109. - Validate Binary Search Tree - https://leetcode.com/problems/validate-binary-search-tree/
  110. - Kth Smallest Element in a BST - https://leetcode.com/problems/kth-smallest-element-in-a-bst/
  111. - Lowest Common Ancestor of BST - https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/
  112. - Implement Trie (Prefix Tree) - https://leetcode.com/problems/implement-trie-prefix-tree/
  113. - Add and Search Word - https://leetcode.com/problems/add-and-search-word-data-structure-design/
  114. - Word Search II - https://leetcode.com/problems/word-search-ii/
  115.  
  116. ---
  117.  
  118. Heap
  119.  
  120. - Merge K Sorted Lists - https://leetcode.com/problems/merge-k-sorted-lists/
  121. - Top K Frequent Elements - https://leetcode.com/problems/top-k-frequent-elements/
  122. - Find Median from Data Stream - https://leetcode.com/problems/find-median-from-data-stream/
  123.  
  124. You're welcome
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement