forked from AsishRaju/450-DSA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
450DSA.json
2692 lines (2692 loc) · 108 KB
/
450DSA.json
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
{
"Sheet1": [
{
"Topic:": "Array",
"Problem: ": "Reverse the array",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/write-a-program-to-reverse-an-array-or-string/"
},
{
"Topic:": "Array",
"Problem: ": "Find the maximum and minimum element in an array",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/maximum-and-minimum-in-an-array/"
},
{
"Topic:": "Array",
"Problem: ": "Find the \"Kth\" max and min element of an array ",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/kth-smallest-element/0"
},
{
"Topic:": "Array",
"Problem: ": "Given an array which consists of only 0, 1 and 2. Sort the array without using any sorting algo",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/sort-an-array-of-0s-1s-and-2s/0"
},
{
"Topic:": "Array",
"Problem: ": "Move all the negative elements to one side of the array ",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/move-negative-numbers-beginning-positive-end-constant-extra-space/"
},
{
"Topic:": "Array",
"Problem: ": "Find the Union and Intersection of the two sorted arrays.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/union-of-two-arrays/0"
},
{
"Topic:": "Array",
"Problem: ": "Write a program to cyclically rotate an array by one.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/cyclically-rotate-an-array-by-one/0"
},
{
"Topic:": "Array",
"Problem: ": "find Largest sum contiguous Subarray [V. IMP]",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/kadanes-algorithm/0"
},
{
"Topic:": "Array",
"Problem: ": "Minimise the maximum difference between heights [V.IMP]",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/minimize-the-heights3351/1"
},
{
"Topic:": "Array",
"Problem: ": "Minimum no. of Jumps to reach end of an array",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/minimum-number-of-jumps/0"
},
{
"Topic:": "Array",
"Problem: ": "find duplicate in an array of N+1 Integers",
"Done": "<->",
"URL": "https://leetcode.com/problems/find-the-duplicate-number/"
},
{
"Topic:": "Array",
"Problem: ": "Merge 2 sorted arrays without using Extra space.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/merge-two-sorted-arrays5135/1"
},
{
"Topic:": "Array",
"Problem: ": "Kadane's Algo [V.V.V.V.V IMP]",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/kadanes-algorithm/0"
},
{
"Topic:": "Array",
"Problem: ": "Merge Intervals",
"Done": "<->",
"URL": "https://leetcode.com/problems/merge-intervals/"
},
{
"Topic:": "Array",
"Problem: ": "Next Permutation",
"Done": "<->",
"URL": "https://leetcode.com/problems/next-permutation/"
},
{
"Topic:": "Array",
"Problem: ": "Count Inversion",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/inversion-of-array/0"
},
{
"Topic:": "Array",
"Problem: ": "Best time to buy and Sell stock",
"Done": "<->",
"URL": "https://leetcode.com/problems/best-time-to-buy-and-sell-stock/"
},
{
"Topic:": "Array",
"Problem: ": "find all pairs on integer array whose sum is equal to given number",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/count-pairs-with-given-sum5022/1"
},
{
"Topic:": "Array",
"Problem: ": "find common elements In 3 sorted arrays",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/common-elements1132/1"
},
{
"Topic:": "Array",
"Problem: ": "Rearrange the array in alternating positive and negative items with O(1) extra space",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/rearrange-array-alternating-positive-negative-items-o1-extra-space/"
},
{
"Topic:": "Array",
"Problem: ": "Find if there is any subarray with sum equal to 0",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/subarray-with-0-sum/0"
},
{
"Topic:": "Array",
"Problem: ": "Find factorial of a large number",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/factorials-of-large-numbers/0"
},
{
"Topic:": "Array",
"Problem: ": "find maximum product subarray ",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/maximum-product-subarray3604/1"
},
{
"Topic:": "Array",
"Problem: ": "Find longest coinsecutive subsequence",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/longest-consecutive-subsequence/0"
},
{
"Topic:": "Array",
"Problem: ": "Given an array of size n and a number k, fin all elements that appear more than \" n/k \" times.",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/given-an-array-of-of-size-n-finds-all-the-elements-that-appear-more-than-nk-times/"
},
{
"Topic:": "Array",
"Problem: ": "Maximum profit by buying and selling a share atmost twice",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/maximum-profit-by-buying-and-selling-a-share-at-most-twice/"
},
{
"Topic:": "Array",
"Problem: ": "Find whether an array is a subset of another array",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/array-subset-of-another-array/0"
},
{
"Topic:": "Array",
"Problem: ": "Find the triplet that sum to a given value",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/triplet-sum-in-array/0"
},
{
"Topic:": "Array",
"Problem: ": "Trapping Rain water problem",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/trapping-rain-water/0"
},
{
"Topic:": "Array",
"Problem: ": "Chocolate Distribution problem",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/chocolate-distribution-problem/0"
},
{
"Topic:": "Array",
"Problem: ": "Smallest Subarray with sum greater than a given value",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/smallest-subarray-with-sum-greater-than-x/0"
},
{
"Topic:": "Array",
"Problem: ": "Three way partitioning of an array around a given value",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/three-way-partitioning/1"
},
{
"Topic:": "Array",
"Problem: ": "Minimum swaps required bring elements less equal K together",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/minimum-swaps-required-to-bring-all-elements-less-than-or-equal-to-k-together/0"
},
{
"Topic:": "Array",
"Problem: ": "Minimum no. of operations required to make an array palindrome",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/palindromic-array/0"
},
{
"Topic:": "Array",
"Problem: ": "Median of 2 sorted arrays of equal size",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/find-the-median0527/1"
},
{
"Topic:": "Array",
"Problem: ": "Median of 2 sorted arrays of different size",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/median-of-two-sorted-arrays-of-different-sizes/"
},
{
"Topic:": "Matrix",
"Problem: ": "Spiral traversal on a Matrix",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/spirally-traversing-a-matrix/0"
},
{
"Topic:": "Matrix",
"Problem: ": "Search an element in a matriix",
"Done": "<->",
"URL": "https://leetcode.com/problems/search-a-2d-matrix/"
},
{
"Topic:": "Matrix",
"Problem: ": "Find median in a row wise sorted matrix",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/median-in-a-row-wise-sorted-matrix1527/1"
},
{
"Topic:": "Matrix",
"Problem: ": "Find row with maximum no. of 1's",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/row-with-max-1s0023/1"
},
{
"Topic:": "Matrix",
"Problem: ": "Print elements in sorted order using row-column wise sorted matrix",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/sorted-matrix/0"
},
{
"Topic:": "Matrix",
"Problem: ": "Maximum size rectangle",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/max-rectangle/1"
},
{
"Topic:": "Matrix",
"Problem: ": "Find a specific pair in matrix",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/find-a-specific-pair-in-matrix/"
},
{
"Topic:": "Matrix",
"Problem: ": "Rotate matrix by 90 degrees",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/rotate-a-matrix-by-90-degree-in-clockwise-direction-without-using-any-extra-space/"
},
{
"Topic:": "Matrix",
"Problem: ": "Kth smallest element in a row-cpumn wise sorted matrix",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/kth-element-in-matrix/1"
},
{
"Topic:": "Matrix",
"Problem: ": "Common elements in all rows of a given matrix",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/common-elements-in-all-rows-of-a-given-matrix/"
},
{
"Topic:": "String",
"Problem: ": "Reverse a String",
"Done": "<->",
"URL": "https://leetcode.com/problems/reverse-string/"
},
{
"Topic:": "String",
"Problem: ": "Check whether a String is Palindrome or not",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/palindrome-string0817/1"
},
{
"Topic:": "String",
"Problem: ": "Find Duplicate characters in a string",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/print-all-the-duplicates-in-the-input-string/"
},
{
"Topic:": "String",
"Problem: ": "Why strings are immutable in Java?",
"Done": "<->",
"URL": "<->"
},
{
"Topic:": "String",
"Problem: ": "Write a Code to check whether one string is a rotation of another",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/a-program-to-check-if-strings-are-rotations-of-each-other/"
},
{
"Topic:": "String",
"Problem: ": "Write a Program to check whether a string is a valid shuffle of two strings or not",
"Done": "<->",
"URL": "https://www.programiz.com/java-programming/examples/check-valid-shuffle-of-strings"
},
{
"Topic:": "String",
"Problem: ": "Count and Say problem",
"Done": "<->",
"URL": "https://leetcode.com/problems/count-and-say/"
},
{
"Topic:": "String",
"Problem: ": "Write a program to find the longest Palindrome in a string.[ Longest palindromic Substring]",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/longest-palindrome-in-a-string/0"
},
{
"Topic:": "String",
"Problem: ": "Find Longest Recurring Subsequence in String",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/longest-repeating-subsequence/0"
},
{
"Topic:": "String",
"Problem: ": "Print all Subsequences of a string.",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/print-subsequences-string/"
},
{
"Topic:": "String",
"Problem: ": "Print all the permutations of the given string",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/permutations-of-a-given-string/0"
},
{
"Topic:": "String",
"Problem: ": "Split the Binary string into two substring with equal 0’s and 1’s",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/split-the-binary-string-into-substrings-with-equal-number-of-0s-and-1s/"
},
{
"Topic:": "String",
"Problem: ": "Word Wrap Problem [VERY IMP].",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/word-wrap/0"
},
{
"Topic:": "String",
"Problem: ": "EDIT Distance [Very Imp]",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/edit-distance3702/1"
},
{
"Topic:": "String",
"Problem: ": "Find next greater number with same set of digits. [Very Very IMP]",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/next-permutation/0"
},
{
"Topic:": "String",
"Problem: ": "Balanced Parenthesis problem.[Imp]",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/parenthesis-checker/0"
},
{
"Topic:": "String",
"Problem: ": "Word break Problem[ Very Imp]",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/word-break/0"
},
{
"Topic:": "String",
"Problem: ": "Rabin Karp Algo",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/rabin-karp-algorithm-for-pattern-searching/"
},
{
"Topic:": "String",
"Problem: ": "KMP Algo",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/longest-prefix-suffix2527/1"
},
{
"Topic:": "String",
"Problem: ": "Convert a Sentence into its equivalent mobile numeric keypad sequence.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/convert-a-sentence-into-its-equivalent-mobile-numeric-keypad-sequence0547/1"
},
{
"Topic:": "String",
"Problem: ": "Minimum number of bracket reversals needed to make an expression balanced.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/count-the-reversals/0"
},
{
"Topic:": "String",
"Problem: ": "Count All Palindromic Subsequence in a given String.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/count-palindromic-subsequences/1"
},
{
"Topic:": "String",
"Problem: ": "Count of number of given string in 2D character array",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/count-occurences-of-a-given-word-in-a-2-d-array/1"
},
{
"Topic:": "String",
"Problem: ": "Search a Word in a 2D Grid of characters.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/find-the-string-in-grid/0"
},
{
"Topic:": "String",
"Problem: ": "Boyer Moore Algorithm for Pattern Searching.",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/boyer-moore-algorithm-for-pattern-searching/"
},
{
"Topic:": "String",
"Problem: ": "Converting Roman Numerals to Decimal",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/roman-number-to-integer/0"
},
{
"Topic:": "String",
"Problem: ": "Longest Common Prefix",
"Done": "<->",
"URL": "https://leetcode.com/problems/longest-common-prefix/"
},
{
"Topic:": "String",
"Problem: ": "Number of flips to make binary string alternate",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/min-number-of-flips/0"
},
{
"Topic:": "String",
"Problem: ": "Find the first repeated word in string.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/second-most-repeated-string-in-a-sequence/0"
},
{
"Topic:": "String",
"Problem: ": "Minimum number of swaps for bracket balancing.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/minimum-swaps-for-bracket-balancing/0"
},
{
"Topic:": "String",
"Problem: ": "Find the longest common subsequence between two strings.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/longest-common-subsequence/0"
},
{
"Topic:": "String",
"Problem: ": "Program to generate all possible valid IP addresses from given string.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/generate-ip-addresses/1"
},
{
"Topic:": "String",
"Problem: ": "Write a program to find the smallest window that contains all characters of string itself.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/smallest-distant-window/0"
},
{
"Topic:": "String",
"Problem: ": "Rearrange characters in a string such that no two adjacent are same",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/rearrange-characters/0"
},
{
"Topic:": "String",
"Problem: ": "Minimum characters to be added at front to make string palindrome",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/minimum-characters-added-front-make-string-palindrome/"
},
{
"Topic:": "String",
"Problem: ": "Given a sequence of words, print all anagrams together",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/k-anagrams-1/0"
},
{
"Topic:": "String",
"Problem: ": "Find the smallest window in a string containing all characters of another string",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/smallest-window-in-a-string-containing-all-the-characters-of-another-string/0"
},
{
"Topic:": "String",
"Problem: ": "Recursively remove all adjacent duplicates",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/consecutive-elements/0"
},
{
"Topic:": "String",
"Problem: ": "String matching where one string contains wildcard characters",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/wildcard-string-matching/0"
},
{
"Topic:": "String",
"Problem: ": "Function to find Number of customers who could not get a computer",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/function-to-find-number-of-customers-who-could-not-get-a-computer/"
},
{
"Topic:": "String",
"Problem: ": "Transform One String to Another using Minimum Number of Given Operation",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/transform-one-string-to-another-using-minimum-number-of-given-operation/"
},
{
"Topic:": "String",
"Problem: ": "Check if two given strings are isomorphic to each other",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/isomorphic-strings/0"
},
{
"Topic:": "String",
"Problem: ": "Recursively print all sentences that can be formed from list of word lists",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/recursively-print-all-sentences-that-can-be-formed-from-list-of-word-lists/"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Find first and last positions of an element in a sorted array",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/first-and-last-occurrences-of-x/0"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Find a Fixed Point (Value equal to index) in a given array",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/value-equal-to-index-value1330/1"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Search in a rotated sorted array",
"Done": "<->",
"URL": "https://leetcode.com/problems/search-in-rotated-sorted-array/"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "square root of an integer",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/square-root/1"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Maximum and minimum of an array using minimum number of comparisons",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/middle-of-three2926/1"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Optimum location of point to minimize total distance",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/optimum-location-point-minimize-total-distance/"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Find the repeating and the missing",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/find-missing-and-repeating2512/1"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "find majority element",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/majority-element/0"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Searching in an array where adjacent differ by at most k",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/searching-in-an-array-where-adjacent-differ-by-at-most-k0456/1"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "find a pair with a given difference",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/find-pair-given-difference/0"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "find four elements that sum to a given value",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/find-all-four-sum-numbers/0"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "maximum sum such that no 2 elements are adjacent",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/stickler-theif/0"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Count triplet with sum smaller than a given value",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/count-triplets-with-sum-smaller-than-x5549/1"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "merge 2 sorted arrays",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/merge-two-sorted-arrays5135/1"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "print all subarrays with 0 sum",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/zero-sum-subarrays/0"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Product array Puzzle",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/product-array-puzzle/0"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Sort array according to count of set bits",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/sort-by-set-bit-count/0"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "minimum no. of swaps required to sort the array",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/minimum-swaps/1"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Bishu and Soldiers",
"Done": "<->",
"URL": "https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/bishu-and-soldiers/"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Rasta and Kheshtak",
"Done": "<->",
"URL": "https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/rasta-and-kheshtak/"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Kth smallest number again",
"Done": "<->",
"URL": "https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/kth-smallest-number-again-2/"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Find pivot element in a sorted array",
"Done": "<->",
"URL": "http://theoryofprogramming.com/2017/12/16/find-pivot-element-sorted-rotated-array/"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "K-th Element of Two Sorted Arrays",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/k-th-element-of-two-sorted-array/0"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Aggressive cows",
"Done": "<->",
"URL": "https://www.spoj.com/problems/AGGRCOW/"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Book Allocation Problem",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/allocate-minimum-number-of-pages/0"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "EKOSPOJ:",
"Done": "<->",
"URL": "https://www.spoj.com/problems/EKO/"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Job Scheduling Algo",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/weighted-job-scheduling-log-n-time/"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Missing Number in AP",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/arithmetic-number/0"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Smallest number with atleastn trailing zeroes infactorial",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/smallest-factorial-number5929/1"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Painters Partition Problem:",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/allocate-minimum-number-of-pages/0"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "ROTI-Prata SPOJ",
"Done": "<->",
"URL": "https://www.spoj.com/problems/PRATA/"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "DoubleHelix SPOJ",
"Done": "<->",
"URL": "https://www.spoj.com/problems/ANARC05B/"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Subset Sums",
"Done": "<->",
"URL": "https://www.spoj.com/problems/SUBSUMS/"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Findthe inversion count",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/inversion-of-array/0"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Implement Merge-sort in-place",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/in-place-merge-sort/"
},
{
"Topic:": "Searching & Sorting",
"Problem: ": "Partitioning and Sorting Arrays with Many Repeated Entries",
"Done": "<->",
"URL": "https://www.baeldung.com/java-sorting-arrays-with-repeated-entries"
},
{
"Topic:": "LinkedList",
"Problem: ": "Write a Program to reverse the Linked List. (Both Iterative and recursive)",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/reverse-a-linked-list/"
},
{
"Topic:": "LinkedList",
"Problem: ": "Reverse a Linked List in group of Given Size. [Very Imp]",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/reverse-a-linked-list-in-groups-of-given-size/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Write a program to Detect loop in a linked list.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/detect-loop-in-linked-list/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Write a program to Delete loop in a linked list.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/remove-loop-in-linked-list/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Find the starting point of the loop. ",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/find-first-node-of-loop-in-a-linked-list/"
},
{
"Topic:": "LinkedList",
"Problem: ": "Remove Duplicates in a sorted Linked List.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/remove-duplicate-element-from-sorted-linked-list/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Remove Duplicates in a Un-sorted Linked List.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/remove-duplicates-from-an-unsorted-linked-list/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Write a Program to Move the last element to Front in a Linked List.",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/move-last-element-to-front-of-a-given-linked-list/"
},
{
"Topic:": "LinkedList",
"Problem: ": "Add “1” to a number represented as a Linked List.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/add-1-to-a-number-represented-as-linked-list/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Add two numbers represented by linked lists.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/add-two-numbers-represented-by-linked-lists/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Intersection of two Sorted Linked List.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/intersection-of-two-sorted-linked-lists/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Intersection Point of two Linked Lists.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/intersection-point-in-y-shapped-linked-lists/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Merge Sort For Linked lists.[Very Important]",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/sort-a-linked-list/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Quicksort for Linked Lists.[Very Important]",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/quick-sort-on-linked-list/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Find the middle Element of a linked list.",
"Done": "<->",
"URL": "https://leetcode.com/problems/middle-of-the-linked-list/"
},
{
"Topic:": "LinkedList",
"Problem: ": "Check if a linked list is a circular linked list.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/circular-linked-list/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Split a Circular linked list into two halves.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/split-a-circular-linked-list-into-two-halves/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Write a Program to check whether the Singly Linked list is a palindrome or not.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/check-if-linked-list-is-pallindrome/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Deletion from a Circular Linked List.",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/deletion-circular-linked-list/"
},
{
"Topic:": "LinkedList",
"Problem: ": "Reverse a Doubly Linked list.",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/reverse-a-doubly-linked-list/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Find pairs with a given sum in a DLL.",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/find-pairs-given-sum-doubly-linked-list/"
},
{
"Topic:": "LinkedList",
"Problem: ": "Count triplets in a sorted DLL whose sum is equal to given value “X”.",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/count-triplets-sorted-doubly-linked-list-whose-sum-equal-given-value-x/"
},
{
"Topic:": "LinkedList",
"Problem: ": "Sort a “k”sorted Doubly Linked list.[Very IMP]",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/sort-k-sorted-doubly-linked-list/"
},
{
"Topic:": "LinkedList",
"Problem: ": "Rotate DoublyLinked list by N nodes.",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/rotate-doubly-linked-list-n-nodes/"
},
{
"Topic:": "LinkedList",
"Problem: ": "Rotate a Doubly Linked list in group of Given Size.[Very IMP]",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/reverse-doubly-linked-list-groups-given-size/"
},
{
"Topic:": "LinkedList",
"Problem: ": "Can we reverse a linked list in less than O(n) ?",
"Done": "<->",
"URL": "<->"
},
{
"Topic:": "LinkedList",
"Problem: ": "Why Quicksort is preferred for. Arrays and Merge Sort for LinkedLists ?",
"Done": "<->",
"URL": "<->"
},
{
"Topic:": "LinkedList",
"Problem: ": "Flatten a Linked List",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/flattening-a-linked-list/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Sort a LL of 0's, 1's and 2's",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/given-a-linked-list-of-0s-1s-and-2s-sort-it/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Clone a linked list with next and random pointer",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/clone-a-linked-list-with-next-and-random-pointer/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Merge K sorted Linked list",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/merge-k-sorted-linked-lists/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Multiply 2 no. represented by LL",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/multiply-two-linked-lists/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Delete nodes which have a greater value on right side",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/delete-nodes-having-greater-value-on-right/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Segregate even and odd nodes in a Linked List",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/segregate-even-and-odd-nodes-in-a-linked-list/0"
},
{
"Topic:": "LinkedList",
"Problem: ": "Program for n’th node from the end of a Linked List",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/nth-node-from-end-of-linked-list/1"
},
{
"Topic:": "LinkedList",
"Problem: ": "Find the first non-repeating character from a stream of characters",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/first-non-repeating-character-in-a-stream/0"
},
{
"Topic:": "Binary Trees",
"Problem: ": "level order traversal",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/level-order-traversal/1"
},
{
"Topic:": "Binary Trees",
"Problem: ": "Reverse Level Order traversal",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/reverse-level-order-traversal/1"
},
{
"Topic:": "Binary Trees",
"Problem: ": "Height of a tree",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/height-of-binary-tree/1"
},
{
"Topic:": "Binary Trees",
"Problem: ": "Diameter of a tree",
"Done": "<->",
"URL": "https://practice.geeksforgeeks.org/problems/diameter-of-binary-tree/1"
},
{
"Topic:": "Binary Trees",
"Problem: ": "Mirror of a tree",
"Done": "<->",
"URL": "https://www.geeksforgeeks.org/create-a-mirror-tree-from-the-given-binary-tree/"
},
{
"Topic:": "Binary Trees",