-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathyoutube.json
2222 lines (2222 loc) · 83 KB
/
youtube.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
{
"1": {
"title": "Two Sum - Leetcode 1 - HashMap - Python",
"url": "https://youtube.com/watch?v=KLlXCFG5TnA"
},
"10": {
"title": "Regular Expression Matching - Dynamic Programming Top-Down Memoization - Leetcode 10",
"url": "https://youtube.com/watch?v=HAA8mgxlov8"
},
"100": {
"title": "Same Tree - Leetcode 100 - Python",
"url": "https://youtube.com/watch?v=vRbbcKXCxOw"
},
"1007": {
"title": "Minimum Domino Rotations for Equal Row - Leetcode 1007 - Python",
"url": "https://youtube.com/watch?v=VD9NACqBCw4"
},
"101": {
"title": "Symmetric Tree - Leetcode 101 - Python",
"url": "https://youtube.com/watch?v=Mao9uzxwvmc"
},
"1011": {
"title": "Capacity to Ship Packages - Leetcode 1011 - Python",
"url": "https://youtube.com/watch?v=ER_oLmdc-nw"
},
"102": {
"title": "Binary Tree Level Order Traversal - BFS - Leetcode 102",
"url": "https://youtube.com/watch?v=6ZnyEApgFYg"
},
"1020": {
"title": "Number of Enclaves - Leetcode 1020 - Python",
"url": "https://youtube.com/watch?v=gf0zsh1FIgE"
},
"1029": {
"title": "Two City Scheduling - Leetcode 1029 - Python",
"url": "https://youtube.com/watch?v=d-B_gk_gJtQ"
},
"103": {
"title": "Binary Tree Zigzag Level Order Traversal - Leetcode 103 - Python",
"url": "https://youtube.com/watch?v=igbboQbiwqw"
},
"1035": {
"title": "Uncrossed Lines - Leetcode 1035 - Python",
"url": "https://youtube.com/watch?v=mnJF4vJ7GyE"
},
"104": {
"title": "Maximum Depth of Binary Tree - 3 Solutions - Leetcode 104 - Python",
"url": "https://youtube.com/watch?v=hTM3phVI6YQ"
},
"1041": {
"title": "Robot Bounded in Circle - Math & Geometry - Leetcode 1041 - Python",
"url": "https://youtube.com/watch?v=nKv2LnC_g6E"
},
"1046": {
"title": "Last Stone Weight - Priority Queue - Leetcode 1046 - Python",
"url": "https://youtube.com/watch?v=B-QCq79-Vfw"
},
"1048": {
"title": "Longest String Chain - Leetcode 1048 - Python",
"url": "https://youtube.com/watch?v=7b0V1gT_TIk"
},
"1049": {
"title": "Last Stone Weight II - Leetcode 1049 - Python",
"url": "https://youtube.com/watch?v=gdXkkmzvR3c"
},
"105": {
"title": "Construct Binary Tree from Inorder and Preorder Traversal - Leetcode 105 - Python",
"url": "https://youtube.com/watch?v=ihj4IQGZ2zc"
},
"106": {
"title": "Construct Binary Tree from Inorder and Postorder Traversal - Leetcode 106 - Python",
"url": "https://youtube.com/watch?v=vm63HuIU7kw"
},
"1071": {
"title": "Greatest Common Divisor of Strings - Leetcode 1071 - Python",
"url": "https://youtube.com/watch?v=i5I_wrbUdzM"
},
"1074": {
"title": "Number of Submatrices that Sum to Target - Leetcode 1074 - Python",
"url": "https://youtube.com/watch?v=43DRBP2DUHg"
},
"108": {
"title": "Convert Sorted Array to Binary Search Tree - Leetcode 108 - Python",
"url": "https://youtube.com/watch?v=0K0uCMYq5ng"
},
"1091": {
"title": "Shortest Path in a Binary Matrix - Leetcode 1091 - Python",
"url": "https://youtube.com/watch?v=YnxUdAO7TAo"
},
"1094": {
"title": "Car Pooling - Leetcode 1094 - Python",
"url": "https://youtube.com/watch?v=08sn_w4LWEE"
},
"1095": {
"title": "Find in Mountain Array - Leetcode 1095 - Python",
"url": "https://youtube.com/watch?v=BGgYC-YkGvc"
},
"11": {
"title": "Container with Most Water - Leetcode 11 - Python",
"url": "https://youtube.com/watch?v=UuiTKBwPgAo"
},
"110": {
"title": "Balanced Binary Tree - Leetcode 110 - Python",
"url": "https://youtube.com/watch?v=QfJsau0ItOY"
},
"112": {
"title": "Path Sum - Leetcode 112 - Python",
"url": "https://youtube.com/watch?v=LSKQyOz_P8I"
},
"1129": {
"title": "Shortest Path with Alternating Colors - Leetcode 1129 - Python",
"url": "https://youtube.com/watch?v=69rcy6lb-HQ"
},
"1137": {
"title": "N-th Tribonacci Number - Leetcode 1137",
"url": "https://youtube.com/watch?v=3lpNp5Ojvrw"
},
"114": {
"title": "Flatten Binary Tree to Linked List - Leetcode 114 - Python",
"url": "https://youtube.com/watch?v=rKnD7rLT0lI"
},
"1140": {
"title": "Stone Game II - Leetcode 1140 - Python",
"url": "https://youtube.com/watch?v=I-z-u0zfQtg"
},
"1143": {
"title": "Longest Common Subsequence - Dynamic Programming - Leetcode 1143",
"url": "https://youtube.com/watch?v=Ua0GhsJSlWM"
},
"115": {
"title": "Distinct Subsequences - Dynamic Programming - Leetcode 115 - Python",
"url": "https://youtube.com/watch?v=-RDzMJ33nx8"
},
"1155": {
"title": "Number of Dice Rolls with Target Sum - Leetcode 1155 - Python",
"url": "https://youtube.com/watch?v=hfUxjdjVQN4"
},
"116": {
"title": "Populating Next Right Pointers in Each Node - Leetcode 116 - Python",
"url": "https://youtube.com/watch?v=U4hFQCa1Cq0"
},
"1160": {
"title": "Find Words That Can Be Formed by Characters - Leetcode 1160 - Python",
"url": "https://youtube.com/watch?v=EQ5jTZdEn8Y"
},
"1162": {
"title": "As Far from Land as Possible - Leetcode 1162 - Python",
"url": "https://youtube.com/watch?v=fjxb1hQfrZk"
},
"118": {
"title": "Pascal's Triangle - Leetcode 118 - Python",
"url": "https://youtube.com/watch?v=nPVEaB3AjUM"
},
"1189": {
"title": "Maximum Number of Balloons - Leetcode 1189 - Python",
"url": "https://youtube.com/watch?v=G9xeB2-7PqY"
},
"119": {
"title": "Pascal's Triangle II - Leetcode 119 - Python",
"url": "https://youtube.com/watch?v=k1DNTyal77I"
},
"12": {
"title": "Integer to Roman - Leetcode 12 - Python",
"url": "https://youtube.com/watch?v=ohBNdSJyLh8"
},
"120": {
"title": "Triangle - Dynamic Programming made Easy - Leetcode 120",
"url": "https://youtube.com/watch?v=OM1MTokvxs4"
},
"1208": {
"title": "Get Equal Substrings Within Budget - Leetcode 1208 - Python",
"url": "https://youtube.com/watch?v=3lsT1Le526U"
},
"1209": {
"title": "Remove All Adjacent Duplicates in String II - Leetcode 1209 - Python",
"url": "https://youtube.com/watch?v=w6LcypDgC4w"
},
"121": {
"title": "Sliding Window: Best Time to Buy and Sell Stock - Leetcode 121 - Python",
"url": "https://youtube.com/watch?v=1pkOgXD63yU"
},
"1219": {
"title": "Path with Maximum Gold - Leetcode 1219 - Python",
"url": "https://youtube.com/watch?v=I1wllM_pozY"
},
"122": {
"title": "Best Time to Buy and Sell a Stock II - Leetcode 122 - Python",
"url": "https://youtube.com/watch?v=3SJ3pUkPQMc"
},
"1220": {
"title": "Count Vowels Permutation - Dynamic Programming - Leetcode 1220 - Python",
"url": "https://youtube.com/watch?v=VUVpTZVa7Ls"
},
"1235": {
"title": "Maximum Profit in Job Scheduling - Leetcode 1235 - Python",
"url": "https://youtube.com/watch?v=JLoWc3v0SiE"
},
"1239": {
"title": "Maximum Length of a Concatenated String with Unique Characters - Leetcode 1239 - Python",
"url": "https://youtube.com/watch?v=d4SPuvkaeoo"
},
"124": {
"title": "Binary Tree Maximum Path Sum - DFS - Leetcode 124 - Python",
"url": "https://youtube.com/watch?v=Hr5cWUld4vU"
},
"1249": {
"title": "Minimum Remove to Make Valid Parentheses - Leetcode 1249 - Python",
"url": "https://youtube.com/watch?v=mgQ4O9iUEbg"
},
"125": {
"title": "Valid Palindrome - Leetcode 125 - Python",
"url": "https://youtube.com/watch?v=jJXJ16kPFWg"
},
"1254": {
"title": "Number of Closed Islands - Leetcode 1254 - Python",
"url": "https://youtube.com/watch?v=X8k48xek8g8"
},
"1255": {
"title": "Maximum Score Words Formed By Letters - Leetcode 1255 - Python",
"url": "https://youtube.com/watch?v=1cV8Hq9IAk4"
},
"1260": {
"title": "Shift 2D Grid - Leetcode 1260 - Python",
"url": "https://youtube.com/watch?v=nJYFh4Dl-as"
},
"1268": {
"title": "Search Suggestions System - Leetcode 1268 - Python",
"url": "https://youtube.com/watch?v=D4T2N0yAr20"
},
"1269": {
"title": "Number of Ways to Stay in the Same Place After Some Steps - Leetcode 1269 - Python",
"url": "https://youtube.com/watch?v=8YBGXG-8sRI"
},
"127": {
"title": "Word Ladder - Breadth First Search - Leetcode 127 - Python",
"url": "https://youtube.com/watch?v=h9iTnkgv05E"
},
"128": {
"title": "Leetcode 128 - LONGEST CONSECUTIVE SEQUENCE",
"url": "https://youtube.com/watch?v=P6RZZMu_maU"
},
"1288": {
"title": "Remove Covered Intervals - Leetcode 1288 - Python",
"url": "https://youtube.com/watch?v=nhAsMabiVkM"
},
"1289": {
"title": "Minimum Falling Path Sum II - Leetcode 1289 - Python",
"url": "https://youtube.com/watch?v=_b8sptrsFEM"
},
"129": {
"title": "Sum Root to Leaf Numbers - Coding Interview Question - Leetcode 129",
"url": "https://youtube.com/watch?v=Jk16lZGFWxE"
},
"1291": {
"title": "Sequential Digits - Leetcode 1291 - Python",
"url": "https://youtube.com/watch?v=Q-ca65wRJyI"
},
"1299": {
"title": "Leetcode 1299 - REPLACE ELEMENTS WITH GREATEST ELEMENT ON RIGHT SIDE",
"url": "https://youtube.com/watch?v=ZHjKhUjcsaU"
},
"13": {
"title": "Roman to Integer - Leetcode 13 - Python",
"url": "https://youtube.com/watch?v=3jdxYj3DD98"
},
"130": {
"title": "Surrounded Regions - Graph - Leetcode 130 - Python",
"url": "https://youtube.com/watch?v=9z2BunfoZ5Y"
},
"131": {
"title": "Palindrome Partitioning - Backtracking - Leetcode 131",
"url": "https://youtube.com/watch?v=3jvWodd7ht0"
},
"1325": {
"title": "Delete Leaves With a Given Value - Leetcode 1325 - Python",
"url": "https://youtube.com/watch?v=FqAoYAwbwV8"
},
"133": {
"title": "Clone Graph - Depth First Search - Leetcode 133",
"url": "https://youtube.com/watch?v=mQeF6bN8hMk"
},
"1335": {
"title": "Minimum Difficulty of a Job Schedule - Leetcode 1335 - Python",
"url": "https://youtube.com/watch?v=DAAULrZFeLI"
},
"134": {
"title": "Gas Station - Greedy - Leetcode 134 - Python",
"url": "https://youtube.com/watch?v=lJwbPZGo05A"
},
"1343": {
"title": "Number of Subarrays of size K and Average Greater than or Equal to Threshold - Leetcode 1343 Python",
"url": "https://youtube.com/watch?v=D8B4tKxMTnY"
},
"135": {
"title": "Candy - Leetcode 135 - Python",
"url": "https://youtube.com/watch?v=1IzCRCcK17A"
},
"1359": {
"title": "Count all Valid Pickup and Delivery Options - Leetcode 1359 - Python",
"url": "https://youtube.com/watch?v=OpgslsirW8s"
},
"136": {
"title": "Single Number - Leetcode 136 - Python",
"url": "https://youtube.com/watch?v=qMPX1AOa83k"
},
"1361": {
"title": "Validate Binary Tree Nodes - Leetcode 1361 - Python",
"url": "https://youtube.com/watch?v=Mw67DTgUEqk"
},
"1376": {
"title": "Time Needed to Inform All Employees - Leetcode 1376 - Python",
"url": "https://youtube.com/watch?v=zdBYi0p4L5Q"
},
"138": {
"title": "Copy List with Random Pointer - Linked List - Leetcode 138",
"url": "https://youtube.com/watch?v=5Y2EiZST97Y"
},
"1383": {
"title": "Maximum Performance of a Team - Leetcode 1383 - Python",
"url": "https://youtube.com/watch?v=Y7UTvogADH0"
},
"1396": {
"title": "Design Underground System - Leetcode 1396 - Python",
"url": "https://youtube.com/watch?v=W5QOLqXskZM"
},
"14": {
"title": "Longest Common Prefix - Leetcode 14 - Python",
"url": "https://youtube.com/watch?v=0sWShKIJoo4"
},
"140": {
"title": "Word Break II - Leetcode 140 - Python",
"url": "https://youtube.com/watch?v=QgLKdluDo08"
},
"1404": {
"title": "Number of Steps to Reduce a Number in Binary Representation to One - Leetcode 1404 - Python",
"url": "https://youtube.com/watch?v=qxt7_HD8Cag"
},
"1405": {
"title": "Longest Happy String - Leetcode 1405 - Python",
"url": "https://youtube.com/watch?v=8u-H6O_XQKE"
},
"1406": {
"title": "Stone Game III - Leetcode 1406 - Python",
"url": "https://youtube.com/watch?v=HsLG5QW9CFQ"
},
"141": {
"title": "Linked List Cycle - Floyd's Tortoise and Hare - Leetcode 141 - Python",
"url": "https://youtube.com/watch?v=gBTe7lFR3vc"
},
"1422": {
"title": "Maximum Score After Splitting a String - Leetcode 1422 - Python",
"url": "https://youtube.com/watch?v=mc_eSStDrWw"
},
"1423": {
"title": "GOOGLE MOST ASKED QUESTION 2021 - Maximum Points you can Obtain from Cards - Leetcode 1423 - Python",
"url": "https://youtube.com/watch?v=TsA4vbtfCvo"
},
"143": {
"title": "Linkedin Interview Question - Reorder List - Leetcode 143 - Python",
"url": "https://youtube.com/watch?v=S5bfdUTrKLM"
},
"1436": {
"title": "Destination City - Leetcode 1436 - Python",
"url": "https://youtube.com/watch?v=Hi8vMnnTZHE"
},
"144": {
"title": "Binary Tree Preorder Traversal (Iterative) - Leetcode 144 - Python",
"url": "https://youtube.com/watch?v=afTpieEZXck"
},
"1442": {
"title": "Count Triplets That Can Form Two Arrays of Equal XOR - Leetcode 1442 - Python",
"url": "https://youtube.com/watch?v=e4Yx9KjqzQ8"
},
"1443": {
"title": "Minimum Time to Collect All Apples in a Tree - Leetcode 1443 - Python",
"url": "https://youtube.com/watch?v=Xdt5Z583auM"
},
"1448": {
"title": "Microsoft's Most Asked Question 2021 - Count Good Nodes in a Binary Tree - Leetcode 1448 - Python",
"url": "https://youtube.com/watch?v=7cp5imvDzl4"
},
"145": {
"title": "Binary Tree Postorder Traversal (Iterative) - Leetcode 145 - Python",
"url": "https://youtube.com/watch?v=QhszUQhGGlA"
},
"1456": {
"title": "Maximum Number of Vowels in a Substring of Given Length - Leetcode 1456 - Python",
"url": "https://youtube.com/watch?v=kEfPSzgL-Ss"
},
"1457": {
"title": "Pseudo-Palindromic Paths in a Binary Tree - Leetcode 1457 - Python",
"url": "https://youtube.com/watch?v=MBsSpQnaFzg"
},
"146": {
"title": "LRU Cache - Twitch Interview Question - Leetcode 146",
"url": "https://youtube.com/watch?v=7ABFKPK2hD4"
},
"1461": {
"title": "Check if a String Contains all Binary Codes of Size K - Leetcode 1461 - Python",
"url": "https://youtube.com/watch?v=qU32rTy_kOM"
},
"1462": {
"title": "Course Schedule IV - Leetcode 1462 - Python",
"url": "https://youtube.com/watch?v=cEW05ofxhn0"
},
"1463": {
"title": "Cherry Pickup II - Leetcode 1463 - Python",
"url": "https://youtube.com/watch?v=c1stwk2TbNk"
},
"1466": {
"title": "Leetcode 1466 - REORDER ROUTES TO MAKE ALL PATHS LEAD TO THE CITY ZERO",
"url": "https://youtube.com/watch?v=m17yOR5_PpI"
},
"147": {
"title": "Insertion Sort List - Leetcode 147 - Python",
"url": "https://youtube.com/watch?v=Kk6mXAzqX3Y"
},
"1470": {
"title": "Shuffle the Array (Constant Space) - Leetcode 1470 - Python",
"url": "https://youtube.com/watch?v=IvIKD_EU8BY"
},
"1472": {
"title": "Design Browser History - Leetcode 1472 - Python",
"url": "https://youtube.com/watch?v=i1G-kKnBu8k"
},
"148": {
"title": "Sort List - Merge Sort - Leetcode 148",
"url": "https://youtube.com/watch?v=TGveA1oFhrc"
},
"1481": {
"title": "Least Number of Unique Integers after K Removal - Leetcode 1481 - Python",
"url": "https://youtube.com/watch?v=Nsp_ta7SlEk"
},
"1489": {
"title": "Find Critical and Pseudo Critical Edges in Minimum Spanning Tree - Leetcode 1489 - Python",
"url": "https://youtube.com/watch?v=83JnUxrLKJU"
},
"149": {
"title": "Leetcode 149 - Maximum Points on a Line - Python",
"url": "https://youtube.com/watch?v=Bb9lOXUOnFw"
},
"1496": {
"title": "Path Crossing - Leetcode 1496 - Python",
"url": "https://youtube.com/watch?v=VWRJBNP7uH8"
},
"1498": {
"title": "Leetcode 1498 - Number of Subsequences That Satisfy the Given Sum Condition - Python",
"url": "https://youtube.com/watch?v=xCsIkPLS4Ls"
},
"15": {
"title": "3Sum - Leetcode 15 - Python",
"url": "https://youtube.com/watch?v=jzZsG8n2R9A"
},
"150": {
"title": "Evaluate Reverse Polish Notation - Leetcode 150 - Python",
"url": "https://youtube.com/watch?v=iu0082c4HDE"
},
"1512": {
"title": "Number of Good Pairs - Leetcode 1512 - Python",
"url": "https://youtube.com/watch?v=BqhDFUo1rjs"
},
"1514": {
"title": "Path with Maximum Probability - Leetcode 1514 - Python",
"url": "https://youtube.com/watch?v=kPsDTGcrzGM"
},
"152": {
"title": "Maximum Product Subarray - Dynamic Programming - Leetcode 152",
"url": "https://youtube.com/watch?v=lXVy6YWFcRM"
},
"1523": {
"title": "Count Odd Numbers in an Interval Range - Leetcode 1523 - Python",
"url": "https://youtube.com/watch?v=wrIWye928JQ"
},
"153": {
"title": "Find Minimum in Rotated Sorted Array - Binary Search - Leetcode 153 - Python",
"url": "https://youtube.com/watch?v=nIVW4P8b1VA"
},
"1531": {
"title": "String Compression II - Leetcode 1531 - Python",
"url": "https://youtube.com/watch?v=ISIG3o-Xofg"
},
"1544": {
"title": "Make The String Great - Leetcode 1544 - Python",
"url": "https://youtube.com/watch?v=10tBWNjzvtw"
},
"1547": {
"title": "Minimum Cost to Cut a Stick - Leetcode 1547 - Python",
"url": "https://youtube.com/watch?v=EVxTO5I0d7w"
},
"155": {
"title": "Design Min Stack - Amazon Interview Question - Leetcode 155 - Python",
"url": "https://youtube.com/watch?v=qkLl7nAwDPo"
},
"1553": {
"title": "Minimum Number of Days to Eat N Oranges - Dynamic Programming - Leetcode 1553 - Python",
"url": "https://youtube.com/watch?v=LziQ6Qx9sks"
},
"1557": {
"title": "Minimum Number of Vertices to Reach all Nodes - Leetcode 1557 - Python",
"url": "https://youtube.com/watch?v=TLzcum7vrTc"
},
"1572": {
"title": "Matrix Diagonal Sum - Leetcode 1572 - Python",
"url": "https://youtube.com/watch?v=WliTu6gIK7o"
},
"1578": {
"title": "Minimum Time To Make Rope Colorful - Leetcode 1578 - Python",
"url": "https://youtube.com/watch?v=9_9jwd2DHMU"
},
"1579": {
"title": "Remove Max Number of Edges to Keep Graph Fully Traversable - Leetcode 1579 - Python",
"url": "https://youtube.com/watch?v=booGwg5wYm4"
},
"1584": {
"title": "Prim's Algorithm - Minimum Spanning Tree - Min Cost to Connect all Points - Leetcode 1584 - Python",
"url": "https://youtube.com/watch?v=f7JOBJIC-NA"
},
"160": {
"title": "Intersection of Two Linked Lists - Leetcode 160 - Python",
"url": "https://youtube.com/watch?v=D0X0BONOQhI"
},
"1603": {
"title": "Design Parking System - Leetcode 1603 - Python",
"url": "https://youtube.com/watch?v=d5zCHesOrSk"
},
"1608": {
"title": "Special Array with X Elements Greater than or Equal X - Leetcode 1608 - Python",
"url": "https://youtube.com/watch?v=Z51jYCeBLVI"
},
"1609": {
"title": "Even Odd Tree - Leetcode 1609 - Python",
"url": "https://youtube.com/watch?v=FkNWN1Fj_TY"
},
"1611": {
"title": "Minimum Number of One Bit Operations to Make Integers Zero - Leetcode 1611 - Python",
"url": "https://youtube.com/watch?v=yRI18_MaG7k"
},
"1614": {
"title": "Maximum Nesting Depth of the Parentheses - Leetcode 1614 - Python",
"url": "https://youtube.com/watch?v=FiQFJvCvWK4"
},
"162": {
"title": "Find Peak Element - Leetcode 162 - Python",
"url": "https://youtube.com/watch?v=kMzJy9es7Hc"
},
"1624": {
"title": "Largest Substring Between Two Equal Characters - Leetcode 1624 - Python",
"url": "https://youtube.com/watch?v=66b2V_rCuJw"
},
"1626": {
"title": "Best Team with no Conflicts - Leetcode 1626 - Python",
"url": "https://youtube.com/watch?v=7kURH3btcV4"
},
"1631": {
"title": "Path with Minimum Effort - Leetcode 1631 - Python",
"url": "https://youtube.com/watch?v=XQlxCCx2vI4"
},
"1637": {
"title": "Wildest Vertical Area Between Two Points Containing No Points - Leetcode 1637 - Python",
"url": "https://youtube.com/watch?v=6XnvNCTyJP4"
},
"1639": {
"title": "Number of Ways to Form a Target String Given a Dictionary - Leetcode 1639 - Python",
"url": "https://youtube.com/watch?v=_GF-0T-YjW8"
},
"1642": {
"title": "Furthest Building You Can Reach - Leetcode 1642 - Python",
"url": "https://youtube.com/watch?v=zyTeznvXCtg"
},
"1647": {
"title": "Minimum Deletions to Make Character Frequencies Unique - Leetcode 1647 - Python",
"url": "https://youtube.com/watch?v=h8AZEN49gTc"
},
"1658": {
"title": "Minimum Operations to Reduce X to Zero - Leetcode 1658 - Python",
"url": "https://youtube.com/watch?v=xumn16n7njs"
},
"1662": {
"title": "Check If Two String Arrays are Equivalent - Leetcode 1662 - Python",
"url": "https://youtube.com/watch?v=ejBwc2oE7ck"
},
"1669": {
"title": "Merge in Between Linked Lists - Leetcode 1669 - Python",
"url": "https://youtube.com/watch?v=pI775VutBxg"
},
"167": {
"title": "TWO SUM II - Amazon Coding Interview Question - Leetcode 167 - Python",
"url": "https://youtube.com/watch?v=cQ1Oz4ckceM"
},
"1675": {
"title": "Minimize Deviation in Array - Leetcode 1675 - Python",
"url": "https://youtube.com/watch?v=boHNFptxo2A"
},
"168": {
"title": "Excel Sheet Column Title - Leetcode 168 - Python",
"url": "https://youtube.com/watch?v=X_vJDpCCuoA"
},
"1685": {
"title": "Sum of Absolute Differences in a Sorted Array - Leetcode 1685 - Python",
"url": "https://youtube.com/watch?v=3nkc-e66JmA"
},
"1688": {
"title": "Count of Matches in Tournament - Leetcode 1688 - Python",
"url": "https://youtube.com/watch?v=lslcc0tumpU"
},
"169": {
"title": "Majority Element - Leetcode 169 - Python",
"url": "https://youtube.com/watch?v=7pnhv842keE"
},
"17": {
"title": "Letter Combinations of a Phone Number - Backtracking - Leetcode 17",
"url": "https://youtube.com/watch?v=0snEunUacZY"
},
"1700": {
"title": "Number of Students Unable to Eat Lunch - Leetcode 1700 - Python",
"url": "https://youtube.com/watch?v=d_cvtFwnOZg"
},
"1716": {
"title": "Calculate Money in Leetcode Bank - Leetcode 1716 - Python",
"url": "https://youtube.com/watch?v=tKK7gvPCQfs"
},
"1721": {
"title": "Swapping Nodes in a Linked List - Leetcode 1721 - Python",
"url": "https://youtube.com/watch?v=4LsrgMyQIjQ"
},
"1727": {
"title": "Largest Submatrix With Rearrangements - Leetcode 1727 - Python",
"url": "https://youtube.com/watch?v=NYyIVuSCfOA"
},
"173": {
"title": "Binary Search Tree Iterator - Leetcode 173 - Python",
"url": "https://youtube.com/watch?v=RXy5RzGF5wo"
},
"1750": {
"title": "Minimum Length of String after Deleting Similar Ends - Leetcode 1750 - Python",
"url": "https://youtube.com/watch?v=318hrWVr_5U"
},
"1758": {
"title": "Minimum Changes To Make Alternating Binary String - Leetcode 1758 - Python",
"url": "https://youtube.com/watch?v=9vAQdmVU2ds"
},
"1768": {
"title": "Merge Strings Alternately - Leetcode 1768 - Python",
"url": "https://youtube.com/watch?v=LECWOvTo-Sc"
},
"179": {
"title": "Largest Number - Leetcode 179 - Python",
"url": "https://youtube.com/watch?v=WDx6Y4i4xJ8"
},
"1793": {
"title": "Maximum Score of a Good Subarray - Leetcode 1793 - Python",
"url": "https://youtube.com/watch?v=_K7oyQlAjv4"
},
"1799": {
"title": "Maximize Score after N Operations - Leetcode 1799 - Python",
"url": "https://youtube.com/watch?v=RRQVDqp5RSE"
},
"18": {
"title": "4Sum - Leetcode 18 - Python",
"url": "https://youtube.com/watch?v=EYeR-_1NRlQ"
},
"1822": {
"title": "Sign of An Array - Leetcode 1822 - Python",
"url": "https://youtube.com/watch?v=ILDLM86jNow"
},
"1834": {
"title": "Single-Threaded CPU - Priority Queue - Leetcode 1834 - Python",
"url": "https://youtube.com/watch?v=RR1n-d4oYqE"
},
"1838": {
"title": "Frequency of the Most Frequent Element - Sliding Window - Leetcode 1838",
"url": "https://youtube.com/watch?v=vgBrQ0NM5vE"
},
"1845": {
"title": "Seat Reservation Manager - Leetcode 1845 - Python",
"url": "https://youtube.com/watch?v=ahobllKXEEY"
},
"1846": {
"title": "Maximum Element After Decreasing and Rearranging - Leetcode 1846 - Python",
"url": "https://youtube.com/watch?v=o_hVl8IXuIE"
},
"1849": {
"title": "Splitting a String Into Descending Consecutive Values - Leetcode 1849 - Python",
"url": "https://youtube.com/watch?v=eDtMmysldaw"
},
"1851": {
"title": "Minimum Interval to Include Each Query - Leetcode 1851 - Python",
"url": "https://youtube.com/watch?v=5hQ5WWW5awQ"
},
"1856": {
"title": "Maximum Subarray Min-Product - Monotonic Increasing Stack - Leetcode 1856 - Python",
"url": "https://youtube.com/watch?v=YLesLbNkyjA"
},
"1857": {
"title": "Largest Color Value in a Directed Graph - Leetcode 1857 - Python",
"url": "https://youtube.com/watch?v=xLoDjKczUSk"
},
"1863": {
"title": "Sum of All Subsets XOR Total - Leetcode 1863 - Python",
"url": "https://youtube.com/watch?v=LI7YR-bwNYY"
},
"1866": {
"title": "Number of Ways to Rearrange Sticks With K Sticks Visible - Dynamic Programming - Leetcode 1866",
"url": "https://youtube.com/watch?v=O761YBjGxGA"
},
"187": {
"title": "Repeated DNA Sequences - Leetcode 187 - Python",
"url": "https://youtube.com/watch?v=FzTYfsmtOso"
},
"1871": {
"title": "Jump Game VII - Leetcode 1871 - Python",
"url": "https://youtube.com/watch?v=v1HpZUnQ4Yo"
},
"1882": {
"title": "Process Tasks Using Servers - Leetcode 1882 - Python",
"url": "https://youtube.com/watch?v=XKA22PecuMQ"
},
"1888": {
"title": "Minimum Number of Flips to make Binary String Alternating - Sliding Window - Leetcode 1888 - Python",
"url": "https://youtube.com/watch?v=MOeuK6gaC2A"
},
"189": {
"title": "Rotate Array - Leetcode 189 - Python",
"url": "https://youtube.com/watch?v=BHr381Guz3Y"
},
"1897": {
"title": "Redistribute Characters to Make All Strings Equal - Leetcode 1897 - Python",
"url": "https://youtube.com/watch?v=a3SmUiimBi8"
},
"1898": {
"title": "Maximum Number of Removable Characters - Binary Search - Leetcode 1898 - Python",
"url": "https://youtube.com/watch?v=NMP3nRPyX5g"
},
"1899": {
"title": "Merge Triplets to Form Target Triplet - Greedy - Leetcode 1899 - Python",
"url": "https://youtube.com/watch?v=kShkQLQZ9K4"
},
"19": {
"title": "Remove Nth Node from End of List - Oracle Interview Question - Leetcode 19",
"url": "https://youtube.com/watch?v=XVuQxVej6y8"
},
"190": {
"title": "Reverse Bits - Binary - Leetcode 190 - Python",
"url": "https://youtube.com/watch?v=UcoN6UjAI64"
},
"1903": {
"title": "Largest Odd Number in String - Leetcode 1903 - Python",
"url": "https://youtube.com/watch?v=svuPjFAUeDE"
},
"1905": {
"title": "Count Sub Islands - DFS - Leetcode 1905 - Python",
"url": "https://youtube.com/watch?v=mLpW3qfbNJ8"
},
"191": {
"title": "Number of 1 Bits - Leetcode 191 - Python",
"url": "https://youtube.com/watch?v=5Km3utixwZs"
},
"1911": {
"title": "Maximum Alternating Subsequence Sum - Dynamic Programming - Leetcode 1911 - Python",
"url": "https://youtube.com/watch?v=4v42XOuU1XA"
},
"1921": {
"title": "Eliminate Maximum Number of Monsters - Leetcode 1921 - Weekly Contest 248 - Python",
"url": "https://youtube.com/watch?v=6QQRayzOTD4"
},
"1929": {
"title": "Concatenation of Array - Leetcode 1929 - Python",
"url": "https://youtube.com/watch?v=68isPRHgcFQ"
},
"1930": {
"title": "Unique Length-3 Palindromic Subsequences - Leetcode 1930 - Python",
"url": "https://youtube.com/watch?v=3THUt0vAFLU"
},
"1963": {
"title": "Minimum Number of Swaps to Make String Balanced - Leetcode 1963 Weekly Contest - Python",
"url": "https://youtube.com/watch?v=3YDBT9ZrfaU"
},
"1964": {
"title": "Find the Longest Valid Obstacle Course at Each Position - Leetcode 1964 - Python",
"url": "https://youtube.com/watch?v=Xq9VT7p0lic"
},
"1968": {
"title": "Array With Elements Not Equal to Average of Neighbors - Leetcode 1968 - Python",
"url": "https://youtube.com/watch?v=Wmb3YdVYfqM"
},
"198": {
"title": "House Robber - Leetcode 198 - Python Dynamic Programming",
"url": "https://youtube.com/watch?v=73r3KWiEvyk"
},
"199": {
"title": "Binary Tree Right Side View - Breadth First Search - Leetcode 199",
"url": "https://youtube.com/watch?v=d4zLyf32e3I"
},
"2": {
"title": "Add Two Numbers - Leetcode 2 - Python",
"url": "https://youtube.com/watch?v=wgFPrzTjm7s"
},
"20": {
"title": "Valid Parentheses - Stack - Leetcode 20 - Python",
"url": "https://youtube.com/watch?v=WTzjTskDFMg"
},
"200": {
"title": "NUMBER OF ISLANDS - Leetcode 200 - Python",
"url": "https://youtube.com/watch?v=pV2kpPD66nE"
},
"2001": {
"title": "Number of Pairs of Interchangeable Rectangles - Leetcode 2001 - Python",
"url": "https://youtube.com/watch?v=lEQ8ZlLOuyQ"
},
"2002": {
"title": "Maximum Product of the Length of Two Palindromic Subsequences - Leetcode 2002 - Python",
"url": "https://youtube.com/watch?v=aoHbYlO8vDg"
},
"2009": {
"title": "Minimum Number of Operations to Make Array Continuous - Leetcode 2009 - Python",
"url": "https://youtube.com/watch?v=Dd-yJylrcOY"
},
"201": {
"title": "Bitwise AND of Numbers Range - Leetcode 201 - Python",
"url": "https://youtube.com/watch?v=R3T0olAhUq0"
},
"2028": {
"title": "Find Missing Observations - Leetcode 2028 Weekly Contest Problem - Python",
"url": "https://youtube.com/watch?v=86yKkaNi3sU"
},
"203": {
"title": "Remove Linked List Elements - Leetcode 203",
"url": "https://youtube.com/watch?v=JI71sxtHTng"
},
"2038": {
"title": "Remove Colored Pieces if Both Neighbors are the Same Color - Leetcode 2038 - Python",
"url": "https://youtube.com/watch?v=T54GScWobZ4"
},
"205": {
"title": "Isomorphic Strings - Leetcode 205 - Python",
"url": "https://youtube.com/watch?v=7yF-U1hLEqQ"
},
"2050": {
"title": "Parallel Courses III - Leetcode 2050 - Python",
"url": "https://youtube.com/watch?v=a_NlRPnqCrg"
},
"206": {
"title": "Reverse Linked List - Iterative AND Recursive - Leetcode 206 - Python",
"url": "https://youtube.com/watch?v=G0_I-ZF0S38"
},
"207": {
"title": "Course Schedule - Graph Adjacency List - Leetcode 207",
"url": "https://youtube.com/watch?v=EgI5nU9etnU"
},
"2073": {
"title": "Time Needed to Buy Tickets - Leetcode 2073 - Python",
"url": "https://youtube.com/watch?v=cVmS9N6kf2Y"
},
"208": {
"title": "Implement Trie (Prefix Tree) - Leetcode 208",
"url": "https://youtube.com/watch?v=oobqoCJlHA0"
},
"209": {
"title": "Minimum Size Subarray Sum - Leetcode 209 - Python",
"url": "https://youtube.com/watch?v=aYqYMIqZx5s"
},
"2092": {
"title": "Find All People With Secret - Leetcode 2092 - Python",
"url": "https://youtube.com/watch?v=1XujGRSU1bQ"
},
"21": {
"title": "Merge Two Sorted Lists - Leetcode 21 - Python",
"url": "https://youtube.com/watch?v=XIdigk956u0"
},
"210": {
"title": "Course Schedule II - Topological Sort - Leetcode 210",
"url": "https://youtube.com/watch?v=Akt3glAwyfY"
},
"2101": {
"title": "Detonate the Maximum Bombs - Leetcode 2101 - Python",
"url": "https://youtube.com/watch?v=8NPbAvVXKR4"
},
"2108": {
"title": "Find First Palindromic String in the Array - Leetcode 2108 - Python",
"url": "https://youtube.com/watch?v=4JA5MW772N0"
},
"211": {
"title": "Design Add and Search Words Data Structure - Leetcode 211 - Python",
"url": "https://youtube.com/watch?v=BTf05gs_8iU"
},
"212": {
"title": "Word Search II - Backtracking Trie - Leetcode 212 - Python",
"url": "https://youtube.com/watch?v=asbcE9mZz_U"
},
"2125": {
"title": "Number of Laser Beams in a Bank - Leetcode 2125 - Python",
"url": "https://youtube.com/watch?v=KLeKv59LAFY"
},
"213": {
"title": "House Robber II - Dynamic Programming - Leetcode 213",
"url": "https://youtube.com/watch?v=rWAJCfYYOvM"
},
"2130": {
"title": "Maximum Twin Sum of a Linked List - Leetcode 2130 - Python",
"url": "https://youtube.com/watch?v=doj95MelfSA"
},
"2140": {
"title": "Solving Questions With Brainpower - Leetcode 2140 - Python",
"url": "https://youtube.com/watch?v=D7TD_ArkfkA"
},
"2147": {
"title": "Number of Ways to Divide a Long Corridor - Leetcode 2147 - Python",
"url": "https://youtube.com/watch?v=YOTjCd4Eyhc"
},
"2149": {
"title": "Rearrange Array Elements by Sign - Leetcode 2149 - Python",
"url": "https://youtube.com/watch?v=SoPmcGzz9-E"
},
"215": {
"title": "Kth Largest Element in an Array - Quick Select - Leetcode 215 - Python",
"url": "https://youtube.com/watch?v=XEmy13g1Qxc"
},
"217": {
"title": "Contains Duplicate - Leetcode 217 - Python",
"url": "https://youtube.com/watch?v=3OamzN90kPg"
},
"219": {
"title": "Contains Duplicate II - Leetcode 219 - Python",
"url": "https://youtube.com/watch?v=ypn0aZ0nrL4"
},
"22": {
"title": "Generate Parentheses - Stack - Leetcode 22",
"url": "https://youtube.com/watch?v=s9fokUqJ76A"
},
"221": {
"title": "Maximal Square - Top Down Memoization - Leetcode 221",
"url": "https://youtube.com/watch?v=6X7Ha2PrDmM"
},
"2215": {
"title": "Find the Difference of Two Arrays - Leetcode 2215 - Python",
"url": "https://youtube.com/watch?v=a4wqKR-znBE"
},
"2218": {
"title": "Maximum Value of K Coins from Piles - Leetcode 2218 - Python",
"url": "https://youtube.com/watch?v=ZRdEd_eun8g"
},
"225": {
"title": "Implement Stack using Queues - Leetcode 225 - Python",
"url": "https://youtube.com/watch?v=rW4vm0-DLYc"
},
"2251": {
"title": "Number of Flowers in Full Bloom - Leetcode 2251 - Python",
"url": "https://youtube.com/watch?v=zY3Uty9IwvY"
},
"226": {
"title": "Invert Binary Tree - Depth First Search - Leetcode 226",
"url": "https://youtube.com/watch?v=OnSn2XEQ4MY"
},
"2264": {
"title": "Largest 3-Same-Digit Number in String - Leetcode 2264 - Python",
"url": "https://youtube.com/watch?v=vcrOpJQHsSE"
},
"229": {
"title": "Majority Element II - Leetcode 229 - Python",
"url": "https://youtube.com/watch?v=Eua-UrQ_ANo"
},
"23": {
"title": "Merge K Sorted Lists - Leetcode 23 - Python",
"url": "https://youtube.com/watch?v=q5a5OiGbT6Q"
},
"2300": {
"title": "Successful Pairs of Spells and Potions - Leetcode 2300 - Python",
"url": "https://youtube.com/watch?v=OKnm5oyAhWg"
},
"2306": {
"title": "Naming a Company - Leetcode 2306 - Python",
"url": "https://youtube.com/watch?v=NrHpgTScOcY"
},
"231": {
"title": "Power of Two - Leetcode 231 - Python",
"url": "https://youtube.com/watch?v=H2bjttEV4Vc"
},
"2331": {
"title": "Evaluate Boolean Binary Tree - Leetcode 2331 - Python",
"url": "https://youtube.com/watch?v=9a_cP54jn8Q"
},
"234": {
"title": "Palindrome Linked List - Leetcode 234 - Python",
"url": "https://youtube.com/watch?v=yOzXms1J6Nk"
},
"2348": {
"title": "Number of Zero-Filled Subarrays - Leetcode 2348 - Python",
"url": "https://youtube.com/watch?v=G-EWVGCcL_w"
},
"235": {
"title": "Lowest Common Ancestor of a Binary Search Tree - Leetcode 235 - Python",
"url": "https://youtube.com/watch?v=gs2LMfuOR9k"
},
"2353": {
"title": "Design a Food Rating System - Leetcode 2353 - Python",
"url": "https://youtube.com/watch?v=Ikp8SgbgbEo"
},
"2359": {
"title": "Find Closest Node to Given Two Nodes - Leetcode 2359 - Python",
"url": "https://youtube.com/watch?v=AZA8orksO4w"