File tree Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 34
34
4 . [ Find First and Last Position of Element in Sorted Array] ( https://leetcode.com/problems/find-first-and-last-position-of-element-in-sorted-array/ )
35
35
5 . [ Jump Game] ( https://leetcode.com/problems/jump-game/ )
36
36
6 . [ Rotate Array] ( https://leetcode.com/problems/rotate-array/ )
37
+
38
+ ### Hard
39
+ 1 . [ Max Value of Equation] ( https://leetcode.com/problems/max-value-of-equation/ )
40
+ 2 . [ First Missing Positive] ( https://leetcode.com/problems/first-missing-positive/ )
Original file line number Diff line number Diff line change 23
23
- [ Fair Candy Swap] ( https://leetcode.com/problems/fair-candy-swap/ )
24
24
- [ Check If N and Its Double Exist] ( https://leetcode.com/problems/check-if-n-and-its-double-exist/ )
25
25
- [ Special Array With X Elements Greater Than or Equal X] ( https://leetcode.com/problems/special-array-with-x-elements-greater-than-or-equal-x/ )
26
+ - [ Binary Search] ( https://leetcode.com/problems/binary-search/ )
26
27
27
28
## Medium
28
29
- [ Find First and Last Position of Element in Sorted Array] ( https://leetcode.com/problems/find-first-and-last-position-of-element-in-sorted-array/ )
48
49
- [ Book allocation] ( https://www.geeksforgeeks.org/allocate-minimum-number-pages/ )
49
50
- [ Split Array Largest Sum] ( https://leetcode.com/problems/split-array-largest-sum/ )
50
51
- [ Find in Mountain Array] ( https://leetcode.com/problems/find-in-mountain-array/ )
52
+ - [ Count smaller number after Self] ( https://leetcode.com/problems/count-of-smaller-numbers-after-self/ )
Original file line number Diff line number Diff line change @@ -213,4 +213,34 @@ Print these patterns using loops:
213
213
8 9 12 13
214
214
10 11
215
215
216
+ 28. *
217
+ * *
218
+ * * *
219
+ * * * *
220
+ * * * * *
221
+ * * * * *
222
+ * * * *
223
+ * * *
224
+ * *
225
+ *
226
+
227
+ 29,
228
+ * *
229
+ ** **
230
+ *** ***
231
+ **** ****
232
+ **********
233
+ **********
234
+ **** ****
235
+ *** ***
236
+ ** **
237
+ * *
238
+
239
+ 30. 1
240
+ 2 1 2
241
+ 3 2 1 2 3
242
+ 4 3 2 1 2 3 4
243
+ 5 4 3 2 1 2 3 4 5
244
+
245
+
216
246
```
You can’t perform that action at this time.
0 commit comments