|
1 | 1 | ## Leetcode in Rust
|
2 | 2 |
|
3 | 3 | Selections from the [Blind 75](https://leetcode.com/discuss/general-discussion/460599/blind-75-leetcode-questions) list.
|
| 4 | + |
| 5 | +## Index |
| 6 | + |
| 7 | +#### Array |
| 8 | + |
| 9 | +| **LC #** | **Solution** | |
| 10 | +| -------- | ------------ | |
| 11 | +| [#1](https://leetcode.com/problems/two-sum/) | [Two Sum](./src/array/two_sum.rs) | |
| 12 | +| [#121](https://leetcode.com/problems/best-time-to-buy-and-sell-stock/) | [Best Time to Buy and Sell Stock](./src/array/best-time-to-buy-and-sell-stock.rs) | |
| 13 | +| [#217](https://leetcode.com/problems/contains-duplicate/) | [Contains Duplicate](./src/array/contains_duplicate.rs) | |
| 14 | +| [#238](https://leetcode.com/problems/product-of-array-except-self/) | [Product of Array Except Self](./src/array/product_of_array_except_self.rs) | |
| 15 | +| [#53](https://leetcode.com/problems/maximum-subarray/) | [Maximum Subarray](./src/dp/maximum_subarray.rs) | |
| 16 | +| [#152](https://leetcode.com/problems/maximum-product-subarray/) | Maximum Product Subarray | |
| 17 | +| [#153](https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/) | Find Minimum in Rotated Sorted Array | |
| 18 | +| [#33](https://leetcode.com/problems/search-in-rotated-sorted-array/) | Search in Rotated Sorted Array | |
| 19 | +| [#15](https://leetcode.com/problems/3sum/) | [3Sum](./src/array/three_sum.rs) | |
| 20 | +| [#11](https://leetcode.com/problems/container-with-most-water/) | [Container With Most Water](./src/array/container_with_most_water.rs) | |
| 21 | + |
| 22 | +#### Binary |
| 23 | + |
| 24 | +#### Dynamic Programming |
| 25 | + |
| 26 | +| **LC #** | **Solution** | |
| 27 | +| -------- | ------------ | |
| 28 | +| [#70](https://leetcode.com/problems/climbing-stairs/) | Climbing Stairs | |
| 29 | +| [#322](https://leetcode.com/problems/coin-change/) | [Coin Change](./src/dp/coin_change.rs) | |
| 30 | +| [#300](https://leetcode.com/problems/longest-increasing-subsequence/) | Longest Increasing Subsequence | |
| 31 | +| [#1143](https://leetcode.com/problems/longest-common-subsequence/) | Longest Common Subsequence | |
| 32 | +| [#139](https://leetcode.com/problems/word-break/) | Word Break | |
| 33 | +| [#377](https://leetcode.com/problems/combination-sum-iv/) | Combination Sum IV | |
| 34 | +| [#198](https://leetcode.com/problems/house-robber/) | House Robber | |
| 35 | +| [#213](https://leetcode.com/problems/house-robber-ii/) | House Robber II | |
| 36 | +| [#91](https://leetcode.com/problems/decode-ways/) | Decode Ways | |
| 37 | +| [#62](https://leetcode.com/problems/unique-paths/) | Unique Paths | |
| 38 | +| [#55](https://leetcode.com/problems/jump-game/) | Jump Game | |
| 39 | + |
| 40 | +#### Graph |
| 41 | +#### Interval |
| 42 | +#### Linked List |
| 43 | +#### Matrix |
| 44 | +#### String |
| 45 | +#### Tree |
| 46 | +#### Heap |
0 commit comments