You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,15 +132,20 @@ This is a repo to store my leetcode solutions but I went a bit Schizo with it an
132
132
| 167. Two Sum II Input Array Is Sorted |[🔗](https://leetcode.romitsagu.com/solutions/167/)|||
133
133
| 169. Majority Element |[🔗](https://leetcode.romitsagu.com/solutions/169/)|| Array, Hash Table, Divide and Conquer, Sorting, Counting |
134
134
| 179. Largest Number |[🔗](https://leetcode.romitsagu.com/solutions/179/)|| Array, String, Greedy, Sorting |
135
+
| 187. Repeated Dna Sequences |[🔗](https://leetcode.romitsagu.com/solutions/187/)|| Hash Table, String, Bit Manipulation, Sliding Window, Rolling Hash, Hash Function |
136
+
| 190. Reverse Bits |[🔗](https://leetcode.romitsagu.com/solutions/190/)|| Divide and Conquer, Bit Manipulation |
137
+
| 191. Number Of 1 Bits |[🔗](https://leetcode.romitsagu.com/solutions/191/)|| Divide and Conquer, Bit Manipulation |
135
138
| 198. House Robber |[🔗](https://leetcode.romitsagu.com/solutions/198/)|| Array, Dynamic Programming |
136
139
| 200. Number Of Islands |[🔗](https://leetcode.romitsagu.com/solutions/200/)|| Array, Depth-First Search, Breadth-First Search, Union Find, Matrix |
140
+
| 201. Bitwise And Of Numbers Range |[🔗](https://leetcode.romitsagu.com/solutions/201/)|| Bit Manipulation |
| 222. Count Complete Tree Nodes |[🔗](https://leetcode.romitsagu.com/solutions/222/)|| Binary Search, Bit Manipulation, Tree, Binary Tree |
141
145
| 231. Power Of Two |[🔗](https://leetcode.romitsagu.com/solutions/231/)|| Math, Bit Manipulation, Recursion |
142
146
| 237. Delete Node In A Linked List |[🔗](https://leetcode.romitsagu.com/solutions/237/)|| Linked List |
143
147
| 240. Search A 2d Matrix II |[🔗](https://leetcode.romitsagu.com/solutions/240/)|| Array, Binary Search, Divide and Conquer, Matrix |
148
+
| 260. Single Number III |[🔗](https://leetcode.romitsagu.com/solutions/260/)|| Array, Bit Manipulation |
144
149
| 268. Missing Number |[🔗](https://leetcode.romitsagu.com/solutions/268/)|| Array, Hash Table, Math, Binary Search, Bit Manipulation, Sorting |
145
150
| 275. H Index II |[🔗](https://leetcode.romitsagu.com/solutions/275/)|| Array, Binary Search |
146
151
| 278. First Bad Version |[🔗](https://leetcode.romitsagu.com/solutions/278/)|| Binary Search, Interactive |
@@ -150,13 +155,16 @@ This is a repo to store my leetcode solutions but I went a bit Schizo with it an
| 326. Power Of Three |[🔗](https://leetcode.romitsagu.com/solutions/326/)|| Math, Recursion |
152
157
| 327. Count Of Range Sum |[🔗](https://leetcode.romitsagu.com/solutions/327/)|| Array, Binary Search, Divide and Conquer, Binary Indexed Tree, Segment Tree, Merge Sort, Ordered Set |
158
+
| 338. Counting Bits |[🔗](https://leetcode.romitsagu.com/solutions/338/)|| Dynamic Programming, Bit Manipulation |
153
159
| 342. Power Of Four |[🔗](https://leetcode.romitsagu.com/solutions/342/)|| Math, Bit Manipulation, Recursion |
154
160
| 349. Intersection Of Two Arrays |[🔗](https://leetcode.romitsagu.com/solutions/349/)|| Array, Hash Table, Two Pointers, Binary Search, Sorting |
155
161
| 350. Intersection Of Two Arrays II |[🔗](https://leetcode.romitsagu.com/solutions/350/)|| Array, Hash Table, Two Pointers, Binary Search, Sorting |
156
162
| 352. Data Stream As Disjoint Intervals |[🔗](https://leetcode.romitsagu.com/solutions/352/)|| Binary Search, Design, Ordered Set |
| 363. Max Sum Of Rectangle No Larger Than K |[🔗](https://leetcode.romitsagu.com/solutions/363/)|| Array, Binary Search, Matrix, Prefix Sum, Ordered Set |
| 371. Sum Of Two Integers |[🔗](https://leetcode.romitsagu.com/solutions/371/)|| Math, Bit Manipulation |
167
+
| 389. Find The Difference |[🔗](https://leetcode.romitsagu.com/solutions/389/)|| Hash Table, String, Bit Manipulation, Sorting |
Copy file name to clipboardExpand all lines: Site_README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,15 +132,20 @@ This is a repo to store my leetcode solutions but I went a bit Schizo with it an
132
132
| 167. Two Sum II Input Array Is Sorted |[🔗](https://leetcode.romitsagu.com/solutions/167/)|||
133
133
| 169. Majority Element |[🔗](https://leetcode.romitsagu.com/solutions/169/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Array, Hash Table, Divide and Conquer, Sorting, Counting |
134
134
| 179. Largest Number |[🔗](https://leetcode.romitsagu.com/solutions/179/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Array, String, Greedy, Sorting |
135
+
| 187. Repeated Dna Sequences |[🔗](https://leetcode.romitsagu.com/solutions/187/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Hash Table, String, Bit Manipulation, Sliding Window, Rolling Hash, Hash Function |
136
+
| 190. Reverse Bits |[🔗](https://leetcode.romitsagu.com/solutions/190/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Divide and Conquer, Bit Manipulation |
137
+
| 191. Number Of 1 Bits |[🔗](https://leetcode.romitsagu.com/solutions/191/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Divide and Conquer, Bit Manipulation |
| 200. Number Of Islands |[🔗](https://leetcode.romitsagu.com/solutions/200/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Array, Depth-First Search, Breadth-First Search, Union Find, Matrix |
140
+
| 201. Bitwise And Of Numbers Range |[🔗](https://leetcode.romitsagu.com/solutions/201/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Bit Manipulation |
| 222. Count Complete Tree Nodes |[🔗](https://leetcode.romitsagu.com/solutions/222/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Binary Search, Bit Manipulation, Tree, Binary Tree |
141
145
| 231. Power Of Two |[🔗](https://leetcode.romitsagu.com/solutions/231/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Math, Bit Manipulation, Recursion |
142
146
| 237. Delete Node In A Linked List |[🔗](https://leetcode.romitsagu.com/solutions/237/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Linked List |
143
147
| 240. Search A 2d Matrix II |[🔗](https://leetcode.romitsagu.com/solutions/240/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Array, Binary Search, Divide and Conquer, Matrix |
148
+
| 260. Single Number III |[🔗](https://leetcode.romitsagu.com/solutions/260/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Array, Bit Manipulation |
144
149
| 268. Missing Number |[🔗](https://leetcode.romitsagu.com/solutions/268/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Array, Hash Table, Math, Binary Search, Bit Manipulation, Sorting |
145
150
| 275. H Index II |[🔗](https://leetcode.romitsagu.com/solutions/275/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Array, Binary Search |
146
151
| 278. First Bad Version |[🔗](https://leetcode.romitsagu.com/solutions/278/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Binary Search, Interactive |
@@ -150,13 +155,16 @@ This is a repo to store my leetcode solutions but I went a bit Schizo with it an
| 326. Power Of Three |[🔗](https://leetcode.romitsagu.com/solutions/326/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Math, Recursion |
152
157
| 327. Count Of Range Sum |[🔗](https://leetcode.romitsagu.com/solutions/327/)| <spanstyle="background-color:#ffffff1a; color:#f8615c; padding:2px6px; border-radius:6px;">Hard</span> | Array, Binary Search, Divide and Conquer, Binary Indexed Tree, Segment Tree, Merge Sort, Ordered Set |
| 342. Power Of Four |[🔗](https://leetcode.romitsagu.com/solutions/342/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Math, Bit Manipulation, Recursion |
154
160
| 349. Intersection Of Two Arrays |[🔗](https://leetcode.romitsagu.com/solutions/349/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Array, Hash Table, Two Pointers, Binary Search, Sorting |
155
161
| 350. Intersection Of Two Arrays II |[🔗](https://leetcode.romitsagu.com/solutions/350/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Array, Hash Table, Two Pointers, Binary Search, Sorting |
156
162
| 352. Data Stream As Disjoint Intervals |[🔗](https://leetcode.romitsagu.com/solutions/352/)| <spanstyle="background-color:#ffffff1a; color:#f8615c; padding:2px6px; border-radius:6px;">Hard</span> | Binary Search, Design, Ordered Set |
| 363. Max Sum Of Rectangle No Larger Than K |[🔗](https://leetcode.romitsagu.com/solutions/363/)| <spanstyle="background-color:#ffffff1a; color:#f8615c; padding:2px6px; border-radius:6px;">Hard</span> | Array, Binary Search, Matrix, Prefix Sum, Ordered Set |
| 371. Sum Of Two Integers |[🔗](https://leetcode.romitsagu.com/solutions/371/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Math, Bit Manipulation |
167
+
| 389. Find The Difference |[🔗](https://leetcode.romitsagu.com/solutions/389/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Hash Table, String, Bit Manipulation, Sorting |
0 commit comments