Skip to content

Commit 34ba59d

Browse files
committed
Add: Navigation
1 parent 7dea02f commit 34ba59d

File tree

100 files changed

+400
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+400
-0
lines changed

problems/interleaving-string/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
<!--|@home https://github.com/openset/leetcode |-->
66
<!--+----------------------------------------------------------------------+-->
77

8+
[< Previous](https://github.com/openset/leetcode/tree/master/problems/unique-binary-search-trees "Unique Binary Search Trees")
9+
                
10+
[Next >](https://github.com/openset/leetcode/tree/master/problems/validate-binary-search-tree "Validate Binary Search Tree")
11+
812
## 97. Interleaving String (Hard)
913

1014
<p>Given <em>s1</em>, <em>s2</em>, <em>s3</em>, find whether <em>s3</em> is formed by the interleaving of <em>s1</em> and <em>s2</em>.</p>

problems/largest-number/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
<!--|@home https://github.com/openset/leetcode |-->
66
<!--+----------------------------------------------------------------------+-->
77

8+
[< Previous](https://github.com/openset/leetcode/tree/master/problems/rank-scores "Rank Scores")
9+
                
10+
[Next >](https://github.com/openset/leetcode/tree/master/problems/consecutive-numbers "Consecutive Numbers")
11+
812
## 179. Largest Number (Medium)
913

1014
<p>Given a list of non negative integers, arrange them such that they form the largest number.</p>

problems/longest-consecutive-sequence/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
<!--|@home https://github.com/openset/leetcode |-->
66
<!--+----------------------------------------------------------------------+-->
77

8+
[< Previous](https://github.com/openset/leetcode/tree/master/problems/word-ladder "Word Ladder")
9+
                
10+
[Next >](https://github.com/openset/leetcode/tree/master/problems/sum-root-to-leaf-numbers "Sum Root to Leaf Numbers")
11+
812
## 128. Longest Consecutive Sequence (Hard)
913

1014
<p>Given an unsorted array of integers, find the length of the longest consecutive elements sequence.</p>

problems/longest-increasing-subsequence/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
<!--|@home https://github.com/openset/leetcode |-->
66
<!--+----------------------------------------------------------------------+-->
77

8+
[< Previous](https://github.com/openset/leetcode/tree/master/problems/bulls-and-cows "Bulls and Cows")
9+
                
10+
[Next >](https://github.com/openset/leetcode/tree/master/problems/remove-invalid-parentheses "Remove Invalid Parentheses")
11+
812
## 300. Longest Increasing Subsequence (Medium)
913

1014
<p>Given an unsorted array of integers, find the length of longest increasing subsequence.</p>

problems/lowest-common-ancestor-of-a-binary-tree/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
<!--|@home https://github.com/openset/leetcode |-->
66
<!--+----------------------------------------------------------------------+-->
77

8+
[< Previous](https://github.com/openset/leetcode/tree/master/problems/lowest-common-ancestor-of-a-binary-search-tree "Lowest Common Ancestor of a Binary Search Tree")
9+
                
10+
[Next >](https://github.com/openset/leetcode/tree/master/problems/delete-node-in-a-linked-list "Delete Node in a Linked List")
11+
812
## 236. Lowest Common Ancestor of a Binary Tree (Medium)
913

1014
<p>Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree.</p>

problems/maximal-rectangle/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
<!--|@home https://github.com/openset/leetcode |-->
66
<!--+----------------------------------------------------------------------+-->
77

8+
[< Previous](https://github.com/openset/leetcode/tree/master/problems/largest-rectangle-in-histogram "Largest Rectangle in Histogram")
9+
                
10+
[Next >](https://github.com/openset/leetcode/tree/master/problems/partition-list "Partition List")
11+
812
## 85. Maximal Rectangle (Hard)
913

1014
<p>Given a 2D binary matrix filled with 0&#39;s and 1&#39;s, find the largest rectangle containing only 1&#39;s and return its area.</p>

problems/maximum-gap/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
<!--|@home https://github.com/openset/leetcode |-->
66
<!--+----------------------------------------------------------------------+-->
77

8+
[< Previous](https://github.com/openset/leetcode/tree/master/problems/missing-ranges "Missing Ranges")
9+
                
10+
[Next >](https://github.com/openset/leetcode/tree/master/problems/compare-version-numbers "Compare Version Numbers")
11+
812
## 164. Maximum Gap (Hard)
913

1014
<p>Given an unsorted array, find the maximum difference between the successive elements in its sorted form.</p>

problems/meeting-rooms-ii/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
<!--|@home https://github.com/openset/leetcode |-->
66
<!--+----------------------------------------------------------------------+-->
77

8+
[< Previous](https://github.com/openset/leetcode/tree/master/problems/meeting-rooms "Meeting Rooms")
9+
                
10+
[Next >](https://github.com/openset/leetcode/tree/master/problems/factor-combinations "Factor Combinations")
11+
812
## 253. Meeting Rooms II (Medium)
913

1014

problems/minimum-size-subarray-sum/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
<!--|@home https://github.com/openset/leetcode |-->
66
<!--+----------------------------------------------------------------------+-->
77

8+
[< Previous](https://github.com/openset/leetcode/tree/master/problems/implement-trie-prefix-tree "Implement Trie (Prefix Tree)")
9+
                
10+
[Next >](https://github.com/openset/leetcode/tree/master/problems/course-schedule-ii "Course Schedule II")
11+
812
## 209. Minimum Size Subarray Sum (Medium)
913

1014
<p>Given an array of <strong>n</strong> positive integers and a positive integer <strong>s</strong>, find the minimal length of a <b>contiguous</b> subarray of which the sum &ge; <strong>s</strong>. If there isn&#39;t one, return 0 instead.</p>

problems/missing-ranges/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
<!--|@home https://github.com/openset/leetcode |-->
66
<!--+----------------------------------------------------------------------+-->
77

8+
[< Previous](https://github.com/openset/leetcode/tree/master/problems/find-peak-element "Find Peak Element")
9+
                
10+
[Next >](https://github.com/openset/leetcode/tree/master/problems/maximum-gap "Maximum Gap")
11+
812
## 163. Missing Ranges (Medium)
913

1014

0 commit comments

Comments
 (0)