-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenges.html
1893 lines (1892 loc) · 80.5 KB
/
challenges.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>EduQuiz Topics - Technopedia for Your Mastermind</title>
<meta name="color-scheme" content="only light" />
<meta
name="description"
content="EduQuiz Topics offers free certificate courses for all programming languages like Java, Python, C, C++, DSA etc. Learn from top MAANG experts and level up your skills. Explore now"
/>
<meta
property="og:title"
content="EduQuiz Topics - Technopedia for Your Mastermind"
/>
<meta
property="og:description"
content="EduQuiz Topics offers free certificate courses for all programming languages like Java, Python, C, C++, DSA etc. Learn from top MAANG experts and level up your skills. Explore now"
/>
<meta
property="og:image"
content="https://d1g0iq4cbcvjcd.cloudfront.net/topics/images/logo.svg"/>
<meta property="og:url" content="https://www.EduQuiz.com/topics/" />
<meta property="og:site_name" content="EduQuiz Topics" />
<meta property="og:type" content="website" />
<meta
name="twitter:title"
content="EduQuiz Topics - Technopedia for Your Mastermind"
/>
<meta
name="twitter:description"
content="EduQuiz Topics offers free certificate courses for all programming languages like Java, Python, C, C++, DSA etc. Learn from top MAANG experts and level up your skills. Explore now."
/>
<meta
name="twitter:image"
content="https://d1g0iq4cbcvjcd.cloudfront.net/topics/images/logo.svg"
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@EduQuizTopics" />
<link rel="canonical" href="https://www.EduQuiz.comchallenges.html" />
<meta name="next-head-count" content="17" />
<link rel="icon" href="/topics/favicon.ico" />
<link
rel="preconnect"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics"
/>
<link
rel="dns-prefetch"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics"
/>
<link
rel="preload"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/media/0ac14a3c407fb3c4-s.p.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous"
data-next-font="size-adjust"
/>
<link
rel="preload"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/media/fc6fba7ce0876fef-s.p.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous"
data-next-font="size-adjust"
/>
<link
rel="preload"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/css/fccd4ccf72ac3cc2.css"
as="style"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/css/fccd4ccf72ac3cc2.css"
crossorigin="anonymous"
data-n-g=""
/>
<link
rel="preload"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/css/206fe32f3f4dedfb.css"
as="style"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/css/206fe32f3f4dedfb.css"
crossorigin="anonymous"
data-n-p=""
/>
<link
rel="preload"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/css/6ded6603c51b10e6.css"
as="style"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/css/6ded6603c51b10e6.css"
crossorigin="anonymous"
/>
<link
rel="preload"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/css/47797229093bb63c.css"
as="style"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/css/47797229093bb63c.css"
crossorigin="anonymous"
/>
<link
rel="preload"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/css/aeb8c11256ca3b1d.css"
as="style"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/css/aeb8c11256ca3b1d.css"
crossorigin="anonymous"
/>
<link
rel="preload"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/css/4c0ae727d6226090.css"
as="style"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/css/4c0ae727d6226090.css"
crossorigin="anonymous"
/>
<link
rel="preload"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/css/2ec98c4ee67e074d.css"
as="style"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/css/2ec98c4ee67e074d.css"
crossorigin="anonymous"
/>
<noscript data-n-css=""></noscript>
<script
defer=""
crossorigin="anonymous"
nomodule=""
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"
></script>
<script
defer=""
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/2851.ef1eca42981e6752.js"
crossorigin="anonymous"
></script>
<script
defer=""
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/229.5e75e42fa3efd12e.js"
crossorigin="anonymous"
></script>
<script
defer=""
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/6089-945753cc19ef1318.js"
crossorigin="anonymous"
></script>
<script
defer=""
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/7707-1726b087953f7a60.js"
crossorigin="anonymous"
></script>
<script
defer=""
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/9048.7d17e85cbcdf5d6b.js"
crossorigin="anonymous"
></script>
<script
defer=""
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/6095.d886ea6239867e03.js"
crossorigin="anonymous"
></script>
<script
defer=""
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/1631.96bd270612f29316.js"
crossorigin="anonymous"
></script>
<script
defer=""
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/6770.2c9419eac73999ed.js"
crossorigin="anonymous"
></script>
<script
defer=""
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/9605.ad9703c2c89957b1.js"
crossorigin="anonymous"
></script>
<script
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/webpack-fb1eedc3822c8e31.js"
defer=""
crossorigin="anonymous"
></script>
<script
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/framework-84476791e5b56604.js"
defer=""
crossorigin="anonymous"
></script>
<script
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/main-ace78b5142fc8917.js"
defer=""
crossorigin="anonymous"
></script>
<script
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/pages/_app-6fdb0bad02595bcc.js"
defer=""
crossorigin="anonymous"
></script>
<script
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/3710-83dbb7be4ba9d86a.js"
defer=""
crossorigin="anonymous">
</script>
<script
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/9097-3cd3583c3d4b1241.js"
defer=""
crossorigin="anonymous"
></script>
<script
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/6692-55f284d18e6b58e0.js"
defer=""
crossorigin="anonymous"
></script>
<script
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/4802-4a75cd6e9052e484.js"
defer=""
crossorigin="anonymous"
></script>
<script
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/chunks/pages/challenges-ba7557d6b3d748da.js"
defer=""
crossorigin="anonymous"
></script>
<script
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/66f5krtKofFA1CVyKE7B8/_buildManifest.js"
defer=""
crossorigin="anonymous"
></script>
<script
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/_next/static/66f5krtKofFA1CVyKE7B8/_ssgManifest.js"
defer=""
crossorigin="anonymous"
></script>
</head>
<body>
<div id="__next">
<div class="__className_fea366 full-height column">
<div
class="Header_header_container__uchwV header_items_headerContainer__Ea7gR"
>
<div class="Header_header__links__KRM32">
<div class="Header_links_container__4fhhe row sr-container">
<div class="row flex-ac">
<div
role="button"
tabindex="0"
class="signin-alert-popup_signInWrapper__Kr4eW"
>
<div class="signin-alert-popup_overLay__Xq3de"></div>
<a
class="Tappable-module_root__N7ll5 Header_link_item__Jeq_c Header_hide_above_tablet__YBTTX"
target="_blank"
><div
class="Header_exp_EduQuiz_link__nl8_2 Header_exp_EduQuiz__idDAV"
>
<span class="m-r-xxs">Experience</span
><img
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/images/EduQuizLogoWhite.svg"
alt="EduQuiz"
height="8"
width="60"
loading="lazy"
/></div
></a>
</div>
<a
href="https://www.EduQuiz.com/?utm_source=topics"
class="Header_link_item__Jeq_c Header_hide_below_desktop__JfhVe"
target="_blank"
><img
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/images/EduQuizLogoWhite.svg"
alt="EduQuiz"
height="8"
width="60"
loading="lazy"
/></a>
<div class="Header_item_separator__qyfwr"></div>
</div>
<div class="row flex-ac">
<a
href="https://www.EduQuiz.com/academy/?utm_source=topics"
class="Header_link_item__Jeq_c"
target="_blank"
>Academy</a
>
<div class="Header_item_separator__qyfwr"></div>
</div>
<div class="row flex-ac">
<a
href="https://www.EduQuiz.com/data-science-course/?utm_source=topics"
class="Header_link_item__Jeq_c"
target="_blank"
>Data Science</a
>
<div class="Header_item_separator__qyfwr"></div>
</div>
<div class="row flex-ac">
<a
href="https://www.EduQuiz.com/neovarsity/?utm_source=topics"
class="Header_link_item__Jeq_c"
target="_blank"
>Neovarsity</a
>
</div>
</div>
</div>
<div class="Header_header__scmTs sr-container">
<div class="Header_header__branding__lJ8b8">
<a class="header__logo Header_logo__YtLXM" href="/topics/"
><img
class="Header_header__logo_img__Uiby_ show-in-tablet"
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/images/topic_logo.svg"
alt="EduQuiz Topics Logo"
width="32"
height="32" /><img
loading="lazy"
class="Header_header__logo_img__Uiby_ hide-in-tablet"
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/images/EduQuizTopics_Logo.svg"
alt="EduQuiz Topics Logo"
height="64"
width="120"
/></a>
</div>
<div
class="Header_middle_items__oV5uq header_items_middleItem__6JSjC"
>
<div class="full-width Header_header__content__8w1ZO">
<div class="header_items_headItems__qhL4j">
<div class="header_items_headLinks__y1htd">
<div>
<div class="dropdown">
<a
class="tappable dropdown__title header_items_header_title__y_fDv"
><div class="header_items_header_middle_item__Pyg_d">
<span class="m-r-5">Topics</span
><svg
fill="currentColor"
class="icons_icon_chevron__cl99H icons_icon_chevron__down__hhjJu header_items_dropdown_icon__F__ut hide-in-mobile"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 32 32"
>
<path
d="M9.875 20.563l-1.875-1.875 8-8 8 8-1.875 1.875-6.125-6.125z"
></path>
</svg></div
></a>
</div>
</div>
<div>
<div class="dropdown">
<a
class="tappable dropdown__title header_items_header_title__y_fDv"
><div class="header_items_header_middle_item__Pyg_d">
<span class="m-r-5">Explore</span
><svg
fill="currentColor"
class="icons_icon_chevron__cl99H icons_icon_chevron__down__hhjJu header_items_dropdown_icon__F__ut hide-in-mobile"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 32 32"
>
<path
d="M9.875 20.563l-1.875-1.875 8-8 8 8-1.875 1.875-6.125-6.125z"
></path>
</svg></div
></a>
</div>
</div>
<a
data-id="header-item"
class="header_items_header_middle_item__Pyg_d"
role="link"
tabindex="0"
href="courses.html"
>Courses</a
><a
data-id="header-item"
class="header_items_header_middle_item__Pyg_d"
role="link"
tabindex="0"
href="courses.html"
>Events</a>
</div>
<div class="row flex-ac space-between">
<div
class="search_searchbarContainer__x3u_B search-bar_headSearch__9JRJh header_items_search_bar__vmysN hide-in-tablet"
>
<div class="search_container__d1rV9 p-15">
<svg
fill="currentColor"
class="search_search_icon__Kr9M1"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 32 32"
>
<path
d="M30.243 28.489l-6.719-6.89c1.716-2.097 2.756-4.806 2.756-7.757 0-0.002 0-0.004 0-0.005v0c-0.009-6.821-5.537-12.349-12.357-12.356h-0.001c-6.821 0.009-12.347 5.535-12.356 12.355v0.001c0.007 6.821 5.535 12.349 12.355 12.358h0.001c0.002 0 0.003 0 0.005 0 2.952 0 5.66-1.040 7.779-2.774l-0.022 0.017 6.719 6.89c0.118 0.118 0.28 0.19 0.46 0.19s0.342-0.073 0.46-0.19l0.92-0.92c0.118-0.118 0.19-0.28 0.19-0.46s-0.073-0.342-0.19-0.46v0zM13.922 23.592c-5.384-0.007-9.747-4.371-9.753-9.755v-0.001c0.007-5.384 4.37-9.746 9.753-9.753h0.001c5.385 0.006 9.748 4.369 9.755 9.753v0.001c-0.006 5.385-4.37 9.749-9.755 9.755h-0.001z"
></path>
</svg>
<div
class="Tappable-module_root__N7ll5 search_search_btn__AjpZg"
data-testid="input-id1"
>
<span class="search_search_text__80cj0"
>Search for Articles, Topics</span
>
</div>
</div>
</div>
</div>
</div>
</div>
<div
role="button"
tabindex="0"
class="signin-alert-popup_signInWrapper__Kr4eW"
>
<div class="signin-alert-popup_overLay__Xq3de"></div>
<a
class="Tappable-module_root__N7ll5 Header_link_item__Jeq_c"
target="_blank"
><div
class="Header_exp_EduQuiz_link__nl8_2 Header_exp_EduQuiz__idDAV show-in-tablet"
>
<span class="m-r-xxs">Experience</span
><img
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/images/EduQuizLogoWhite.svg"
alt="EduQuiz"
height="8"
width="60"
loading="lazy"
/></div
></a>
</div>
<input
type="button"
class="Header_header_signin__H8u_q cursor hide-in-tablet"
value="Sign In"
/>
<div
role="button"
tabindex="0"
class="signin-alert-popup_signInWrapper__Kr4eW"
>
<div class="signin-alert-popup_overLay__Xq3de"></div>
<a
class="Tappable-module_root__N7ll5 Header_exp_EduQuiz__idDAV Header_hide_in_small_screen__rcYLc"
target="_blank"
>Experience EduQuiz</a
>
</div>
</div>
<div class="show-in-tablet show-in-tablet">
<button
type="button"
class="header_items_hamburger_btn__xaYX0 cursor"
>
<svg
fill="currentColor"
class="header_items_hamburger_icon__3lUyt"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 32 32"
>
<path
d="M27.324 14.969h-22.652c-0.569 0-1.029 0.461-1.029 1.029s0.461 1.029 1.029 1.029h22.652c0.569 0 1.029-0.461 1.029-1.029s-0.461-1.029-1.029-1.029v0z"
></path>
<path
d="M4.672 8.793h22.652c0.569 0 1.029-0.461 1.029-1.029s-0.461-1.029-1.029-1.029h-22.652c-0.569 0-1.029 0.461-1.029 1.029s0.461 1.029 1.029 1.029v0z"
></path>
<path
d="M27.324 23.207h-22.652c-0.569 0-1.029 0.461-1.029 1.029s0.461 1.029 1.029 1.029h22.652c0.569 0 1.029-0.461 1.029-1.029s-0.461-1.029-1.029-1.029v0z"
></path>
</svg>
</button>
</div>
</div>
</div>
<main class="mainContainer">
<div
class="search_searchbarContainer__x3u_B search-bar_headSearch__9JRJh show-in-tablet"
>
<div class="search_container__d1rV9 p-15">
<svg
fill="currentColor"
class="search_search_icon__Kr9M1"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 32 32"
>
<path
d="M30.243 28.489l-6.719-6.89c1.716-2.097 2.756-4.806 2.756-7.757 0-0.002 0-0.004 0-0.005v0c-0.009-6.821-5.537-12.349-12.357-12.356h-0.001c-6.821 0.009-12.347 5.535-12.356 12.355v0.001c0.007 6.821 5.535 12.349 12.355 12.358h0.001c0.002 0 0.003 0 0.005 0 2.952 0 5.66-1.040 7.779-2.774l-0.022 0.017 6.719 6.89c0.118 0.118 0.28 0.19 0.46 0.19s0.342-0.073 0.46-0.19l0.92-0.92c0.118-0.118 0.19-0.28 0.19-0.46s-0.073-0.342-0.19-0.46v0zM13.922 23.592c-5.384-0.007-9.747-4.371-9.753-9.755v-0.001c0.007-5.384 4.37-9.746 9.753-9.753h0.001c5.385 0.006 9.748 4.369 9.755 9.753v0.001c-0.006 5.385-4.37 9.749-9.755 9.755h-0.001z"
></path>
</svg>
<div
class="Tappable-module_root__N7ll5 search_search_btn__AjpZg"
data-testid="input-id1"
>
<span class="search_search_text__80cj0"
>Search for Articles, Topics</span
>
</div>
</div>
</div>
<div class="hide-in-tablet ChallengesPage_banner__9je8R">
<div
class="sr-container row flex-c ChallengesPage_banner__image__sKzcN"
>
<img
src="https://d1g0iq4cbcvjcd.cloudfront.net/topics/images/AllChallengesPageBanner.svg"
alt="AllChallenges-banner"
width="100%"
objectFit="contain"
loading="lazy"
/>
</div>
</div>
<svg
fill="currentColor"
class="icons_icon_chevron__cl99H icons_icon_chevron__right__YxLYH hide-in-tablet breadcrumb_isLastSeparator__nSYW7"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 32 32"
>
<path
d="M9.875 20.563l-1.875-1.875 8-8 8 8-1.875 1.875-6.125-6.125z"
></path>
</svg>
<div
class="breadcrumb_seperator__GMDUz show-in-tablet breadcrumb_isLastSeparator__nSYW7"
></div>
<div
data-id="breadcrumb"
class="breadcrumb_item__jdd_h breadcrumb_isLast__v_LIa breadcrumb_title_display__TIbaq"
>
All Challenges
</div>
</div>
<div
class="show-in-tablet breadcrumb_mobile_container__JPiqx ChallengesPage_breadcrumb__oQF7t"
>
<div class="row flex-ac" aria-hidden="true">
<svg
fill="currentColor"
class="icons_icon_chevron__cl99H icons_icon_chevron__left__TwvkN breadcrumb_back_icon__a6Usx"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 32 32"
>
<path
d="M9.875 20.563l-1.875-1.875 8-8 8 8-1.875 1.875-6.125-6.125z"
></path>
</svg>
<div class="breadcrumb_title_display__TIbaq">
All Challenges
</div>
</div>
</div>
</div>
<div class="ChallengesPage_card_container__pWOUh">
<div class="ChallengesPage_challengeHeader__VcEd7">
<div>
<div
class="ChallengesPage_challengeHeader__texts_heading__auM5G"
>
All Challenges
</div>
</div>
</div>
<div class="sr-container">
<div
class="challenge_list_skeleton_challenge_container__l6VMO challenge_list_skeleton_border_radius__dfhpH"
>
<div class="row challenge_list_skeleton_cardItem__wszWI">
<div
class="skeleton skeleton--rect challenge_list_skeleton_border_radius__dfhpH"
style="
height: 120px;
width: 130px;
background-color: $neutral-scale-5;
"
></div>
<div class="m-l-s">
<div
class="skeleton skeleton--text m-t-xxs"
style="
height: 20px;
width: 175px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text skeleton--no-animation m-t-xs"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text m-t-xl"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
</div>
</div>
<div class="row challenge_list_skeleton_cardItem__wszWI">
<div
class="skeleton skeleton--rect challenge_list_skeleton_border_radius__dfhpH"
style="
height: 120px;
width: 130px;
background-color: $neutral-scale-5;
"
></div>
<div class="m-l-s">
<div
class="skeleton skeleton--text m-t-xxs"
style="
height: 20px;
width: 175px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text skeleton--no-animation m-t-xs"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text m-t-xl"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
</div>
</div>
<div class="row challenge_list_skeleton_cardItem__wszWI">
<div
class="skeleton skeleton--rect challenge_list_skeleton_border_radius__dfhpH"
style="
height: 120px;
width: 130px;
background-color: $neutral-scale-5;
"
></div>
<div class="m-l-s">
<div
class="skeleton skeleton--text m-t-xxs"
style="
height: 20px;
width: 175px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text skeleton--no-animation m-t-xs"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text m-t-xl"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
</div>
</div>
<div class="row challenge_list_skeleton_cardItem__wszWI">
<div
class="skeleton skeleton--rect challenge_list_skeleton_border_radius__dfhpH"
style="
height: 120px;
width: 130px;
background-color: $neutral-scale-5;
"
></div>
<div class="m-l-s">
<div
class="skeleton skeleton--text m-t-xxs"
style="
height: 20px;
width: 175px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text skeleton--no-animation m-t-xs"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text m-t-xl"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
</div>
</div>
<div class="row challenge_list_skeleton_cardItem__wszWI">
<div
class="skeleton skeleton--rect challenge_list_skeleton_border_radius__dfhpH"
style="
height: 120px;
width: 130px;
background-color: $neutral-scale-5;
"
></div>
<div class="m-l-s">
<div
class="skeleton skeleton--text m-t-xxs"
style="
height: 20px;
width: 175px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text skeleton--no-animation m-t-xs"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text m-t-xl"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
</div>
</div>
<div class="row challenge_list_skeleton_cardItem__wszWI">
<div
class="skeleton skeleton--rect challenge_list_skeleton_border_radius__dfhpH"
style="
height: 120px;
width: 130px;
background-color: $neutral-scale-5;
"
></div>
<div class="m-l-s">
<div
class="skeleton skeleton--text m-t-xxs"
style="
height: 20px;
width: 175px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text skeleton--no-animation m-t-xs"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text m-t-xl"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
</div>
</div>
<div class="row challenge_list_skeleton_cardItem__wszWI">
<div
class="skeleton skeleton--rect challenge_list_skeleton_border_radius__dfhpH"
style="
height: 120px;
width: 130px;
background-color: $neutral-scale-5;
"
></div>
<div class="m-l-s">
<div
class="skeleton skeleton--text m-t-xxs"
style="
height: 20px;
width: 175px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text skeleton--no-animation m-t-xs"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text m-t-xl"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
</div>
</div>
<div class="row challenge_list_skeleton_cardItem__wszWI">
<div
class="skeleton skeleton--rect challenge_list_skeleton_border_radius__dfhpH"
style="
height: 120px;
width: 130px;
background-color: $neutral-scale-5;
"
></div>
<div class="m-l-s">
<div
class="skeleton skeleton--text m-t-xxs"
style="
height: 20px;
width: 175px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text skeleton--no-animation m-t-xs"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text m-t-xl"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
</div>
</div>
<div class="row challenge_list_skeleton_cardItem__wszWI">
<div
class="skeleton skeleton--rect challenge_list_skeleton_border_radius__dfhpH"
style="
height: 120px;
width: 130px;
background-color: $neutral-scale-5;
"
></div>
<div class="m-l-s">
<div
class="skeleton skeleton--text m-t-xxs"
style="
height: 20px;
width: 175px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text skeleton--no-animation m-t-xs"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text m-t-xl"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
</div>
</div>
<div class="row challenge_list_skeleton_cardItem__wszWI">
<div
class="skeleton skeleton--rect challenge_list_skeleton_border_radius__dfhpH"
style="
height: 120px;
width: 130px;
background-color: $neutral-scale-5;
"
></div>
<div class="m-l-s">
<div
class="skeleton skeleton--text m-t-xxs"
style="
height: 20px;
width: 175px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text skeleton--no-animation m-t-xs"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text m-t-xl"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
</div>
</div>
<div class="row challenge_list_skeleton_cardItem__wszWI">
<div
class="skeleton skeleton--rect challenge_list_skeleton_border_radius__dfhpH"
style="
height: 120px;
width: 130px;
background-color: $neutral-scale-5;
"
></div>
<div class="m-l-s">
<div
class="skeleton skeleton--text m-t-xxs"
style="
height: 20px;
width: 175px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text skeleton--no-animation m-t-xs"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;
"
></div>
<div
class="skeleton skeleton--text m-t-xl"
style="
height: 10px;
width: 100px;
background-color: $neutral-scale-5;