-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstriver_sde_sheet_problems.json
More file actions
3313 lines (3313 loc) · 100 KB
/
striver_sde_sheet_problems.json
File metadata and controls
3313 lines (3313 loc) · 100 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"number": 1,
"category": "Unknown",
"title": "DSA Cracker",
"title_slug": "reverse-string",
"raw_line": "450 DSA Cracker"
},
{
"number": 2,
"category": "Unknown",
"title": "Reverse the array (",
"title_slug": null,
"raw_line": "1 Reverse the array (https://www.geeksforgeeks.org/write-a-program-to-reverse-"
},
{
"number": 3,
"category": "Unknown",
"title": "Find the maximum and minimum element in an array",
"title_slug": null,
"raw_line": "2 Find the maximum and minimum element in an array"
},
{
"number": 4,
"category": "Unknown",
"title": "Find the \"Kth\" max and min element of an array",
"title_slug": null,
"raw_line": "3 Find the \"Kth\" max and min element of an array"
},
{
"number": 5,
"category": "Unknown",
"title": "Given an array which consists of only 0, 1 and 2. Sort the array without using any",
"title_slug": null,
"raw_line": "4 Given an array which consists of only 0, 1 and 2. Sort the array without using any"
},
{
"number": 6,
"category": "Unknown",
"title": "s-and-2s/0)",
"title_slug": null,
"raw_line": "1s-and-2s/0)"
},
{
"number": 7,
"category": "Unknown",
"title": "Move all the negative elements to one side of the array",
"title_slug": null,
"raw_line": "5 Move all the negative elements to one side of the array"
},
{
"number": 8,
"category": "Unknown",
"title": "Find the Union and Intersection of the two sorted arrays.",
"title_slug": null,
"raw_line": "6 Find the Union and Intersection of the two sorted arrays."
},
{
"number": 9,
"category": "Unknown",
"title": "Write a program to cyclically rotate an array by one.",
"title_slug": "count-and-say",
"raw_line": "7 Write a program to cyclically rotate an array by one."
},
{
"number": 10,
"category": "Unknown",
"title": "find Largest sum contiguous Subarray",
"title_slug": "flood-fill",
"raw_line": "8 find Largest sum contiguous Subarray [V. IMP]"
},
{
"number": 11,
"category": "Unknown",
"title": "Minimise the maximum difference between heights",
"title_slug": "reorganize-string",
"raw_line": "9 Minimise the maximum difference between heights [V.IMP]"
},
{
"number": 12,
"category": "Unknown",
"title": "Minimum no. of Jumps to reach end of an array",
"title_slug": null,
"raw_line": "10 Minimum no. of Jumps to reach end of an array"
},
{
"number": 13,
"category": "Unknown",
"title": "find duplicate in an array of N+1 Integers (",
"title_slug": "word-ladder",
"raw_line": "11 find duplicate in an array of N+1 Integers (https://leetcode.com/problems/find-the-"
},
{
"number": 14,
"category": "Unknown",
"title": "Merge 2 sorted arrays without using Extra space.",
"title_slug": null,
"raw_line": "12 Merge 2 sorted arrays without using Extra space."
},
{
"number": 15,
"category": "Unknown",
"title": "Kadane's Algo",
"title_slug": "merge-intervals",
"raw_line": "13 Kadane's Algo [V.V.V.V.V IMP]"
},
{
"number": 16,
"category": "Unknown",
"title": "Merge Intervals (",
"title_slug": "merge-intervals",
"raw_line": "14 Merge Intervals (https://leetcode.com/problems/merge-intervals/)"
},
{
"number": 17,
"category": "Unknown",
"title": "Next Permutation (",
"title_slug": "next-permutation",
"raw_line": "15 Next Permutation (https://leetcode.com/problems/next-permutation/)"
},
{
"number": 18,
"category": "Unknown",
"title": "Count Inversion (",
"title_slug": null,
"raw_line": "16 Count Inversion (https://practice.geeksforgeeks.org/problems/inversion-of-"
},
{
"number": 19,
"category": "Unknown",
"title": "Best time to buy and Sell stock (",
"title_slug": "best-time-to-buy-and-sell-stock",
"raw_line": "17 Best time to buy and Sell stock (https://leetcode.com/problems/best-time-to-buy-"
},
{
"number": 20,
"category": "Unknown",
"title": "find all pairs on integer array whose sum is equal to given number",
"title_slug": null,
"raw_line": "18 find all pairs on integer array whose sum is equal to given number"
},
{
"number": 21,
"category": "Unknown",
"title": "find common elements In 3 sorted arrays",
"title_slug": null,
"raw_line": "19 find common elements In 3 sorted arrays"
},
{
"number": 22,
"category": "Unknown",
"title": "Rearrange the array in alternating positive and negative items with O extra space",
"title_slug": null,
"raw_line": "20 Rearrange the array in alternating positive and negative items with O(1) extra space"
},
{
"number": 23,
"category": "Unknown",
"title": "Find if there is any subarray with sum equal to 0",
"title_slug": null,
"raw_line": "21 Find if there is any subarray with sum equal to 0"
},
{
"number": 24,
"category": "Unknown",
"title": "Find factorial of a large number",
"title_slug": null,
"raw_line": "22 Find factorial of a large number"
},
{
"number": 25,
"category": "Unknown",
"title": "find maximum product subarray",
"title_slug": null,
"raw_line": "23 find maximum product subarray"
},
{
"number": 26,
"category": "Unknown",
"title": "Find longest consecutive subsequence",
"title_slug": null,
"raw_line": "24 Find longest consecutive subsequence"
},
{
"number": 27,
"category": "Unknown",
"title": "Given an array of size n and a number k, find all elements that appear more than \"",
"title_slug": "majority-element-ii",
"raw_line": "25 Given an array of size n and a number k, find all elements that appear more than \""
},
{
"number": 28,
"category": "Unknown",
"title": "Maximum profit by buying and selling a share atmost twice",
"title_slug": null,
"raw_line": "26 Maximum profit by buying and selling a share atmost twice"
},
{
"number": 29,
"category": "Unknown",
"title": "Find whether an array is a subset of another array ",
"title_slug": "longest-common-prefix",
"raw_line": "27 Find whether an array is a subset of another array "
},
{
"number": 30,
"category": "Unknown",
"title": "Find the triplet that sum to a given value",
"title_slug": null,
"raw_line": "28 Find the triplet that sum to a given value"
},
{
"number": 31,
"category": "Unknown",
"title": "Trapping Rain water problem",
"title_slug": null,
"raw_line": "29 Trapping Rain water problem"
},
{
"number": 32,
"category": "Unknown",
"title": "Chocolate Distribution problem",
"title_slug": null,
"raw_line": "30 Chocolate Distribution problem"
},
{
"number": 33,
"category": "Unknown",
"title": "Smallest Subarray with sum greater than a given value",
"title_slug": null,
"raw_line": "31 Smallest Subarray with sum greater than a given value"
},
{
"number": 34,
"category": "Unknown",
"title": "Three way partitioning of an array around a given value",
"title_slug": null,
"raw_line": "32 Three way partitioning of an array around a given value"
},
{
"number": 35,
"category": "Unknown",
"title": "Minimum swaps required bring elements less equal K together",
"title_slug": null,
"raw_line": "33 Minimum swaps required bring elements less equal K together"
},
{
"number": 36,
"category": "Unknown",
"title": "Minimum no. of operations required to make an array palindrome",
"title_slug": null,
"raw_line": "34 Minimum no. of operations required to make an array palindrome"
},
{
"number": 37,
"category": "Unknown",
"title": "Median of 2 sorted arrays of equal size",
"title_slug": null,
"raw_line": "35 Median of 2 sorted arrays of equal size"
},
{
"number": 38,
"category": "Unknown",
"title": "Median of 2 sorted arrays of different size (",
"title_slug": null,
"raw_line": "36 Median of 2 sorted arrays of different size (https://www.geeksforgeeks.org/median-"
},
{
"number": 39,
"category": "Unknown",
"title": "DSA Cracker",
"title_slug": "reverse-string",
"raw_line": "450 DSA Cracker"
},
{
"number": 40,
"category": "Unknown",
"title": "Rat in a maze Problem (",
"title_slug": null,
"raw_line": "1 Rat in a maze Problem (https://practice.geeksforgeeks.org/problems/rat-in-a-"
},
{
"number": 41,
"category": "Unknown",
"title": "Printing all solutions in N-Queen Problem (",
"title_slug": null,
"raw_line": "2 Printing all solutions in N-Queen Problem (https://www.geeksforgeeks.org/printing-"
},
{
"number": 42,
"category": "Unknown",
"title": "Word Break Problem using Backtracking",
"title_slug": null,
"raw_line": "3 Word Break Problem using Backtracking"
},
{
"number": 43,
"category": "Unknown",
"title": "Remove Invalid Parentheses (",
"title_slug": "remove-invalid-parentheses",
"raw_line": "4 Remove Invalid Parentheses (https://leetcode.com/problems/remove-invalid-"
},
{
"number": 44,
"category": "Unknown",
"title": "Sudoku Solver (",
"title_slug": null,
"raw_line": "5 Sudoku Solver (https://practice.geeksforgeeks.org/problems/solve-the-sudoku/0)"
},
{
"number": 45,
"category": "Unknown",
"title": "m Coloring Problem (",
"title_slug": null,
"raw_line": "6 m Coloring Problem (https://practice.geeksforgeeks.org/problems/m-coloring-"
},
{
"number": 46,
"category": "Unknown",
"title": "Print all palindromic partitions of a string (",
"title_slug": "count-and-say",
"raw_line": "7 Print all palindromic partitions of a string (https://www.geeksforgeeks.org/given-a-"
},
{
"number": 47,
"category": "Unknown",
"title": "Subset Sum Problem (",
"title_slug": "flood-fill",
"raw_line": "8 Subset Sum Problem (https://practice.geeksforgeeks.org/problems/subset-sum-"
},
{
"number": 48,
"category": "Unknown",
"title": "The Knight’s tour problem (",
"title_slug": "reorganize-string",
"raw_line": "9 The Knight’s tour problem (https://www.geeksforgeeks.org/the-knights-tour-"
},
{
"number": 49,
"category": "Unknown",
"title": "Tug of War (",
"title_slug": null,
"raw_line": "10 Tug of War (https://www.geeksforgeeks.org/tug-of-war/)"
},
{
"number": 50,
"category": "Unknown",
"title": "Find shortest safe route in a path with landmines",
"title_slug": "word-ladder",
"raw_line": "11 Find shortest safe route in a path with landmines"
},
{
"number": 51,
"category": "Unknown",
"title": "Combinational Sum (",
"title_slug": null,
"raw_line": "12 Combinational Sum (https://practice.geeksforgeeks.org/problems/combination-"
},
{
"number": 52,
"category": "Unknown",
"title": "Find Maximum number possible by doing at-most K swaps",
"title_slug": null,
"raw_line": "13 Find Maximum number possible by doing at-most K swaps"
},
{
"number": 53,
"category": "Unknown",
"title": "Print all permutations of a string",
"title_slug": "merge-intervals",
"raw_line": "14 Print all permutations of a string"
},
{
"number": 54,
"category": "Unknown",
"title": "Find if there is a path of more than k length from a source",
"title_slug": null,
"raw_line": "15 Find if there is a path of more than k length from a source"
},
{
"number": 55,
"category": "Unknown",
"title": "Longest Possible Route in a Matrix with Hurdles",
"title_slug": null,
"raw_line": "16 Longest Possible Route in a Matrix with Hurdles"
},
{
"number": 56,
"category": "Unknown",
"title": "Print all possible paths from top left to bottom right of a mXn matrix",
"title_slug": null,
"raw_line": "17 Print all possible paths from top left to bottom right of a mXn matrix"
},
{
"number": 57,
"category": "Unknown",
"title": "Partition of a set intoK subsets with equal sum",
"title_slug": null,
"raw_line": "18 Partition of a set intoK subsets with equal sum"
},
{
"number": 58,
"category": "Unknown",
"title": "Find the K-th Permutation Sequence of first N natural numbers",
"title_slug": null,
"raw_line": "19 Find the K-th Permutation Sequence of first N natural numbers"
},
{
"number": 59,
"category": "Unknown",
"title": "Implement Stack from Scratch",
"title_slug": null,
"raw_line": "20 Implement Stack from Scratch"
},
{
"number": 60,
"category": "Unknown",
"title": "Implement Queue from Scratch (",
"title_slug": null,
"raw_line": "21 Implement Queue from Scratch (https://www.geeksforgeeks.org/queue-set-"
},
{
"number": 61,
"category": "Unknown",
"title": "introduction-and-array-implementation/)",
"title_slug": null,
"raw_line": "1introduction-and-array-implementation/)"
},
{
"number": 62,
"category": "Unknown",
"title": "Implement 2 stack in an array",
"title_slug": null,
"raw_line": "22 Implement 2 stack in an array"
},
{
"number": 63,
"category": "Unknown",
"title": "DSA Cracker",
"title_slug": "reverse-string",
"raw_line": "450 DSA Cracker"
},
{
"number": 64,
"category": "Unknown",
"title": "level order traversal (",
"title_slug": null,
"raw_line": "1 level order traversal (https://practice.geeksforgeeks.org/problems/level-order-"
},
{
"number": 65,
"category": "Unknown",
"title": "Reverse Level Order traversal",
"title_slug": null,
"raw_line": "2 Reverse Level Order traversal"
},
{
"number": 66,
"category": "Unknown",
"title": "Height of a tree (",
"title_slug": null,
"raw_line": "3 Height of a tree (https://practice.geeksforgeeks.org/problems/height-of-binary-"
},
{
"number": 67,
"category": "Unknown",
"title": "Diameter of a tree (",
"title_slug": null,
"raw_line": "4 Diameter of a tree (https://practice.geeksforgeeks.org/problems/diameter-of-"
},
{
"number": 68,
"category": "Unknown",
"title": "Mirror of a tree (",
"title_slug": null,
"raw_line": "5 Mirror of a tree (https://www.geeksforgeeks.org/create-a-mirror-tree-from-the-"
},
{
"number": 69,
"category": "Unknown",
"title": "Inorder Traversal of a tree both using recursion and Iteration",
"title_slug": null,
"raw_line": "6 Inorder Traversal of a tree both using recursion and Iteration"
},
{
"number": 70,
"category": "Unknown",
"title": "Preorder Traversal of a tree both using recursion and Iteration",
"title_slug": "count-and-say",
"raw_line": "7 Preorder Traversal of a tree both using recursion and Iteration"
},
{
"number": 71,
"category": "Unknown",
"title": "Postorder Traversal of a tree both using recursion and Iteration",
"title_slug": "flood-fill",
"raw_line": "8 Postorder Traversal of a tree both using recursion and Iteration"
},
{
"number": 72,
"category": "Unknown",
"title": "Left View of a tree (",
"title_slug": "reorganize-string",
"raw_line": "9 Left View of a tree (https://practice.geeksforgeeks.org/problems/left-view-of-"
},
{
"number": 73,
"category": "Unknown",
"title": "Right View of Tree (",
"title_slug": null,
"raw_line": "10 Right View of Tree (https://practice.geeksforgeeks.org/problems/right-view-of-"
},
{
"number": 74,
"category": "Unknown",
"title": "Top View of a tree (",
"title_slug": "word-ladder",
"raw_line": "11 Top View of a tree (https://practice.geeksforgeeks.org/problems/top-view-of-"
},
{
"number": 75,
"category": "Unknown",
"title": "Bottom View of a tree (",
"title_slug": null,
"raw_line": "12 Bottom View of a tree (https://practice.geeksforgeeks.org/problems/bottom-view-"
},
{
"number": 76,
"category": "Unknown",
"title": "Zig-Zag traversal of a binary tree",
"title_slug": null,
"raw_line": "13 Zig-Zag traversal of a binary tree"
},
{
"number": 77,
"category": "Unknown",
"title": "Check if a tree is balanced or not",
"title_slug": "merge-intervals",
"raw_line": "14 Check if a tree is balanced or not"
},
{
"number": 78,
"category": "Unknown",
"title": "Diagnol Traversal of a Binary tree (",
"title_slug": null,
"raw_line": "15 Diagnol Traversal of a Binary tree (https://www.geeksforgeeks.org/diagonal-"
},
{
"number": 79,
"category": "Unknown",
"title": "Boundary traversal of a Binary tree",
"title_slug": null,
"raw_line": "16 Boundary traversal of a Binary tree"
},
{
"number": 80,
"category": "Unknown",
"title": "Construct Binary Tree from String with Bracket Representation",
"title_slug": null,
"raw_line": "17 Construct Binary Tree from String with Bracket Representation"
},
{
"number": 81,
"category": "Unknown",
"title": "Convert Binary tree into Doubly Linked List",
"title_slug": null,
"raw_line": "18 Convert Binary tree into Doubly Linked List"
},
{
"number": 82,
"category": "Unknown",
"title": "Convert Binary tree into Sum tree",
"title_slug": null,
"raw_line": "19 Convert Binary tree into Sum tree"
},
{
"number": 83,
"category": "Unknown",
"title": "Construct Binary tree from Inorder and preorder traversal",
"title_slug": null,
"raw_line": "20 Construct Binary tree from Inorder and preorder traversal"
},
{
"number": 84,
"category": "Unknown",
"title": "Find minimum swaps required to convert a Binary tree into BST",
"title_slug": null,
"raw_line": "21 Find minimum swaps required to convert a Binary tree into BST"
},
{
"number": 85,
"category": "Unknown",
"title": "Check if Binary tree is Sum tree or not",
"title_slug": null,
"raw_line": "22 Check if Binary tree is Sum tree or not"
},
{
"number": 86,
"category": "Unknown",
"title": "Check if all leaf nodes are at same level or not",
"title_slug": null,
"raw_line": "23 Check if all leaf nodes are at same level or not"
},
{
"number": 87,
"category": "Unknown",
"title": "Check if a Binary Tree contains duplicate subtrees of size 2 or more",
"title_slug": null,
"raw_line": "24 Check if a Binary Tree contains duplicate subtrees of size 2 or more [ IMP ]"
},
{
"number": 88,
"category": "Unknown",
"title": "Check if 2 trees are mirror or not",
"title_slug": "majority-element-ii",
"raw_line": "25 Check if 2 trees are mirror or not"
},
{
"number": 89,
"category": "Unknown",
"title": "Sum of Nodes on the Longest path from root to leaf node",
"title_slug": null,
"raw_line": "26 Sum of Nodes on the Longest path from root to leaf node"
},
{
"number": 90,
"category": "Unknown",
"title": "Check if given graph is tree or not. (",
"title_slug": "longest-common-prefix",
"raw_line": "27 Check if given graph is tree or not. [ IMP ] (https://www.geeksforgeeks.org/check-"
},
{
"number": 91,
"category": "Unknown",
"title": "Find Largest subtree sum in a tree (",
"title_slug": null,
"raw_line": "28 Find Largest subtree sum in a tree (https://www.geeksforgeeks.org/find-largest-"
},
{
"number": 92,
"category": "Unknown",
"title": "Maximum Sum of nodes in Binary tree such that no two are adjacent",
"title_slug": null,
"raw_line": "29 Maximum Sum of nodes in Binary tree such that no two are adjacent"
},
{
"number": 93,
"category": "Unknown",
"title": "Print all \"K\" Sum paths in a Binary tree (",
"title_slug": null,
"raw_line": "30 Print all \"K\" Sum paths in a Binary tree (https://www.geeksforgeeks.org/print-k-"
},
{
"number": 94,
"category": "Unknown",
"title": "Find LCA in a Binary tree (",
"title_slug": null,
"raw_line": "31 Find LCA in a Binary tree (https://practice.geeksforgeeks.org/problems/lowest-"
},
{
"number": 95,
"category": "Unknown",
"title": "Find distance between 2 nodes in a Binary tree",
"title_slug": null,
"raw_line": "32 Find distance between 2 nodes in a Binary tree"
},
{
"number": 96,
"category": "Unknown",
"title": "Kth Ancestor of node in a Binary tree (",
"title_slug": null,
"raw_line": "33 Kth Ancestor of node in a Binary tree (https://www.geeksforgeeks.org/kth-"
},
{
"number": 97,
"category": "Unknown",
"title": "Find all Duplicate subtrees in a Binary tree",
"title_slug": null,
"raw_line": "34 Find all Duplicate subtrees in a Binary tree [ IMP ]"
},
{
"number": 98,
"category": "Unknown",
"title": "Tree Isomorphism Problem (",
"title_slug": null,
"raw_line": "35 Tree Isomorphism Problem (https://practice.geeksforgeeks.org/problems/check-"
},
{
"number": 99,
"category": "Unknown",
"title": "DSA Cracker",
"title_slug": "reverse-string",
"raw_line": "450 DSA Cracker"
},
{
"number": 100,
"category": "Unknown",
"title": "Count set bits in an integer (",
"title_slug": null,
"raw_line": "1 Count set bits in an integer (https://practice.geeksforgeeks.org/problems/set-"
},
{
"number": 101,
"category": "Unknown",
"title": "Find the two non-repeating elements in an array of repeating elements",
"title_slug": null,
"raw_line": "2 Find the two non-repeating elements in an array of repeating elements"
},
{
"number": 102,
"category": "Unknown",
"title": "Count number of bits to be flipped to convert A to B",
"title_slug": null,
"raw_line": "3 Count number of bits to be flipped to convert A to B"
},
{
"number": 103,
"category": "Unknown",
"title": "Count total set bits in all numbers from 1 to n",
"title_slug": null,
"raw_line": "4 Count total set bits in all numbers from 1 to n"
},
{
"number": 104,
"category": "Unknown",
"title": "Program to find whether a no. is power of two",
"title_slug": null,
"raw_line": "5 Program to find whether a no. is power of two"
},
{
"number": 105,
"category": "Unknown",
"title": "Find position of the only set bit (",
"title_slug": null,
"raw_line": "6 Find position of the only set bit (https://practice.geeksforgeeks.org/problems/find-"
},
{
"number": 106,
"category": "Unknown",
"title": "Copy set bits in a range (",
"title_slug": "count-and-say",
"raw_line": "7 Copy set bits in a range (https://www.geeksforgeeks.org/copy-set-bits-in-a-"
},
{
"number": 107,
"category": "Unknown",
"title": "Divide two integers without using multiplication, division and mod operator",
"title_slug": "flood-fill",
"raw_line": "8 Divide two integers without using multiplication, division and mod operator"
},
{
"number": 108,
"category": "Unknown",
"title": "Calculate square of a number without using *, / and pow",
"title_slug": "reorganize-string",
"raw_line": "9 Calculate square of a number without using *, / and pow()"
},
{
"number": 109,
"category": "Unknown",
"title": "Power Set (",
"title_slug": null,
"raw_line": "10 Power Set (https://practice.geeksforgeeks.org/problems/power-set4302/1)"
},
{
"number": 110,
"category": "Unknown",
"title": "DSA Cracker",
"title_slug": "reverse-string",
"raw_line": "450 DSA Cracker"
},
{
"number": 111,
"category": "Unknown",
"title": "Find a value in a BST (",
"title_slug": null,
"raw_line": "1 Find a value in a BST (https://www.geeksforgeeks.org/binary-search-tree-set-1-"
},
{
"number": 112,
"category": "Unknown",
"title": "Deletion of a node in a BST (",
"title_slug": "delete-node-in-a-bst",
"raw_line": "2 Deletion of a node in a BST (https://leetcode.com/problems/delete-node-in-a-"
},
{
"number": 113,
"category": "Unknown",
"title": "Find min and max value in a BST",
"title_slug": null,
"raw_line": "3 Find min and max value in a BST"
},
{
"number": 114,
"category": "Unknown",
"title": "Find inorder successor and inorder predecessor in a BST",
"title_slug": null,
"raw_line": "4 Find inorder successor and inorder predecessor in a BST"
},
{
"number": 115,
"category": "Unknown",
"title": "Check if a tree is a BST or not (",
"title_slug": null,
"raw_line": "5 Check if a tree is a BST or not (https://practice.geeksforgeeks.org/problems/check-"
},
{
"number": 116,
"category": "Unknown",
"title": "Populate Inorder successor of all nodes",
"title_slug": null,
"raw_line": "6 Populate Inorder successor of all nodes"
},
{
"number": 117,
"category": "Unknown",
"title": "Find LCA of 2 nodes in a BST (",
"title_slug": "count-and-say",
"raw_line": "7 Find LCA of 2 nodes in a BST (https://practice.geeksforgeeks.org/problems/lowest-"
},
{
"number": 118,
"category": "Unknown",
"title": "Construct BST from preorder traversal (",
"title_slug": "flood-fill",
"raw_line": "8 Construct BST from preorder traversal (https://www.geeksforgeeks.org/construct-"
},
{
"number": 119,
"category": "Unknown",
"title": "Convert Binary tree into BST (",
"title_slug": "reorganize-string",
"raw_line": "9 Convert Binary tree into BST (https://practice.geeksforgeeks.org/problems/binary-"
},
{
"number": 120,
"category": "Unknown",
"title": "Convert a normal BST into a Balanced BST",
"title_slug": null,
"raw_line": "10 Convert a normal BST into a Balanced BST"
},
{
"number": 121,
"category": "Unknown",
"title": "Merge two BST (",
"title_slug": "word-ladder",
"raw_line": "11 Merge two BST [ V.V.V>IMP ] (https://www.geeksforgeeks.org/merge-two-"
},
{
"number": 122,
"category": "Unknown",
"title": "Find Kth largest element in a BST",
"title_slug": null,
"raw_line": "12 Find Kth largest element in a BST"
},
{
"number": 123,
"category": "Unknown",
"title": "Find Kth smallest element in a BST",
"title_slug": null,
"raw_line": "13 Find Kth smallest element in a BST"
},
{
"number": 124,
"category": "Unknown",
"title": "Count pairs from 2 BST whose sum is equal to given value \"X\"",
"title_slug": "merge-intervals",
"raw_line": "14 Count pairs from 2 BST whose sum is equal to given value \"X\""
},
{
"number": 125,
"category": "Unknown",
"title": "Find the median of BST in O time and O space",
"title_slug": null,
"raw_line": "15 Find the median of BST in O(n) time and O(1) space"
},
{
"number": 126,
"category": "Unknown",
"title": "Count BST ndoes that lie in a given range",
"title_slug": null,
"raw_line": "16 Count BST ndoes that lie in a given range"
},
{
"number": 127,
"category": "Unknown",
"title": "Replace every element with the least greater element on its right",
"title_slug": null,
"raw_line": "17 Replace every element with the least greater element on its right"
},
{
"number": 128,
"category": "Unknown",
"title": "Given \"n\" appointments, find the conflicting appointments",
"title_slug": null,
"raw_line": "18 Given \"n\" appointments, find the conflicting appointments"
},
{
"number": 129,
"category": "Unknown",
"title": "Check preorder is valid or not",
"title_slug": null,
"raw_line": "19 Check preorder is valid or not"
},
{
"number": 130,
"category": "Unknown",
"title": "Check whether BST contains Dead end",
"title_slug": null,
"raw_line": "20 Check whether BST contains Dead end"
},
{
"number": 131,
"category": "Unknown",
"title": "Largest BST in a Binary Tree",
"title_slug": null,
"raw_line": "21 Largest BST in a Binary Tree [ V.V.V.V.V IMP ]"
},
{
"number": 132,
"category": "Unknown",
"title": "Flatten BST to sorted list (",
"title_slug": null,
"raw_line": "22 Flatten BST to sorted list (https://www.geeksforgeeks.org/flatten-bst-to-sorted-"
},
{
"number": 133,
"category": "Unknown",
"title": "DSA Cracker",
"title_slug": "reverse-string",
"raw_line": "450 DSA Cracker"
},
{
"number": 134,
"category": "Unknown",
"title": "Coin ChangeProblem (",
"title_slug": null,
"raw_line": "1 Coin ChangeProblem (https://practice.geeksforgeeks.org/problems/coin-"
},
{
"number": 135,
"category": "Unknown",
"title": "Knapsack Problem (",
"title_slug": null,
"raw_line": "2 Knapsack Problem (https://practice.geeksforgeeks.org/problems/0-1-knapsack-"
},
{
"number": 136,
"category": "Unknown",
"title": "Binomial CoefficientProblem",
"title_slug": null,
"raw_line": "3 Binomial CoefficientProblem"
},
{
"number": 137,
"category": "Unknown",
"title": "Permutation CoefficientProblem (",
"title_slug": null,
"raw_line": "4 Permutation CoefficientProblem (https://www.geeksforgeeks.org/permutation-"
},
{
"number": 138,
"category": "Unknown",
"title": "Program for nth Catalan Number (",
"title_slug": null,
"raw_line": "5 Program for nth Catalan Number (https://www.geeksforgeeks.org/program-nth-"
},
{
"number": 139,
"category": "Unknown",
"title": "Matrix Chain Multiplication (",
"title_slug": null,
"raw_line": "6 Matrix Chain Multiplication (https://www.geeksforgeeks.org/matrix-chain-"
},
{
"number": 140,
"category": "Unknown",
"title": "Edit Distance (",
"title_slug": "count-and-say",
"raw_line": "7 Edit Distance (https://practice.geeksforgeeks.org/problems/edit-distance3702/1)"
},
{
"number": 141,
"category": "Unknown",
"title": "Subset Sum Problem (",
"title_slug": "flood-fill",
"raw_line": "8 Subset Sum Problem (https://practice.geeksforgeeks.org/problems/subset-sum-"
},
{
"number": 142,
"category": "Unknown",
"title": "Friends Pairing Problem (",
"title_slug": "reorganize-string",
"raw_line": "9 Friends Pairing Problem (https://practice.geeksforgeeks.org/problems/friends-"
},
{
"number": 143,
"category": "Unknown",
"title": "Gold Mine Problem (",
"title_slug": null,