Nest URLs beneath TODO entries

Tidying things up.
This commit is contained in:
William Carroll 2020-12-18 14:40:19 +00:00
parent fd6029db69
commit 039e712656

View file

@ -1,88 +1,163 @@
# This list is from: # This list is from:
# https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-100-LeetCode-Questions-to-Save-Your-Time-OaM1orEU # https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-100-LeetCode-Questions-to-Save-Your-Time-OaM1orEU
* Array * Array
** DONE Two Sum - https://leetcode.com/problems/two-sum/ ** DONE Two Sum
** DONE Best Time to Buy and Sell Stock - https://leetcode.com/problems/best-time-to-buy-and-sell-stock/ https://leetcode.com/problems/two-sum/
** DONE Contains Duplicate - https://leetcode.com/problems/contains-duplicate/ ** DONE Best Time to Buy and Sell Stock
** DONE Product of Array Except Self - https://leetcode.com/problems/product-of-array-except-self/ https://leetcode.com/problems/best-time-to-buy-and-sell-stock/
** DONE Maximum Subarray - https://leetcode.com/problems/maximum-subarray/ ** DONE Contains Duplicate
** DONE Maximum Product Subarray - https://leetcode.com/problems/maximum-product-subarray/ https://leetcode.com/problems/contains-duplicate/
** DONE Find Minimum in Rotated Sorted Array - https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/ ** DONE Product of Array Except Self
** DONE Search in Rotated Sorted Array - https://leetcode.com/problems/search-in-rotated-sorted-array/ https://leetcode.com/problems/product-of-array-except-self/
** DONE 3Sum - https://leetcode.com/problems/3sum/ ** DONE Maximum Subarray
** DONE Container With Most Water - https://leetcode.com/problems/container-with-most-water/ https://leetcode.com/problems/maximum-subarray/
** DONE Maximum Product Subarray
https://leetcode.com/problems/maximum-product-subarray/
** DONE Find Minimum in Rotated Sorted Array
https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/
** DONE Search in Rotated Sorted Array
https://leetcode.com/problems/search-in-rotated-sorted-array/
** DONE 3Sum
https://leetcode.com/problems/3sum/
** DONE Container With Most Water
https://leetcode.com/problems/container-with-most-water/
* Binary * Binary
** TODO Sum of Two Integers - https://leetcode.com/problems/sum-of-two-integers/ ** TODO Sum of Two Integers
** DONE Number of 1 Bits - https://leetcode.com/problems/number-of-1-bits/ https://leetcode.com/problems/sum-of-two-integers/
** TODO Counting Bits - https://leetcode.com/problems/counting-bits/ ** DONE Number of 1 Bits
** DONE Missing Number - https://leetcode.com/problems/missing-number/ https://leetcode.com/problems/number-of-1-bits/
** TODO Reverse Bits - https://leetcode.com/problems/reverse-bits/ ** TODO Counting Bits
https://leetcode.com/problems/counting-bits/
** DONE Missing Number
https://leetcode.com/problems/missing-number/
** TODO Reverse Bits
https://leetcode.com/problems/reverse-bits/
* Dynamic Programming * Dynamic Programming
** TODO Climbing Stairs - https://leetcode.com/problems/climbing-stairs/ ** TODO Climbing Stairs
** TODO Coin Change - https://leetcode.com/problems/coin-change/ https://leetcode.com/problems/climbing-stairs/
** TODO Longest Increasing Subsequence - https://leetcode.com/problems/longest-increasing-subsequence/ ** TODO Coin Change
** TODO Longest Common Subsequence - https://leetcode.com/problems/coin-change/
** DONE Word Break Problem - https://leetcode.com/problems/word-break/ ** TODO Longest Increasing Subsequence
** TODO Combination Sum - https://leetcode.com/problems/combination-sum-iv/ https://leetcode.com/problems/longest-increasing-subsequence/
** TODO House Robber - https://leetcode.com/problems/house-robber/ ** TODO Longest Common Subsequence
** TODO House Robber II - https://leetcode.com/problems/house-robber-ii/ ** DONE Word Break Problem
** TODO Decode Ways - https://leetcode.com/problems/decode-ways/ https://leetcode.com/problems/word-break/
** TODO Unique Paths - https://leetcode.com/problems/unique-paths/ ** TODO Combination Sum
** TODO Jump Game - https://leetcode.com/problems/jump-game/ https://leetcode.com/problems/combination-sum-iv/
** TODO House Robber
https://leetcode.com/problems/house-robber/
** TODO House Robber II
https://leetcode.com/problems/house-robber-ii/
** TODO Decode Ways
https://leetcode.com/problems/decode-ways/
** TODO Unique Paths
https://leetcode.com/problems/unique-paths/
** TODO Jump Game
https://leetcode.com/problems/jump-game/
* Graph * Graph
** DONE Clone Graph - https://leetcode.com/problems/clone-graph/ ** DONE Clone Graph
** DONE Course Schedule - https://leetcode.com/problems/course-schedule/ https://leetcode.com/problems/clone-graph/
** TODO Pacific Atlantic Water Flow - https://leetcode.com/problems/pacific-atlantic-water-flow/ ** DONE Course Schedule
** DONE Number of Islands - https://leetcode.com/problems/number-of-islands/ https://leetcode.com/problems/course-schedule/
** TODO Longest Consecutive Sequence - https://leetcode.com/problems/longest-consecutive-sequence/ ** TODO Pacific Atlantic Water Flow
** TODO Alien Dictionary (Leetcode Premium) - https://leetcode.com/problems/alien-dictionary/ https://leetcode.com/problems/pacific-atlantic-water-flow/
** TODO Graph Valid Tree (Leetcode Premium) - https://leetcode.com/problems/graph-valid-tree/ ** DONE Number of Islands
** DONE Number of Connected Components in an Undirected Graph (Leetcode Premium) - https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/ https://leetcode.com/problems/number-of-islands/
** TODO Longest Consecutive Sequence
https://leetcode.com/problems/longest-consecutive-sequence/
** TODO Alien Dictionary (Leetcode Premium)
https://leetcode.com/problems/alien-dictionary/
** TODO Graph Valid Tree (Leetcode Premium)
https://leetcode.com/problems/graph-valid-tree/
** DONE Number of Connected Components in an Undirected Graph (Leetcode Premium)
https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/
* Interval * Interval
** TODO Insert Interval - https://leetcode.com/problems/insert-interval/ ** TODO Insert Interval
** DONE Merge Intervals - https://leetcode.com/problems/merge-intervals/ https://leetcode.com/problems/insert-interval/
** TODO Non-overlapping Intervals - https://leetcode.com/problems/non-overlapping-intervals/ ** DONE Merge Intervals
** DONE Meeting Rooms (Leetcode Premium) - https://leetcode.com/problems/meeting-rooms/ https://leetcode.com/problems/merge-intervals/
** TODO Meeting Rooms II (Leetcode Premium) - https://leetcode.com/problems/meeting-rooms-ii/ ** TODO No Overlapping Intervals
https://leetcode.com/problems/non-overlapping-intervals/
** DONE Meeting Rooms (Leetcode Premium)
https://leetcode.com/problems/meeting-rooms/
** TODO Meeting Rooms II (Leetcode Premium)
https://leetcode.com/problems/meeting-rooms-ii/
* Linked List * Linked List
** DONE Reverse a Linked List - https://leetcode.com/problems/reverse-linked-list/ ** DONE Reverse a Linked List
** DONE Detect Cycle in a Linked List - https://leetcode.com/problems/linked-list-cycle/ https://leetcode.com/problems/reverse-linked-list/
** DONE Merge Two Sorted Lists - https://leetcode.com/problems/merge-two-sorted-lists/ ** DONE Detect Cycle in a Linked List
** DONE Merge K Sorted Lists - https://leetcode.com/problems/merge-k-sorted-lists/ https://leetcode.com/problems/linked-list-cycle/
** TODO Remove Nth Node From End Of List - https://leetcode.com/problems/remove-nth-node-from-end-of-list/ ** DONE Merge Two Sorted Lists
** TODO Reorder List - https://leetcode.com/problems/reorder-list/ https://leetcode.com/problems/merge-two-sorted-lists/
** DONE Merge K Sorted Lists
https://leetcode.com/problems/merge-k-sorted-lists/
** TODO Remove Nth Node From End Of List
https://leetcode.com/problems/remove-nth-node-from-end-of-list/
** TODO Reorder List
https://leetcode.com/problems/reorder-list/
* Matrix * Matrix
** TODO Set Matrix Zeroes - https://leetcode.com/problems/set-matrix-zeroes/ ** TODO Set Matrix Zeroes
** TODO Spiral Matrix - https://leetcode.com/problems/spiral-matrix/ https://leetcode.com/problems/set-matrix-zeroes/
** TODO Rotate Image - https://leetcode.com/problems/rotate-image/ ** TODO Spiral Matrix
** TODO Word Search - https://leetcode.com/problems/word-search/ https://leetcode.com/problems/spiral-matrix/
** TODO Rotate Image
https://leetcode.com/problems/rotate-image/
** TODO Word Search
https://leetcode.com/problems/word-search/
* String * String
** TODO Longest Substring Without Repeating Characters - https://leetcode.com/problems/longest-substring-without-repeating-characters/ ** TODO Longest Substring Without Repeating Characters
** TODO Longest Repeating Character Replacement - https://leetcode.com/problems/longest-repeating-character-replacement/ https://leetcode.com/problems/longest-substring-without-repeating-characters/
** TODO Minimum Window Substring - https://leetcode.com/problems/minimum-window-substring/ ** TODO Longest Repeating Character Replacement
** TODO Valid Anagram - https://leetcode.com/problems/valid-anagram/ https://leetcode.com/problems/longest-repeating-character-replacement/
** TODO Group Anagrams - https://leetcode.com/problems/group-anagrams/ ** TODO Minimum Window Substring
** DONE Valid Parentheses - https://leetcode.com/problems/valid-parentheses/ https://leetcode.com/problems/minimum-window-substring/
** DONE Valid Palindrome - https://leetcode.com/problems/valid-palindrome/ ** TODO Valid Anagram
** TODO Longest Palindromic Substring - https://leetcode.com/problems/longest-palindromic-substring/ https://leetcode.com/problems/valid-anagram/
** TODO Palindromic Substrings - https://leetcode.com/problems/palindromic-substrings/ ** TODO Group Anagrams
** TODO Encode and Decode Strings (Leetcode Premium) - https://leetcode.com/problems/encode-and-decode-strings/ https://leetcode.com/problems/group-anagrams/
** DONE Valid Parentheses
https://leetcode.com/problems/valid-parentheses/
** DONE Valid Palindrome
https://leetcode.com/problems/valid-palindrome/
** TODO Longest Palindromic Substring
https://leetcode.com/problems/longest-palindromic-substring/
** TODO Palindromic Substrings
https://leetcode.com/problems/palindromic-substrings/
** TODO Encode and Decode Strings (Leetcode Premium)
https://leetcode.com/problems/encode-and-decode-strings/
* Tree * Tree
** DONE Maximum Depth of Binary Tree - https://leetcode.com/problems/maximum-depth-of-binary-tree/ ** DONE Maximum Depth of Binary Tree
** DONE Same Tree - https://leetcode.com/problems/same-tree/ https://leetcode.com/problems/maximum-depth-of-binary-tree/
** DONE Invert/Flip Binary Tree - https://leetcode.com/problems/invert-binary-tree/ ** DONE Same Tree
** TODO Binary Tree Maximum Path Sum - https://leetcode.com/problems/binary-tree-maximum-path-sum/ https://leetcode.com/problems/same-tree/
** TODO Binary Tree Level Order Traversal - https://leetcode.com/problems/binary-tree-level-order-traversal/ ** DONE Invert/Flip Binary Tree
** DONE Serialize and Deserialize Binary Tree - https://leetcode.com/problems/serialize-and-deserialize-binary-tree/ https://leetcode.com/problems/invert-binary-tree/
** TODO Subtree of Another Tree - https://leetcode.com/problems/subtree-of-another-tree/ ** TODO Binary Tree Maximum Path Sum
** TODO Construct Binary Tree from Preorder and Inorder Traversal - https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/ https://leetcode.com/problems/binary-tree-maximum-path-sum/
** TODO Validate Binary Search Tree - https://leetcode.com/problems/validate-binary-search-tree/ ** TODO Binary Tree Level Order Traversal
** TODO Kth Smallest Element in a BST - https://leetcode.com/problems/kth-smallest-element-in-a-bst/ https://leetcode.com/problems/binary-tree-level-order-traversal/
** DONE Lowest Common Ancestor of BST - https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/ ** DONE Serialize and Deserialize Binary Tree
** DONE Implement Trie (Prefix Tree) - https://leetcode.com/problems/implement-trie-prefix-tree/ https://leetcode.com/problems/serialize-and-deserialize-binary-tree/
** DONE Add and Search Word - https://leetcode.com/problems/add-and-search-word-data-structure-design/ ** TODO Subtree of Another Tree
** TODO Word Search II - https://leetcode.com/problems/word-search-ii/ https://leetcode.com/problems/subtree-of-another-tree/
** TODO Construct Binary Tree from Preorder and Inorder Traversal
https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/
** TODO Validate Binary Search Tree
https://leetcode.com/problems/validate-binary-search-tree/
** TODO Kth Smallest Element in a BST
https://leetcode.com/problems/kth-smallest-element-in-a-bst/
** DONE Lowest Common Ancestor of BST
https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/
** DONE Implement Trie (Prefix Tree)
https://leetcode.com/problems/implement-trie-prefix-tree/
** DONE Add and Search Word
https://leetcode.com/problems/add-and-search-word-data-structure-design/
** TODO Word Search II
https://leetcode.com/problems/word-search-ii/
* Heap * Heap
** DONE Merge K Sorted Lists - https://leetcode.com/problems/merge-k-sorted-lists/ ** DONE Merge K Sorted Lists
** DONE Top K Frequent Elements - https://leetcode.com/problems/top-k-frequent-elements/ https://leetcode.com/problems/merge-k-sorted-lists/
** DONE Find Median from Data Stream - https://leetcode.com/problems/find-median-from-data-stream/ ** DONE Top K Frequent Elements
https://leetcode.com/problems/top-k-frequent-elements/
** DONE Find Median from Data Stream
https://leetcode.com/problems/find-median-from-data-stream/