Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 023aa99

Browse files
simple summary
1 parent 496508e commit 023aa99

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

‎README.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ solutions using C# for leetcode according to tags of questions
3434
5. Submit a pull request and enjoy! :D
3535

3636
## Array Tag:
37+
|ID| Blog address|
38+
|---|-----------|
3739
35 |[Search Insert Position](http://blog.csdn.net/daigualu/article/details/66995617)
3840
118| [Pascal's Triangle](http://blog.csdn.net/daigualu/article/details/67006388)
3941
119 |[Pascal's Triangle II](http://blog.csdn.net/daigualu/article/details/67069088)
@@ -60,6 +62,8 @@ solutions using C# for leetcode according to tags of questions
6062
561| [Array Partition I](http://blog.csdn.net/daigualu/article/details/71273279)
6163

6264
## Binary Search:
65+
|ID| Blog address|PassRate|Level|
66+
|---|-----------|------|-----|
6367
367 |[Valid Perfect Square](http://blog.csdn.net/daigualu/article/details/69787644)| 37.8%| Easy
6468
270| Closest Binary Search Tree Value| 38.8%| Easy
6569
167 |[Two Sum II - Input array is sorted](http://blog.csdn.net/daigualu/article/details/69787679) |47.4%| Easy
@@ -73,6 +77,8 @@ solutions using C# for leetcode according to tags of questions
7377
349| [Intersection of Two Arrays](http://blog.csdn.net/daigualu/article/details/69666198)| 46.5%| Easy
7478

7579
## Dynamic Programming
80+
|ID| Blog address|PassRate|Level|
81+
|---|-----------|------|-----|
7682
53| [Maximum Subarray](http://blog.csdn.net/daigualu/article/details/69936974)| 39.2%| Easy|
7783
169| [Majority Element](http://blog.csdn.net/daigualu/article/details/69937729)| 45.6%| Easy|
7884
303| [Range Sum Query - Immutable](http://blog.csdn.net/daigualu/article/details/69938986)| 27.8%| Easy|
@@ -85,6 +91,8 @@ solutions using C# for leetcode according to tags of questions
8591

8692

8793
## HashTable:
94+
|ID| Blog address|
95+
|---|-----------|
8896
136 |[Single number](http://blog.csdn.net/daigualu/article/details/68921131)
8997
1| [Two Sum](http://blog.csdn.net/daigualu/article/details/68957096)
9098
447 |[Number of Boomerangs](http://blog.csdn.net/daigualu/article/details/68958818)
@@ -104,7 +112,8 @@ solutions using C# for leetcode according to tags of questions
104112
205 |[Isomorphic Strings](http://blog.csdn.net/daigualu/article/details/71357419)
105113

106114
## Linked List
107-
115+
|ID| Blog address|
116+
|---|-----------|
108117
141 | [Linked List Cycle](http://blog.csdn.net/daigualu/article/details/69055927)
109118
237 | [Delete Node in a Linked List](http://blog.csdn.net/daigualu/article/details/69055991)
110119
83 | [Remove Duplicates from Sorted List](http://blog.csdn.net/daigualu/article/details/69093677)
@@ -115,6 +124,8 @@ solutions using C# for leetcode according to tags of questions
115124
21 | [Merge Two Sorted Lists](http://blog.csdn.net/daigualu/article/details/69565969)
116125

117126
## Math:
127+
|ID| Blog address|
128+
|---|-----------|
118129
231 | [Power of Two](http://blog.csdn.net/daigualu/article/details/69102931)
119130
268| [Missing Number](http://blog.csdn.net/daigualu/article/details/69220202)
120131
507 | [Perfect Number](http://blog.csdn.net/daigualu/article/details/69233798)
@@ -140,14 +151,17 @@ solutions using C# for leetcode according to tags of questions
140151
326 |Power of Three
141152

142153
## Stack:
154+
|ID| Blog address|PassRate|Level|
155+
|---|-----------|------|-----|
143156
225|[Implement Stack using Queues](http://blog.csdn.net/daigualu/article/details/70183272)| 32.0%| Easy
144157
496| [Next Greater Element I](http://blog.csdn.net/daigualu/article/details/70185529) |57.5% |Easy
145158
155| [Min Stack](http://blog.csdn.net/daigualu/article/details/70185814)| 27.4%| Easy
146159
232| [Implement Queue using Stacks](http://blog.csdn.net/daigualu/article/details/70186010)| 35.8%| Easy
147160
20| [Valid Parentheses](http://blog.csdn.net/daigualu/article/details/69569622)| 32.9%| Easy
148161

149162
## String:
150-
163+
|ID| Blog address|PassRate|Level|
164+
|---|-----------|------|-----|
151165
58| [Length of Last Word](http://blog.csdn.net/daigualu/article/details/69568460)| 31.5%| Easy
152166
20 |[Valid Parentheses](http://blog.csdn.net/daigualu/article/details/69569622) |32.8% |Easy
153167
520 |[Detect Capital](http://blog.csdn.net/daigualu/article/details/69663210)| 52.5%| Easy
@@ -169,6 +183,8 @@ solutions using C# for leetcode according to tags of questions
169183
67 |Add Binary |31.3% |Easy
170184

171185
## Tree:
186+
|ID| Blog address|PassRate|Level|
187+
|---|-----------|------|-----|
172188
107| [Binary Tree Level Order Traversal II](http://blog.csdn.net/daigualu/article/details/70254459)| 39.0%| Easy
173189
257 |[Binary Tree Paths](http://blog.csdn.net/daigualu/article/details/70340125)| 36.8%| Easy
174190
501 |[Find Mode in Binary Search Tree](http://blog.csdn.net/daigualu/article/details/70341143)| 38.4%| Easy
@@ -186,6 +202,8 @@ solutions using C# for leetcode according to tags of questions
186202
100| [Same Tree](http://blog.csdn.net/daigualu/article/details/70254478)| 45.8%| Easy
187203

188204
## Two Pointers:
205+
|ID| Blog address|
206+
|---|-----------|
189207
345 |[Reverse Vowels of a String](http://blog.csdn.net/daigualu/article/details/69257693)
190208
125 |[Valid Palindrome](http://blog.csdn.net/daigualu/article/details/69265381)
191209
283| [Move Zeroes](http://blog.csdn.net/daigualu/article/details/69329038)

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /