Skip to content

Commit 8848c5a

Browse files
committed
update doc
1 parent a086964 commit 8848c5a

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@ P.S.:
260260
| 240 | [Search a 2D Matrix II](https://github.com/interviewcoder/leetcode/blob/master/src/_240_SearchA2DMatrixII/Solution.java) | Medium | `Divide and Conquer` `Binary Search` | |
261261
| 241 | Different Ways to Add Parentheses | Medium | `Divide and Conquer` | |
262262
| 242 | [Valid Anagram](https://github.com/interviewcoder/leetcode/blob/master/src/_242_ValidAnagram/Solution.java) | Easy | `Hash Table` `Sort` | |
263+
| 246 | [Strobogrammatic Number](https://github.com/interviewcoder/leetcode/blob/master/src/_246_StrobogrammaticNumber/Solution.java) | Easy | `Hash Table` `Math` | |
263264
| 251 | [Flatten2DVector](https://github.com/interviewcoder/leetcode/tree/master/src/_251_Flatten2DVector) | Medium | `Design` | |
264265
| 252 | [Meeting Rooms](https://github.com/interviewcoder/leetcode/tree/master/src/_252_MeetingRooms) | Easy | `Sort` | |
265266
| 253 | [Meeting Rooms II](https://github.com/interviewcoder/leetcode/tree/master/src/_253_MeetingRoomsII) | Medium | `Heap` `Greedy` `Sort` | |

doc/category_binarysearch.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#### Category : : Binary Search
2+
3+
| Type | # | Description |
4+
| ---------------------: |:---:| :------------|
5+
| matrix | 240 | [Search A 2D Matrix II](https://github.com/interviewcoder/leetcode/blob/master/src/_240_SearchA2DMatrixII/Solution.java) |

doc/category_dp.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44

55
| | | | |
66
| ---------------------: |:---:| :-----:| :--- |
7-
| 1 sequence : boolean(*) | 139 | [Word Break](https://github.com/interviewcoder/leetcode/tree/master/src/_139_WordBreak) | |
7+
| 1 sequence : boolean(*) | 139 | [Word Break](https://github.com/interviewcoder/leetcode/tree/master/src/_139_WordBreak) | O(2^n) -> O(N^2) |
88
| 1 sequence : `max`/min(*) | 198 | House Robber | |
99
| 1 sequence : `max`/min(*) | 213 | [House Robber II](https://github.com/interviewcoder/leetcode/tree/master/src/_213_HouseRobberII) | |
10-
| 1 sequence : `max`/min(*) | 053 | [Maximum Subarray](https://github.com/interviewcoder/leetcode/tree/master/src/_053_MaximumSubarray) | |
11-
| 1 sequence : `max`/min(*) | 152 | [Maximum Product Subarray](https://github.com/interviewcoder/leetcode/blob/master/src/_152_MaximumProductSubarray/Solution.java) | global V.S. local |
10+
| 1 sequence : `max`/min(*) | 053 | [Maximum Subarray](https://github.com/interviewcoder/leetcode/tree/master/src/_053_MaximumSubarray) | global V.S. local, O(N^3) -> O(N) |
11+
| 1 sequence : `max`/min(*) | 152 | [Maximum Product Subarray](https://github.com/interviewcoder/leetcode/blob/master/src/_152_MaximumProductSubarray/Solution.java) | global V.S. local, O(N^3) -> O(N) |
1212
| 1 sequence : max/`min`(*) | 132 | [Palindrome Partitioning II](https://github.com/interviewcoder/leetcode/tree/master/src/_132_PalindromePartitioningII) | |
1313
| 1 sequence : `max`/min(*) | 032 | [Longest Valid Parentheses](https://github.com/interviewcoder/leetcode/tree/master/src/_032_LongestValidParentheses) | global V.S. local |
14-
| 1 sequence : `max`/min(*) | 121 | Best Time to Buy and Sell Stock | |
14+
| 1 sequence : `max`/min(*) | 121 | Best Time to Buy and Sell Stock | O(N^2) -> O(N) |
1515
| 1 sequence : `max`/min(*) | 123 | Best Time to Buy and Sell Stock III | |
16-
| 1 sequence : count(*) | 091 | [Decode Ways](https://github.com/interviewcoder/leetcode/tree/master/src/_091_DecodeWays) | |
16+
| 1 sequence : count(*) | 091 | [Decode Ways](https://github.com/interviewcoder/leetcode/tree/master/src/_091_DecodeWays) | O(N^2) -> O(N) |
1717
| 1 sequence : all(*) | 140 | Word Break II: dp + backtracking | |
1818

1919

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy