-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgfg-api-full.json
More file actions
1650 lines (1650 loc) · 45 KB
/
gfg-api-full.json
File metadata and controls
1650 lines (1650 loc) · 45 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
{
"status": "success",
"message": "",
"result": {
"Medium": {
"700023": {
"slug": "rotate-a-linked-list",
"pname": "Rotate a Linked List",
"lang": "cpp"
},
"700043": {
"slug": "add-two-numbers-represented-by-linked-lists",
"pname": "Add Number Linked Lists",
"lang": "cpp"
},
"700053": {
"slug": "add-1-to-a-number-represented-as-linked-list",
"pname": "Add 1 to a Linked List Number",
"lang": "cpp"
},
"700099": {
"slug": "detect-loop-in-linked-list",
"pname": "Detect Loop in linked list",
"lang": "cpp"
},
"700124": {
"slug": "quick-sort-on-linked-list",
"pname": "Quick Sort on Linked List",
"lang": "cpp"
},
"700149": {
"slug": "check-for-bst",
"pname": "Check for BST",
"lang": "cpp"
},
"700160": {
"slug": "bottom-view-of-binary-tree",
"pname": "Bottom View of Binary Tree",
"lang": "cpp"
},
"700163": {
"slug": "intersection-point-in-y-shapped-linked-lists",
"pname": "Intersection in Y Shaped Lists",
"lang": "cpp"
},
"700165": {
"slug": "diameter-of-binary-tree",
"pname": "Diameter of a Binary Tree",
"lang": "cpp"
},
"700176": {
"slug": "merge-two-sorted-linked-lists",
"pname": "Merge two sorted linked lists",
"lang": "cpp"
},
"700192": {
"slug": "flattening-a-linked-list",
"pname": "Flattening a Linked List",
"lang": "cpp"
},
"700204": {
"slug": "boundary-traversal-of-binary-tree",
"pname": "Tree Boundary Traversal",
"lang": "cpp"
},
"700208": {
"slug": "implement-stack-using-array",
"pname": "Implement stack using array",
"lang": "cpp"
},
"700219": {
"slug": "detect-cycle-in-an-undirected-graph",
"pname": "Undirected Graph Cycle",
"lang": "cpp"
},
"700253": {
"slug": "the-celebrity-problem",
"pname": "The Celebrity Problem",
"lang": "cpp"
},
"700273": {
"slug": "find-the-number-of-islands",
"pname": "Find the number of islands",
"lang": "cpp"
},
"700285": {
"slug": "circular-tour-1587115620",
"pname": "Gas Station",
"lang": "cpp"
},
"700309": {
"slug": "kth-element-in-matrix",
"pname": "Kth smallest element in a Matrix",
"lang": "cpp"
},
"700332": {
"slug": "remove-loop-in-linked-list",
"pname": "Remove loop in Linked List",
"lang": "cpp"
},
"700386": {
"slug": "implement-atoi",
"pname": "Implement Atoi",
"lang": "cpp"
},
"700391": {
"slug": "check-if-linked-list-is-pallindrome",
"pname": "Palindrome Linked List",
"lang": "cpp"
},
"700408": {
"slug": "rat-in-a-maze-problem",
"pname": "Rat in a Maze",
"lang": "cpp"
},
"700440": {
"slug": "merge-two-bst-s",
"pname": "Merge two BST 's",
"lang": "cpp"
},
"700444": {
"slug": "count-distinct-elements-in-every-window",
"pname": "Count distinct elements in every window",
"lang": "cpp"
},
"700454": {
"slug": "root-to-leaf-paths-sum",
"pname": "Root to leaf paths sum",
"lang": "cpp"
},
"700469": {
"slug": "sort-a-stack",
"pname": "Sort a stack",
"lang": "cpp"
},
"700490": {
"slug": "top-view-of-binary-tree",
"pname": "Top View of Binary Tree",
"lang": "cpp"
},
"700511": {
"slug": "level-order-traversal",
"pname": "Level order traversal",
"lang": "cpp"
},
"700512": {
"slug": "peak-element",
"pname": "Peak element",
"lang": "cpp"
},
"700523": {
"slug": "sort-a-linked-list",
"pname": "Merge Sort for Linked List",
"lang": "cpp"
},
"700550": {
"slug": "find-a-pair-with-given-target-in-bst",
"pname": "Pair Sum in BST",
"lang": "cpp"
},
"700562": {
"slug": "xor-linked-list",
"pname": "XOR Linked List",
"lang": "cpp"
},
"700575": {
"slug": "k-sum-paths",
"pname": "K Sum Paths",
"lang": "cpp"
},
"700586": {
"slug": "construct-tree-1",
"pname": "Construct Tree from Inorder & Preorder",
"lang": "cpp"
},
"700608": {
"slug": "insert-in-sorted-way-in-a-sorted-dll",
"pname": "Insert in Sorted way in a Sorted DLL",
"lang": "cpp"
},
"700611": {
"slug": "maximum-path-sum-from-any-node",
"pname": "Maximum path sum",
"lang": "cpp"
},
"700614": {
"slug": "predecessor-and-successor",
"pname": "Predecessor and Successor",
"lang": "cpp"
},
"700620": {
"slug": "find-length-of-loop",
"pname": "Find length of Loop",
"lang": "cpp"
},
"700622": {
"slug": "deletion-and-reverse-in-linked-list",
"pname": "Deletion in Circular Linked List",
"lang": "cpp"
},
"700950": {
"slug": "cat-and-hat-python",
"pname": "Cat and Hat",
"lang": "python3"
},
"700974": {
"slug": "nearest-power-1587115620",
"pname": "Nearest Power",
"lang": "python3"
},
"700983": {
"slug": "doge",
"pname": "Doge",
"lang": "python3"
},
"701116": {
"slug": "mother-vertex",
"pname": "Mother Vertex",
"lang": "cpp"
},
"701135": {
"slug": "implementing-ceil-in-bst",
"pname": "Ceil in BST",
"lang": "cpp"
},
"701190": {
"slug": "tower-of-hanoi-1587115621",
"pname": "Tower Of Hanoi",
"lang": "cpp"
},
"701192": {
"slug": "smallest-positive-missing-number-1587115621",
"pname": "Smallest Positive Missing",
"lang": "cpp"
},
"701195": {
"slug": "power-of-numbers-1587115620",
"pname": "Power Of Numbers",
"lang": "cpp"
},
"701204": {
"slug": "rotate-and-delete-1587115621",
"pname": "Rotate and delete",
"lang": "cpp"
},
"701213": {
"slug": "rotate-array-by-n-elements-1587115621",
"pname": "Rotate Array",
"lang": "cpp"
},
"701215": {
"slug": "kadanes-algorithm-1587115620",
"pname": "Kadane's Algorithm",
"lang": "cpp"
},
"701220": {
"slug": "majority-element-1587115620",
"pname": "Majority Element",
"lang": "c"
},
"701226": {
"slug": "inversion-of-array-1587115620",
"pname": "Count Inversions",
"lang": "cpp"
},
"701236": {
"slug": "subarray-with-given-sum-1587115621",
"pname": "Indexes of Subarray Sum",
"lang": "cpp"
},
"701238": {
"slug": "count-possible-triangles-1587115620",
"pname": "Count the number of possible triangles",
"lang": "cpp"
},
"701243": {
"slug": "merge-two-sorted-arrays-1587115620",
"pname": "Merge Without Extra Space",
"lang": "cpp"
},
"701264": {
"slug": "spirally-traversing-a-matrix-1587115621",
"pname": "Spirally traversing a matrix",
"lang": "cpp"
},
"701266": {
"slug": "search-in-a-matrix-1587115621",
"pname": "Search in a sorted Matrix",
"lang": "cpp"
},
"701267": {
"slug": "rotate-by-90-degree-1587115621",
"pname": "Rotate by 90 degree",
"lang": "cpp"
},
"701292": {
"slug": "subarray-range-with-given-sum0128",
"pname": "Subarray range with given sum",
"lang": "cpp"
},
"701295": {
"slug": "longest-consecutive-subsequence2449",
"pname": "Longest Consecutive Subsequence",
"lang": "cpp"
},
"701297": {
"slug": "check-if-strings-are-rotations-of-each-other-or-not-1587115620",
"pname": "Strings Rotations of Each Other",
"lang": "cpp"
},
"701339": {
"slug": "evaluation-of-postfix-expression1735",
"pname": "Postfix Evaluation",
"lang": "cpp"
},
"701342": {
"slug": "stock-span-problem-1587115621",
"pname": "Stock span problem",
"lang": "cpp"
},
"701343": {
"slug": "next-larger-element-1587115620",
"pname": "Next Greater Element",
"lang": "cpp"
},
"701345": {
"slug": "infix-to-postfix-1587115620",
"pname": "Infix to Postfix",
"lang": "cpp"
},
"701349": {
"slug": "maximum-of-all-subarrays-of-size-k3101",
"pname": "K Sized Subarray Maximum",
"lang": "cpp"
},
"701357": {
"slug": "minimum-cost-of-ropes-1587115620",
"pname": "Minimum Cost of ropes",
"lang": "cpp"
},
"701358": {
"slug": "nearly-sorted-1587115620",
"pname": "Nearly sorted",
"lang": "cpp"
},
"701360": {
"slug": "find-median-in-a-stream-1587115620",
"pname": "Find median in a stream",
"lang": "cpp"
},
"701362": {
"slug": "activity-selection-1587115620",
"pname": "Activity Selection",
"lang": "cpp"
},
"701367": {
"slug": "job-sequencing-problem-1587115620",
"pname": "Job Sequencing Problem",
"lang": "cpp"
},
"701368": {
"slug": "minimum-platforms-1587115620",
"pname": "Minimum Platforms",
"lang": "cpp"
},
"701393": {
"slug": "minimum-number-of-jumps-1587115620",
"pname": "Minimum Jumps",
"lang": "cpp"
},
"701427": {
"slug": "sum-of-all-substrings-of-a-number-1587115621",
"pname": "Sum of all substrings of a number",
"lang": "cpp"
},
"701431": {
"slug": "0-1-knapsack-problem0945",
"pname": "0 - 1 Knapsack Problem",
"lang": "cpp"
},
"701723": {
"slug": "allocate-minimum-number-of-pages0937",
"pname": "Allocate Minimum Pages",
"lang": "cpp"
},
"701747": {
"slug": "kth-smallest-element5635",
"pname": "Kth Smallest",
"lang": "cpp"
},
"701754": {
"slug": "rotten-oranges2536",
"pname": "Rotten Oranges",
"lang": "cpp"
},
"701939": {
"slug": "container-with-most-water0535",
"pname": "Container With Most Water",
"lang": "cpp"
},
"701966": {
"slug": "print-anagrams-together",
"pname": "Print Anagrams Together",
"lang": "cpp"
},
"701989": {
"slug": "rotate-by-90-degree0356",
"pname": "Rotate by 90 degree",
"lang": "cpp"
},
"702074": {
"slug": "stock-buy-and-sell2615",
"pname": "Stock Buy and Sell – Multiple Transaction Allowed",
"lang": "cpp"
},
"702088": {
"slug": "word-search",
"pname": "Word Search",
"lang": "cpp"
},
"702382": {
"slug": "sort-an-array-of-0s-1s-and-2s4231",
"pname": "Sort 0s, 1s and 2s",
"lang": "cpp"
},
"702728": {
"slug": "maximize-number-of-1s0905",
"pname": "Maximize Number of 1's",
"lang": "cpp"
},
"702760": {
"slug": "sum-of-middle-elements-of-two-sorted-arrays2305",
"pname": "Sum of Middle elements of two sorted arrays",
"lang": "cpp"
},
"702805": {
"slug": "pythagorean-triplet3018",
"pname": "Pythagorean Triplet",
"lang": "cpp"
},
"702828": {
"slug": "search-in-a-rotated-array4618",
"pname": "Search in Rotated Sorted Array",
"lang": "cpp"
},
"702835": {
"slug": "count-pairs-sum-in-matrices4332",
"pname": "Count pairs Sum in matrices",
"lang": "cpp"
},
"702877": {
"slug": "max-sum-in-sub-arrays0824",
"pname": "Max Score from Subarray Mins",
"lang": "cpp"
},
"702886": {
"slug": "largest-number-formed-from-an-array1117",
"pname": "Form the Largest Number",
"lang": "cpp"
},
"702912": {
"slug": "add-binary-strings3805",
"pname": "Add Binary Strings",
"lang": "cpp"
},
"702919": {
"slug": "maximum-product-subarray3604",
"pname": "Maximum Product Subarray",
"lang": "cpp"
},
"702939": {
"slug": "sort-the-given-array-after-applying-the-given-equation0304",
"pname": "Sort the given array after applying the given equation",
"lang": "cpp"
},
"702992": {
"slug": "count-number-of-substrings4528",
"pname": "Substrings with K Distinct",
"lang": "cpp"
},
"703043": {
"slug": "longest-sub-array-with-sum-k0809",
"pname": "Longest Subarray with Sum K",
"lang": "cpp"
},
"703205": {
"slug": "longest-distinct-characters-in-string5848",
"pname": "Longest substring with distinct characters",
"lang": "cpp"
},
"703224": {
"slug": "decode-the-pattern1138",
"pname": "Look and Say Pattern",
"lang": "cpp"
},
"703253": {
"slug": "k-th-element-of-two-sorted-array1317",
"pname": "K-th element of two Arrays",
"lang": "cpp"
},
"703363": {
"slug": "largest-sum-subarray-of-size-at-least-k3121",
"pname": "Largest Sum Subarray of Size at least K",
"lang": "cpp"
},
"703419": {
"slug": "minimum-sum4058",
"pname": "Minimum sum",
"lang": "cpp"
},
"703420": {
"slug": "smallest-number-subset1220",
"pname": "Not a subset sum",
"lang": "cpp"
},
"703444": {
"slug": "minimize-the-heights3351",
"pname": "Minimize the Heights II",
"lang": "java"
},
"703459": {
"slug": "first-and-last-occurrences-of-x3116",
"pname": "First and Last Occurrences",
"lang": "cpp"
},
"703569": {
"slug": "permutations-of-a-given-string2041",
"pname": "Permutations of a String",
"lang": "cpp"
},
"703909": {
"slug": "modular-exponentiation-for-large-numbers5537",
"pname": "Modular Exponentiation",
"lang": "cpp"
},
"704100": {
"slug": "coin-change2448",
"pname": "Coin Change (Count Ways)",
"lang": "cpp"
},
"704146": {
"slug": "sieve-of-eratosthenes5242",
"pname": "Sieve of Eratosthenes",
"lang": "cpp"
},
"704185": {
"slug": "dice-throw5349",
"pname": "Dice throw",
"lang": "cpp"
},
"704431": {
"slug": "count-ways-to-nth-stairorder-does-not-matter5639",
"pname": "Count ways to N'th Stair(Order does not matter)",
"lang": "cpp"
},
"704542": {
"slug": "ncr1019",
"pname": "nCr",
"lang": "cpp"
},
"704573": {
"slug": "subset-sum-problem2014",
"pname": "Partition Equal Subset Sum",
"lang": "cpp"
},
"704691": {
"slug": "array-pair-sum-divisibility-problem3257",
"pname": "Array Pair Sum Divisibility Problem",
"lang": "cpp"
},
"704822": {
"slug": "nth-natural-number",
"pname": "Nth Natural Number",
"lang": "cpp"
},
"705001": {
"slug": "find-nth-root-of-m5843",
"pname": "Find nth root of m",
"lang": "cpp"
},
"705146": {
"slug": "next-permutation5226",
"pname": "Next Permutation",
"lang": "cpp"
},
"705287": {
"slug": "decode-the-string2444",
"pname": "Decode the string",
"lang": "cpp"
},
"705589": {
"slug": "two-numbers-with-odd-occurrences5846",
"pname": "Two odd Occuring",
"lang": "cpp"
},
"705720": {
"slug": "flood-fill-algorithm1856",
"pname": "Flood fill Algorithm",
"lang": "cpp"
},
"705822": {
"slug": "police-and-thieves--141631",
"pname": "Police and Thieves",
"lang": "cpp"
},
"706123": {
"slug": "subset-sum-problem-1611555638",
"pname": "Subset Sum Problem",
"lang": "cpp"
},
"706226": {
"slug": "subarrays-with-sum-k",
"pname": "Subarrays with sum K",
"lang": "cpp"
},
"706421": {
"slug": "minimize-the-heights-i",
"pname": "Minimize the Heights I",
"lang": "cpp"
},
"707278": {
"slug": "find-element-occuring-once-when-all-other-are-present-thrice",
"pname": "Unique Number III",
"lang": "cpp"
},
"707348": {
"slug": "all-unique-permutations-of-an-array",
"pname": "All Unique Permutations of an array",
"lang": "cpp"
},
"708874": {
"slug": "overlapping-intervals--170633",
"pname": "Overlapping Intervals",
"lang": "cpp"
},
"709919": {
"slug": "reverse-a-stack",
"pname": "Reverse a Stack",
"lang": "cpp"
},
"709984": {
"slug": "k-th-largest-sum-contiguous-subarray",
"pname": "K-th Largest Sum Contiguous Subarray",
"lang": "cpp"
},
"710020": {
"slug": "exactly-one-swap--170637",
"pname": "Exactly one swap",
"lang": "cpp"
},
"710293": {
"slug": "sort-a-k-sorted-doubly-linked-list",
"pname": "Sort a k sorted doubly linked list",
"lang": "cpp"
},
"712100": {
"slug": "majority-vote",
"pname": "Majority Element - More Than n/3",
"lang": "cpp"
},
"712107": {
"slug": "koko-eating-bananas",
"pname": "Koko Eating Bananas",
"lang": "cpp"
},
"712148": {
"slug": "count-subarray-with-k-odds",
"pname": "Count Subarray with k odds",
"lang": "cpp"
},
"712181": {
"slug": "minimal-cost",
"pname": "Minimal Cost",
"lang": "cpp"
},
"712207": {
"slug": "aggressive-cows",
"pname": "Aggressive Cows",
"lang": "cpp"
},
"712208": {
"slug": "smallest-divisor",
"pname": "Smallest Divisor",
"lang": "cpp"
},
"712213": {
"slug": "number-of-nges-to-the-right",
"pname": "Number of greater elements to the right",
"lang": "cpp"
},
"712234": {
"slug": "prefix-to-infix-conversion",
"pname": "Prefix to Infix Conversion",
"lang": "cpp"
},
"712246": {
"slug": "prefix-to-postfix-conversion",
"pname": "Prefix to Postfix Conversion",
"lang": "cpp"
},
"712262": {
"slug": "minimum-days-to-make-m-bouquets",
"pname": "Minimum days to make M bouquets",
"lang": "cpp"
},
"712266": {
"slug": "generate-all-binary-strings",
"pname": "Generate all binary strings",
"lang": "cpp"
},
"712304": {
"slug": "delete-all-occurrences-of-a-given-key-in-a-doubly-linked-list",
"pname": "Delete all occurrences of a given key in a doubly linked list",
"lang": "cpp"
},
"712305": {
"slug": "postfix-to-prefix-conversion",
"pname": "Postfix to Prefix Conversion",
"lang": "cpp"
},
"712306": {
"slug": "postfix-to-infix-conversion",
"pname": "Postfix to Infix Conversion",
"lang": "cpp"
},
"712431": {
"slug": "non-overlapping-intervals",
"pname": "Non-overlapping Intervals",
"lang": "cpp"
},
"712461": {
"slug": "minimum-window-subsequence",
"pname": "Minimum Window Subsequence",
"lang": "cpp"
},
"712536": {
"slug": "insert-interval-1666733333",
"pname": "Insert Interval",
"lang": "cpp"
},
"712573": {
"slug": "longest-string-chain",
"pname": "Longest String Chain",
"lang": "cpp"
},
"713145": {
"slug": "make-array-elements-unique--170645",
"pname": "Make array elements unique",
"lang": "cpp"
},
"713150": {
"slug": "find-the-first-node-of-loop-in-linked-list--170645",
"pname": "Find the first node of loop in linked list",
"lang": "cpp"
},
"713539": {
"slug": "minimum-times-a-has-to-be-repeated-such-that-b-is-a-substring-of-it--170645",
"pname": "Minimum repeat to make substring",
"lang": "cpp"
},
"713969": {
"slug": "unique-paths-in-a-grid--170647",
"pname": "Unique Paths in a Grid",
"lang": "cpp"
},
"874780": {
"slug": "kth-missing-positive-number-in-a-sorted-array",
"pname": "Kth Missing Positive Number in a Sorted Array",
"lang": "cpp"
},
"874827": {
"slug": "count-subarray-with-given-xor",
"pname": "Count Subarrays with given XOR",
"lang": "cpp"
},
"874880": {
"slug": "set-matrix-zeroes",
"pname": "Set Matrix Zeros",
"lang": "cpp"
},
"875937": {
"slug": "count-pairs-with-given-sum--150253",
"pname": "Count pairs with given sum",
"lang": "cpp"
},
"876614": {
"slug": "possible-split",
"pname": "Possible Split",
"lang": "cpp"
},
"876825": {
"slug": "find-all-triplets-with-zero-sum",
"pname": "Find All Triplets with Zero Sum",
"lang": "cpp"
},
"878150": {
"slug": "split-array-in-three-equal-sum-subarrays",
"pname": "Split array in three equal sum subarrays",
"lang": "cpp"
},
"878151": {
"slug": "last-moment-before-all-ants-fall-out-of-a-plank",
"pname": "Last Moment Before All Ants Fall Out",
"lang": "cpp"
},
"878654": {
"slug": "find-h-index--165609",
"pname": "Find H-Index",
"lang": "cpp"
},
"882014": {
"slug": "mana-mastery",
"pname": "Mana Mastery",
"lang": "python3"
},
"882859": {
"slug": "count-all-triplets-with-given-sum-in-sorted-array",
"pname": "Count all triplets with given sum in sorted array",
"lang": "cpp"
},
"884385": {
"slug": "powx-n",
"pname": "Implement Pow",
"lang": "cpp"
},
"884386": {
"slug": "subarrays-with-at-most-k-distinct-integers",
"pname": "Subarrays With At Most K Distinct Integers",
"lang": "cpp"
},
"897411": {
"slug": "divisible-by-13",
"pname": "Divisible by 13",
"lang": "cpp"
},
"898063": {
"slug": "group-balls-by-sequence",
"pname": "Group Balls by Sequence",
"lang": "cpp"
},
"898512": {
"slug": "ascii-range-sum",
"pname": "ASCII Range Sum",
"lang": "cpp"
},
"899513": {
"slug": "difference-check",
"pname": "Difference Check",
"lang": "cpp"
},
"904498": {
"slug": "search-in-fully-rotated-sorted-2d-matrix",
"pname": "Search in fully rotated sorted 2D matrix",
"lang": "cpp"
},
"906883": {
"slug": "max-xor-subarray-of-size-k",
"pname": "Max Xor Subarray of size K",
"lang": "cpp"
},
"911734": {
"slug": "string-stack--165812",
"pname": "String stack",
"lang": "cpp"
}
},
"Easy": {
"700005": {
"slug": "reverse-a-linked-list",
"pname": "Reverse a linked list",
"lang": "cpp"
},
"700019": {
"slug": "occurence-of-an-integer-in-a-linked-list",
"pname": "Frequency in a Linked List",
"lang": "cpp"
},
"700040": {
"slug": "node-at-a-given-index-in-linked-list",
"pname": "Node at a given index in linked list",
"lang": "cpp"
},
"700131": {
"slug": "delete-node-in-doubly-linked-list",
"pname": "Delete in a Doubly Linked List",
"lang": "cpp"
},
"700137": {
"slug": "reverse-a-doubly-linked-list",
"pname": "Reverse a Doubly Linked List",
"lang": "cpp"
},
"700155": {
"slug": "mirror-tree",
"pname": "Mirror Tree",
"lang": "cpp"
},
"700164": {
"slug": "height-of-binary-tree",
"pname": "Height of Binary Tree",
"lang": "cpp"
},
"700170": {
"slug": "nth-node-from-end-of-linked-list",
"pname": "Kth from End of Linked List",
"lang": "cpp"
},
"700171": {
"slug": "finding-middle-element-in-a-linked-list",
"pname": "Middle of a Linked List",
"lang": "cpp"
},
"700172": {
"slug": "circular-linked-list",
"pname": "Check If Circular Linked List",
"lang": "cpp"
},
"700174": {
"slug": "left-view-of-binary-tree",
"pname": "Left View of Binary Tree",
"lang": "cpp"
},
"700194": {
"slug": "find-transition-point-1587115620",
"pname": "Find Transition Point",
"lang": "cpp"
},
"700199": {
"slug": "postorder-traversal",
"pname": "Postorder Traversal",
"lang": "cpp"
},
"700201": {
"slug": "level-order-traversal-in-spiral-form",
"pname": "Level Order in spiral form",
"lang": "cpp"
},
"700203": {
"slug": "depth-first-traversal-for-a-graph",
"pname": "DFS of Graph",
"lang": "cpp"
},
"700207": {
"slug": "implement-stack-using-linked-list",
"pname": "Stack using Linked List",
"lang": "cpp"
},
"700217": {
"slug": "bfs-traversal-of-graph",
"pname": "BFS of graph",
"lang": "cpp"
},
"700226": {
"slug": "square-root",
"pname": "Square Root",
"lang": "cpp"
},
"700232": {
"slug": "insert-a-node-in-doubly-linked-list",
"pname": "Insertion at doubly linked list",
"lang": "cpp"
},
"700238": {
"slug": "binary-search-1587115620",
"pname": "Binary Search",
"lang": "cpp"
},
"700245": {
"slug": "largest-subarray-of-0s-and-1s",
"pname": "Largest subarray of 0's and 1's",
"lang": "cpp"
},
"700258": {
"slug": "remove-duplicates-in-small-prime-array",
"pname": "Remove Duplicates from an array",
"lang": "cpp"
},
"700291": {
"slug": "toeplitz-matrix",
"pname": "Toeplitz matrix",
"lang": "cpp"
},
"700336": {
"slug": "multiply-two-linked-lists",
"pname": "Multiply two linked lists",
"lang": "cpp"
},
"700402": {
"slug": "max-distance-between-same-elements",
"pname": "Max distance between same elements",
"lang": "cpp"
},
"700437": {
"slug": "find-duplicates-in-an-array",
"pname": "Array Duplicates",
"lang": "cpp"
},
"700541": {
"slug": "split-singly-linked-list-alternatingly",
"pname": "Split Linked List Alternatingly",