forked from ummu2222/CLG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Climbing the Leaderboard | HackerRank.html
1083 lines (887 loc) · 354 KB
/
Climbing the Leaderboard | HackerRank.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 style="--font-family-text:OpenSans, Arial, Helvetica, sans-serif; --font-family-input:SourceCodePro, monaco, Courier, monospace;" lang="en-us"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title> Climbing the Leaderboard | HackerRank </title><meta name="description" id="meta-description" content="Help Alice track her progress toward the top of the leaderboard!"><meta property="og:title" id="meta-og-title" content="Climbing the Leaderboard | HackerRank"><meta property="og:image" id="meta-og-image" content="https://hrcdn.net/og/default.jpg"><meta property="og:description" id="meta-og-description" content="Help Alice track her progress toward the top of the leaderboard!"><meta property="og:url" id="meta-og-url" content="https://www.hackerrank.com/challenges/climbing-the-leaderboard/problem"><meta property="og:site_name" id="meta-og-site" content="HackerRank"><meta property="og:type" id="meta-og-type" content="website"><meta property="article:author" content="https://www.facebook.com/hackerrank"><meta name="twitter:card" id="meta-twitter-card" content="summary"><meta name="twitter:site" id="meta-twitter-site" content="@hackerrank"><meta name="twitter:url" id="meta-twitter-url" content="https://www.hackerrank.com/challenges/climbing-the-leaderboard/problem"><meta name="twitter:title" id="meta-twitter-title" content="Climbing the Leaderboard | HackerRank"><meta property="fb:app_id" id="meta-fb-id" content="347499128655783"><meta name="theme-color" content="rgb(57, 66, 78)"><meta content="authenticity_token" name="csrf-param" id="csrf-param"><meta content="FpivVon60GuRKoj8ci3+renVCH59vPi3/ViLDn5DqzfHN/R4089h6xeY89BP/Y7FcRB+vaaC3cFzjyzrNYgQSQ==" name="csrf-token" id="csrf-token">
<script type="text/javascript" async="" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/analytics.js"></script><script type="text/javascript" async="" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/gtm.js"></script><script type="text/javascript" async="" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/analytics.js"></script><script async="" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/gtm_002.js"></script><script>/*!
* JavaScript Cookie v2.1.3
* https://github.com/js-cookie/js-cookie
*
* Copyright 2006, 2015 Klaus Hartl & Fagner Brack
* Released under the MIT license
*/
;(function (factory) {
var registeredInModuleLoader = false;
if (typeof define === 'function' && define.amd) {
define(factory);
registeredInModuleLoader = true;
}
if (typeof exports === 'object') {
module.exports = factory();
registeredInModuleLoader = true;
}
if (!registeredInModuleLoader) {
var OldCookies = window.Cookies;
var api = window.Cookies = factory();
api.noConflict = function () {
window.Cookies = OldCookies;
return api;
};
}
}(function () {
function extend () {
var i = 0;
var result = {};
for (; i < arguments.length; i++) {
var attributes = arguments[ i ];
for (var key in attributes) {
result[key] = attributes[key];
}
}
return result;
}
function init (converter) {
function api (key, value, attributes) {
var result;
if (typeof document === 'undefined') {
return;
}
// Write
if (arguments.length > 1) {
attributes = extend({
path: '/'
}, api.defaults, attributes);
if (typeof attributes.expires === 'number') {
var expires = new Date();
expires.setMilliseconds(expires.getMilliseconds() + attributes.expires * 864e+5);
attributes.expires = expires;
}
try {
result = JSON.stringify(value);
if (/^[\{\[]/.test(result)) {
value = result;
}
} catch (e) {}
if (!converter.write) {
value = encodeURIComponent(String(value))
.replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g, decodeURIComponent);
} else {
value = converter.write(value, key);
}
key = encodeURIComponent(String(key));
key = key.replace(/%(23|24|26|2B|5E|60|7C)/g, decodeURIComponent);
key = key.replace(/[\(\)]/g, escape);
return (document.cookie = [
key, '=', value,
attributes.expires ? '; expires=' + attributes.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
attributes.path ? '; path=' + attributes.path : '',
attributes.domain ? '; domain=' + attributes.domain : '',
attributes.secure ? '; secure' : ''
].join(''));
}
// Read
if (!key) {
result = {};
}
// To prevent the for loop in the first place assign an empty array
// in case there are no cookies at all. Also prevents odd result when
// calling "get()"
var cookies = document.cookie ? document.cookie.split('; ') : [];
var rdecode = /(%[0-9A-Z]{2})+/g;
var i = 0;
for (; i < cookies.length; i++) {
var parts = cookies[i].split('=');
var cookie = parts.slice(1).join('=');
if (cookie.charAt(0) === '"') {
cookie = cookie.slice(1, -1);
}
try {
var name = parts[0].replace(rdecode, decodeURIComponent);
cookie = converter.read ?
converter.read(cookie, name) : converter(cookie, name) ||
cookie.replace(rdecode, decodeURIComponent);
if (this.json) {
try {
cookie = JSON.parse(cookie);
} catch (e) {}
}
if (key === name) {
result = cookie;
break;
}
if (!key) {
result[name] = cookie;
}
} catch (e) {}
}
return result;
}
api.set = api;
api.get = function (key) {
return api.call(api, key);
};
api.getJSON = function () {
return api.apply({
json: true
}, [].slice.call(arguments));
};
api.defaults = {};
api.remove = function (key, attributes) {
api(key, '', extend(attributes, {
expires: -1
}));
};
api.withConverter = init;
return api;
}
return init(function () {});
}));
</script>
<script>
window.BACKEND_ENDPOINT = 'https://www.hackerrank.com/';
window.MANIFEST_VERSION = '01da773987';
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="https://hrcdn.net/community-frontend/assets/favicon-ddc852f75a.png">
<!-- Prefetch dns on production -->
<link rel="dns-prefetch" href="https://hrcdn.net/">
<link rel="dns-prefetch" href="https://d3keuzeb2crhkn.cloudfront.net/">
<link rel="dns-prefetch" href="https://notifications.hackerrank.com/">
<link rel="dns-prefetch" href="https://metrics.hackerrank.com/">
<link rel="preconnect" href="https://sentry.io/">
<link rel="dns-prefetch" href="https://sentry.io/">
<link rel="dns-prefetch" href="https://www.google-analytics.com/">
<link rel="dns-prefetch" href="https://www.googletagmanager.com/">
<link rel="dns-prefetch" href="https://cdn.pendo.io/">
<link rel="dns-prefetch" href="https://pubsub.hackerrank.com/">
<link href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_old_trimmed-e5fa151f.css" media="all" rel="stylesheet"><link rel="stylesheet" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_old_trimmed-e5fa151f.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_communityhackerrank_r_packethackerrank_r.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_communityhackerrank_r_sourcing_companyrb.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_communityhackerrank_r_iframeable_pricing.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_communityhackerrank_r_workhackerrank_r_w.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_communityhackerrank_r_work-a5cff451.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_communityhackerrank_r_sourcing_applicati.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_community-758b533c.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_community-62623c45.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_app-29c09936.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_app-66cc022c.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_003.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_002.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_list_002.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_onboarding-9139f3f.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challenge-6ae086c3.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_list_002.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_onboarding-9b2f8c7.css">
<link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_challenge-4cc4b5c8.css">
<!-- Prefetch / preload assets on production -->
<!-- preload scripts required on the same page -->
<link rel="preload" as="script" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_vendor-7286a9119d.js">
<link rel="preload" as="script" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_client-9c42b3549e.js">
<link rel="preload" as="script" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/runtime-01063b9785.js">
<link rel="preload" as="script" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/chunks_runtime-b9a703a7ac.js">
<!-- preload scripts end -->
<!-- Prefetch old css files -->
<link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/backbone_styles/hackerrank-core-b09922f4c9.css">
<link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/backbone_styles/hackerrank_libraries-6d1eda62f2.css">
<link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/backbone_styles/dashboard-173b5e46b8.css">
<!-- Prefetch old css files end -->
<!-- Load promise polyfill for the non-believers -->
<script>
window.Promise || document.write('<script src="https://hrcdn.net/community-frontend/assets/polyfill-d05a380d50.min.js" type="text\/javascript"><\/script>');
</script>
<!-- Added for GTM -->
<!-- GTM setup -->
<script>
dataLayer = [];
window.jsTrackGoogleAnalytics = window.jsTrackGoogleAnalytics || function () {};
</script>
<!-- Google Tag Manager #1 -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer', 'GTM-NZTBQVZ');</script>
<!-- End Google Tag Manager 1 -->
<script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_app-626fe8509e.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_app-19d29e5029.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_communityhackerrank_r_packethackerrank_r_.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_communityhackerrank_r_sourcing_companyhac.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_communityhackerrank_r_sourcing_companyrba.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_communityhackerrank_r_iframeable_pricing_.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_communityhackerrank_r_iframeable_pric_002.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_communityhackerrank_r_workhackerrank_r_wo.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_communityhackerrank_r_work-bef0691e76.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_communityhackerrank_r_library-f3e323d8ec.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_communityhackerrank_r_sourcing_applicatio.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_community-f6c2870526.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_community-09b4bdb7c7.js"></script><style>
html.scroll-hidden,html.scroll-hidden body{
overflow: hidden;
height:100vh;
}
html.scroll-hidden.pad-adjustment body{
padding-right : 10px;
}
html.scroll-hidden.pad-adjustment .fixed-elm{
padding-right : 10px;
}</style><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_old_trimmed-0627beea14.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_003.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhacke.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_002.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_onboarding-0f9664da.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challenge-c4d33866af.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listh_002.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_onboarding-ab58d443.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_challenge-058c1dd528.js"></script><link rel="stylesheet" type="text/css" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_krackjack-a11f8e24.css"><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_krackjack-d55a4cecdb.js"></script><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_krackjack-0ab859773f.js"></script><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview-15b79f2e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview-29008bd10a.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_challenge_list-3e89f234.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_challenge_list-f8908b9ac9.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview-15b79f2e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview-29008bd10a.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_challenge_list-3e89f234.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_challenge_list-f8908b9ac9.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_contest_landing-dd1a812a.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_contest_landing-3cfdc72021.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview-15b79f2e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview-29008bd10a.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_challenge_list_v2-2c58d8df4a.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_forum-6f301321.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_forum-ad825864c7.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_forum-980bb320.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_forum-63346a25ec.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_003.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_003.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_onboarding-9139f3f.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_onboarding-0f9664da.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challenge-6ae086c3.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challenge-c4d33866af.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_onboarding-9b2f8c7.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_onboarding-ab58d443.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_challenge-4cc4b5c8.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_challenge-058c1dd528.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_003.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_003.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_contest~hackerrank_r_leaderboard~hackerrank_r_leaderboardv2-a9f526c5.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_contest~hackerrank_r_leaderboard~hackerrank_r_leaderboardv2-5c8a92c9b0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_contest-91563e61.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_contest-40578ac640.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_003.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_003.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_contest~hackerrank_r_leaderboard~hackerrank_r_leaderboardv2-a9f526c5.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_contest~hackerrank_r_leaderboard~hackerrank_r_leaderboardv2-5c8a92c9b0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_leaderboardv2-b96d6be1.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_leaderboardv2-ddff4e67ff.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_003.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_003.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_onboarding-9139f3f.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_onboarding-0f9664da.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challenge-6ae086c3.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challenge-c4d33866af.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_onboarding-9b2f8c7.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_onboarding-ab58d443.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_challenge-4cc4b5c8.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_challenge-058c1dd528.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_003.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_003.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_onboarding-9139f3f.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_onboarding-0f9664da.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challenge-6ae086c3.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challenge-c4d33866af.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_onboarding-9b2f8c7.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_onboarding-ab58d443.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_challenge-4cc4b5c8.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_challenge-058c1dd528.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_003.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_003.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_contest~hackerrank_r_leaderboard~hackerrank_r_leaderboardv2-a9f526c5.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_contest~hackerrank_r_leaderboard~hackerrank_r_leaderboardv2-5c8a92c9b0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_contest-91563e61.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_contest-40578ac640.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_003.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_003.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_contest~hackerrank_r_leaderboard~hackerrank_r_leaderboardv2-a9f526c5.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_contest~hackerrank_r_leaderboard~hackerrank_r_leaderboardv2-5c8a92c9b0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_contest-91563e61.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_contest-40578ac640.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview-15b79f2e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview-29008bd10a.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_challenge_list_v2-2c58d8df4a.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_003.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_003.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_contest~hackerrank_r_leaderboard~hackerrank_r_leaderboardv2-a9f526c5.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_contest~hackerrank_r_leaderboard~hackerrank_r_leaderboardv2-5c8a92c9b0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_contest-91563e61.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_contest-40578ac640.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_experience_survey~hackerrank_r_survey-0815e820.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_experience_survey~hackerrank_r_survey-8ca3f7a899.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_experience_survey~hackerrank_r_profile_v2~hackerrank_r_survey-5d2c1ecc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_experience_survey~hackerrank_r_profile_v2~hackerrank_r_survey-cb12e22419.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_experience_survey~hackerrank_r_survey-524d57c1.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_experience_survey~hackerrank_r_survey-fdb908b0fe.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_survey-39f13a34.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_survey-3892fd1a5f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_company_header-132ad00a.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_company_header-48cd5afe65.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-ad2bd53d.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-02e1691260.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-9e0c71ec.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-eb81ec32e0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-8ac6cf41.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-e81e4bde1c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-bac8ce35.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-b95b440840.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-ad2bd53d.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-02e1691260.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-9e0c71ec.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-eb81ec32e0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-8ac6cf41.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-e81e4bde1c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-bac8ce35.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-b95b440840.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-ad2bd53d.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-02e1691260.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-9e0c71ec.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-eb81ec32e0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-8ac6cf41.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-e81e4bde1c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-bac8ce35.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-b95b440840.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-ad2bd53d.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-02e1691260.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-9e0c71ec.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-eb81ec32e0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-8ac6cf41.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-e81e4bde1c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-bac8ce35.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-b95b440840.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-ad2bd53d.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-02e1691260.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-9e0c71ec.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-eb81ec32e0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-8ac6cf41.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-e81e4bde1c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-bac8ce35.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-b95b440840.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-ad2bd53d.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-02e1691260.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-9e0c71ec.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-eb81ec32e0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-8ac6cf41.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-e81e4bde1c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-bac8ce35.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-b95b440840.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-ad2bd53d.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-02e1691260.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-9e0c71ec.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-eb81ec32e0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-8ac6cf41.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-e81e4bde1c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-bac8ce35.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-b95b440840.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-ad2bd53d.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-02e1691260.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-9e0c71ec.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-eb81ec32e0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-8ac6cf41.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-e81e4bde1c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-bac8ce35.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-b95b440840.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-ad2bd53d.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-02e1691260.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-9e0c71ec.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-eb81ec32e0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-8ac6cf41.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-e81e4bde1c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-bac8ce35.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-b95b440840.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-ad2bd53d.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-02e1691260.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-9e0c71ec.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-eb81ec32e0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-8ac6cf41.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-e81e4bde1c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><style type="text/css" media="screen" class="monaco-colors">.monaco-editor .accessibilityHelpWidget { background-color: #252526; }
.monaco-editor .accessibilityHelpWidget { color: #cccccc; }
.monaco-editor .accessibilityHelpWidget { box-shadow: 0 2px 8px #000000; }
.monaco-editor, .monaco-editor-background, .monaco-editor .inputarea.ime-input { background-color: #1c2434; }
.monaco-editor, .monaco-editor .inputarea.ime-input { color: #d4d4d4; }
.monaco-editor .margin { background-color: #1c2434; }
.monaco-editor .rangeHighlight { background-color: rgba(255, 255, 255, 0.04); }
.vs-whitespace { color: rgba(227, 228, 226, 0.16) !important; }
.monaco-editor .bracket-match { background-color: rgba(0, 100, 0, 0.1); }
.monaco-editor .bracket-match { border: 1px solid #888888; }
.monaco-editor .monaco-editor-overlaymessage .anchor { border-top-color: #007acc; }
.monaco-editor .monaco-editor-overlaymessage .message { border: 1px solid #007acc; }
.monaco-editor .monaco-editor-overlaymessage .message { background-color: #063b49; }
.monaco-editor .codelens-decoration { color: #999999; }
.monaco-editor .codelens-decoration > a:hover { color: #4e94ce !important; }
.monaco-editor .findOptionsWidget { background-color: #252526; }
.monaco-editor .findOptionsWidget { box-shadow: 0 2px 8px #000000; }
.monaco-editor .findMatch { background-color: rgba(234, 92, 0, 0.33); }
.monaco-editor .currentFindMatch { background-color: #515c6a; }
.monaco-editor .findScope { background-color: rgba(58, 61, 65, 0.4); }
.monaco-editor .find-widget { background-color: #252526; }
.monaco-editor .find-widget { box-shadow: 0 2px 8px #000000; }
.monaco-editor .find-widget { color: #cccccc; }
.monaco-editor .find-widget.no-results .matchesCount { color: #f48771; }
.monaco-editor .find-widget .monaco-sash { background-color: #454545; width: 3px !important; margin-left: -4px;}
.monaco-editor .find-widget .monaco-checkbox .checkbox:checked + .label { border: 1px solid rgba(0, 122, 204, 0); }
.monaco-editor .find-widget .monaco-checkbox .checkbox:checked + .label { background-color: rgba(14, 99, 156, 0.4); }
.monaco-workbench .monaco-editor .find-widget .monaco-inputbox.synthetic-focus { outline-color: rgba(14, 99, 156, 0.8); }
.monaco-editor .line-numbers { color: #858585; }
.monaco-editor .current-line ~ .line-numbers { color: #c6c6c6; }
.monaco-editor .view-overlays .current-line { border: 2px solid #282828; }
.monaco-editor .margin-view-overlays .current-line-margin { border: 2px solid #282828; }
.monaco-editor .lines-content .cigr { box-shadow: 1px 0 0 0 #404040 inset; }
.monaco-editor .lines-content .cigra { box-shadow: 1px 0 0 0 #707070 inset; }
.monaco-editor .minimap-slider, .monaco-editor .minimap-slider .minimap-slider-horizontal { background: rgba(121, 121, 121, 0.2); }
.monaco-editor .minimap-slider:hover, .monaco-editor .minimap-slider:hover .minimap-slider-horizontal { background: rgba(100, 100, 100, 0.35); }
.monaco-editor .minimap-slider.active, .monaco-editor .minimap-slider.active .minimap-slider-horizontal { background: rgba(191, 191, 191, 0.2); }
.monaco-editor .minimap-shadow-visible { box-shadow: #000000 -6px 0 6px -6px inset; }
.monaco-editor .view-ruler { box-shadow: 1px 0 0 0 #5a5a5a inset; }
.monaco-editor .scroll-decoration { box-shadow: #000000 0 6px 6px -6px inset; }
.monaco-editor .focused .selected-text { background-color: #264f78; }
.monaco-editor .selected-text { background-color: #3a3d41; }
.monaco-editor .cursor { background-color: #aeafad; border-color: #aeafad; color: #515052; }
.monaco-editor .squiggly-error { background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%206%203'%20enable-background%3D'new%200%200%206%203'%20height%3D'3'%20width%3D'6'%3E%3Cg%20fill%3D'%23f48771'%3E%3Cpolygon%20points%3D'5.5%2C0%202.5%2C3%201.1%2C3%204.1%2C0'%2F%3E%3Cpolygon%20points%3D'4%2C0%206%2C2%206%2C0.6%205.4%2C0'%2F%3E%3Cpolygon%20points%3D'0%2C2%201%2C3%202.4%2C3%200%2C0.6'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") repeat-x bottom left; }
.monaco-editor .squiggly-warning { background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%206%203'%20enable-background%3D'new%200%200%206%203'%20height%3D'3'%20width%3D'6'%3E%3Cg%20fill%3D'%23cca700'%3E%3Cpolygon%20points%3D'5.5%2C0%202.5%2C3%201.1%2C3%204.1%2C0'%2F%3E%3Cpolygon%20points%3D'4%2C0%206%2C2%206%2C0.6%205.4%2C0'%2F%3E%3Cpolygon%20points%3D'0%2C2%201%2C3%202.4%2C3%200%2C0.6'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") repeat-x bottom left; }
.monaco-editor .squiggly-info { background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%206%203'%20enable-background%3D'new%200%200%206%203'%20height%3D'3'%20width%3D'6'%3E%3Cg%20fill%3D'%2375beff'%3E%3Cpolygon%20points%3D'5.5%2C0%202.5%2C3%201.1%2C3%204.1%2C0'%2F%3E%3Cpolygon%20points%3D'4%2C0%206%2C2%206%2C0.6%205.4%2C0'%2F%3E%3Cpolygon%20points%3D'0%2C2%201%2C3%202.4%2C3%200%2C0.6'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") repeat-x bottom left; }
.monaco-editor .squiggly-hint { background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%223%22%20width%3D%2212%22%3E%3Cg%20fill%3D%22rgba(238%2C%20238%2C%20238%2C%200.7)%22%3E%3Ccircle%20cx%3D%221%22%20cy%3D%221%22%20r%3D%221%22%2F%3E%3Ccircle%20cx%3D%225%22%20cy%3D%221%22%20r%3D%221%22%2F%3E%3Ccircle%20cx%3D%229%22%20cy%3D%221%22%20r%3D%221%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat bottom left; }
.showUnused .monaco-editor .squiggly-inline-unnecessary { opacity: 0.667; }
.monaco-editor .squiggly-inline-deprecated { text-decoration: line-through; text-decoration-color: #d4d4d4}
.monaco-editor .reference-zone-widget .ref-tree .referenceMatch .highlight { background-color: rgba(234, 92, 0, 0.3); }
.monaco-editor .reference-zone-widget .preview .reference-decoration { background-color: rgba(255, 143, 0, 0.6); }
.monaco-editor .reference-zone-widget .ref-tree { background-color: #252526; }
.monaco-editor .reference-zone-widget .ref-tree { color: #bbbbbb; }
.monaco-editor .reference-zone-widget .ref-tree .reference-file { color: #ffffff; }
.monaco-editor .reference-zone-widget .ref-tree .monaco-list:focus .monaco-list-rows > .monaco-list-row.selected:not(.highlighted) { background-color: rgba(51, 153, 255, 0.2); }
.monaco-editor .reference-zone-widget .ref-tree .monaco-list:focus .monaco-list-rows > .monaco-list-row.selected:not(.highlighted) { color: #ffffff !important; }
.monaco-editor .reference-zone-widget .preview .monaco-editor .monaco-editor-background,.monaco-editor .reference-zone-widget .preview .monaco-editor .inputarea.ime-input { background-color: #001f33;}
.monaco-editor .reference-zone-widget .preview .monaco-editor .margin { background-color: #001f33;}
.monaco-editor .goto-definition-link { color: #4e94ce !important; }
.severity-icon.severity-error { background: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M8.58318%202.02842C9.96435%202.16331%2011.2561%202.77279%2012.2383%203.75307C13.3643%204.87923%2013.9978%206.40584%2014%207.99829C14.0004%209.38617%2013.5196%2010.7313%2012.6396%2011.8045C11.7595%2012.8778%2010.5345%2013.6127%209.17333%2013.8841C7.81215%2014.1556%206.39895%2013.9467%205.1745%2013.2931C3.95005%2012.6394%202.99008%2011.5815%202.45814%2010.2995C1.92619%209.0175%201.85517%207.59072%202.25717%206.26222C2.65917%204.93373%203.50933%203.7857%204.66282%203.0137C5.8163%202.24171%207.20177%201.89351%208.58318%202.02842ZM8.68038%201.03316C10.292%201.19055%2011.7993%201.90184%2012.9453%203.04585C14.2587%204.35938%2014.9976%206.14013%2015%207.99764C15.0005%209.61695%2014.4396%2011.1864%2013.4129%2012.4385C12.3861%2013.6907%2010.9569%2014.5482%209.36889%2014.8648C7.78084%2015.1815%206.13211%2014.9378%204.70359%2014.1752C3.27506%2013.4127%202.1551%2012.1784%201.53449%2010.6828C0.913887%209.18708%200.831027%207.52251%201.30003%205.97259C1.76903%204.42268%202.76089%203.08331%204.10662%202.18265C5.45236%201.28199%207.06873%200.875761%208.68038%201.03316ZM5.52498%205L8.00004%207.47506L10.4751%205L11.1822%205.70711L8.70714%208.18217L11.1818%2010.6569L10.4747%2011.364L8.00004%208.88927L5.52535%2011.364L4.81824%2010.6569L7.29293%208.18217L4.81787%205.70711L5.52498%205Z%22%20fill%3D%22%23f48771%22%2F%3E%3C%2Fsvg%3E") center center no-repeat; height: 16px; width: 16px; }
.severity-icon.severity-warning { background: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M14.12%2013.9725L15%2012.5L9.37927%202H7.61924L1.9985%2012.5L2.87852%2013.9725H14.12ZM2.87852%2012.9725L8.49925%202.47249L14.12%2012.9725H2.87852ZM7.98952%206H8.98802V10H7.98952V6ZM7.98952%2011H8.98802V12H7.98952V11Z%22%20fill%3D%22%23ffcc00%22%2F%3E%3C%2Fsvg%3E") center center no-repeat; height: 16px; width: 16px; }
.severity-icon.severity-info { background: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%207.5C3%204.46243%205.46243%202%208.5%202C11.5376%202%2014%204.46243%2014%207.5C14%2010.5376%2011.5376%2013%208.5%2013C5.46243%2013%203%2010.5376%203%207.5ZM2%207.5C2%203.91015%204.91015%201%208.5%201C12.0899%201%2015%203.91015%2015%207.5C15%2011.0899%2012.0899%2014%208.5%2014C4.91015%2014%202%2011.0899%202%207.5ZM8%204V5H9V4H8ZM8%206L8%2010H9L9%206H8Z%22%20fill%3D%22%2375beff%22%2F%3E%3C%2Fsvg%3E") center center no-repeat; height: 16px; width: 16px; }
.severity-icon.severity-ignore { background: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%207.5C3%204.46243%205.46243%202%208.5%202C11.5376%202%2014%204.46243%2014%207.5C14%2010.5376%2011.5376%2013%208.5%2013C5.46243%2013%203%2010.5376%203%207.5ZM2%207.5C2%203.91015%204.91015%201%208.5%201C12.0899%201%2015%203.91015%2015%207.5C15%2011.0899%2012.0899%2014%208.5%2014C4.91015%2014%202%2011.0899%202%207.5ZM8%204V5H9V4H8ZM8%206L8%2010H9L9%206H8Z%22%20fill%3D%22%23007acc%22%2F%3E%3C%2Fsvg%3E") center center no-repeat; height: 16px; width: 16px; }
.monaco-editor .marker-widget a { color: #3794ff; }
.monaco-editor .hoverHighlight { background-color: rgba(38, 79, 120, 0.25); }
.monaco-editor .monaco-editor-hover { background-color: #252526; }
.monaco-editor .monaco-editor-hover { border: 1px solid #454545; }
.monaco-editor .monaco-editor-hover .hover-row:not(:first-child):not(:empty) { border-top: 1px solid rgba(69, 69, 69, 0.5); }
.monaco-editor .monaco-editor-hover hr { border-top: 1px solid rgba(69, 69, 69, 0.5); }
.monaco-editor .monaco-editor-hover hr { border-bottom: 0px solid rgba(69, 69, 69, 0.5); }
.monaco-editor .monaco-editor-hover a { color: #3794ff; }
.monaco-editor .monaco-editor-hover .hover-row .actions { background-color: #2c2c2d; }
.monaco-editor .monaco-editor-hover code { background-color: rgba(10, 10, 10, 0.4); }
.monaco-editor.vs .valueSetReplacement { outline: solid 2px #888888; }
.monaco-editor .tokens-inspect-widget { border: 1px solid #454545; }
.monaco-editor .tokens-inspect-widget .tokens-inspect-separator { background-color: #454545; }
.monaco-editor .tokens-inspect-widget { background-color: #252526; }
.monaco-editor .detected-link-active { color: #4e94ce !important; }
.monaco-editor .parameter-hints-widget { border: 1px solid #454545; }
.monaco-editor .parameter-hints-widget.multiple .body { border-left: 1px solid rgba(69, 69, 69, 0.5); }
.monaco-editor .parameter-hints-widget .signature.has-docs { border-bottom: 1px solid rgba(69, 69, 69, 0.5); }
.monaco-editor .parameter-hints-widget { background-color: #252526; }
.monaco-editor .parameter-hints-widget a { color: #3794ff; }
.monaco-editor .parameter-hints-widget code { background-color: rgba(10, 10, 10, 0.4); }
.monaco-editor .snippet-placeholder { background-color: rgba(124, 124, 124, 0.3); outline-color: transparent; }
.monaco-editor .finish-snippet-placeholder { background-color: transparent; outline-color: #525252; }
.monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-highlighted-label .highlight { color: #0097fb; }
.monaco-editor .suggest-widget { color: #d4d4d4; }
.monaco-editor .suggest-widget a { color: #3794ff; }
.monaco-editor .suggest-widget code { background-color: rgba(10, 10, 10, 0.4); }
.monaco-editor .focused .selectionHighlight { background-color: rgba(173, 214, 255, 0.15); }
.monaco-editor .selectionHighlight { background-color: rgba(173, 214, 255, 0.07); }
.monaco-editor .wordHighlight { background-color: rgba(87, 87, 87, 0.72); }
.monaco-editor .wordHighlightStrong { background-color: rgba(0, 73, 114, 0.72); }
.monaco-diff-editor .diff-review-line-number { color: #858585; }
.monaco-diff-editor .diff-review-shadow { box-shadow: #000000 0 -6px 6px -6px inset; }
.monaco-editor .line-insert, .monaco-editor .char-insert { background-color: rgba(155, 185, 85, 0.2); }
.monaco-diff-editor .line-insert, .monaco-diff-editor .char-insert { background-color: rgba(155, 185, 85, 0.2); }
.monaco-editor .inline-added-margin-view-zone { background-color: rgba(155, 185, 85, 0.2); }
.monaco-editor .line-delete, .monaco-editor .char-delete { background-color: rgba(255, 0, 0, 0.2); }
.monaco-diff-editor .line-delete, .monaco-diff-editor .char-delete { background-color: rgba(255, 0, 0, 0.2); }
.monaco-editor .inline-deleted-margin-view-zone { background-color: rgba(255, 0, 0, 0.2); }
.monaco-diff-editor.side-by-side .editor.modified { box-shadow: -6px 0 5px -5px #000000; }
.mtk1 { color: #d4d4d4; }
.mtk2 { color: #1e1e1e; }
.mtk3 { color: #cc6666; }
.mtk4 { color: #9cdcfe; }
.mtk5 { color: #ce9178; }
.mtk6 { color: #b5cea8; }
.mtk7 { color: #608b4e; }
.mtk8 { color: #7f848e; }
.mtk9 { color: #569cd6; }
.mtk10 { color: #dcdcdc; }
.mtk11 { color: #808080; }
.mtk12 { color: #61afef; }
.mtk13 { color: #f44747; }
.mtk14 { color: #e06c75; }
.mtk15 { color: #c586c0; }
.mtk16 { color: #a79873; }
.mtk17 { color: #dd6a6f; }
.mtk18 { color: #5bb498; }
.mtk19 { color: #909090; }
.mtk20 { color: #778899; }
.mtk21 { color: #ff00ff; }
.mtk22 { color: #b46695; }
.mtk23 { color: #98c379; }
.mtk24 { color: #ff0000; }
.mtk25 { color: #4f76ac; }
.mtk26 { color: #3dc9b0; }
.mtk27 { color: #74b0df; }
.mtk28 { color: #4864aa; }
.mtki { font-style: italic; }
.mtkb { font-weight: bold; }
.mtku { text-decoration: underline; text-underline-position: under; }</style><style data-emotion="css"></style><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/58-a656a0a181.js"></script><style type="text/css" media="screen"></style><script charset="utf-8" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/lsp_client-cb428ea1b1.js"></script><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-bac8ce35.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-b95b440840.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-ad2bd53d.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-02e1691260.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-9e0c71ec.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-eb81ec32e0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-8ac6cf41.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-e81e4bde1c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-bac8ce35.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-b95b440840.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-ad2bd53d.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_applications~hackerrank_r_sourcing_messages-02e1691260.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-9e0c71ec.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_work-eb81ec32e0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-8ac6cf41.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_jobs~hackerrank_r_sourcing_messages-e81e4bde1c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-bac8ce35.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_jobs-b95b440840.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_skills_verification-46cf6482.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_skills_verification-3d6be01052.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_skills_verification~hackerrank_r_skills_verification_test-02ff1bbc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_skills_verification~hackerrank_r_skills_verification_test-8232990f5f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_skills_verification-47589ec7.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_skills_verification-fac221c2c2.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_skills_verification-305f0b3e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_skills_verification-e5611d7040.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_skills_verification-46cf6482.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_skills_verification-3d6be01052.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_skills_verification~hackerrank_r_skills_verification_test-02ff1bbc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_skills_verification~hackerrank_r_skills_verification_test-8232990f5f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_skills_verification-47589ec7.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_skills_verification-fac221c2c2.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_skills_verification-305f0b3e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_skills_verification-e5611d7040.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_skills_verification-46cf6482.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_skills_verification-3d6be01052.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_skills_verification~hackerrank_r_skills_verification_test-02ff1bbc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_skills_verification~hackerrank_r_skills_verification_test-8232990f5f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_skills_verification-47589ec7.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_skills_verification-fac221c2c2.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_skills_verification-305f0b3e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_skills_verification-e5611d7040.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_skills_verification_test-d9660264.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_skills_verification_test-aa5fcea1d9.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_skills_verification~hackerrank_r_skills_verification_test-02ff1bbc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_skills_verification~hackerrank_r_skills_verification_test-8232990f5f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_skills_verification_test-182bc0f1.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_skills_verification_test-618526d755.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_dashboard-db12a6db.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_dashboard-691545e4b0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_skills_verification-47589ec7.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_skills_verification-fac221c2c2.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_dashboard-e721dc94.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_dashboard-44438f0c18.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_003.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_003.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_contesthackerrank_r.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_contest~hackerrank_r_leaderboard~hackerrank_r_leaderboardv2-a9f526c5.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_contest~hackerrank_r_leaderboard~hackerrank_r_leaderboardv2-5c8a92c9b0.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_leaderboard-c29f483b.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_leaderboard-aa9208261d.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_intersection_observer-016a4e3d25.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_experience_survey~hackerrank_r_survey-0815e820.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_experience_survey~hackerrank_r_survey-8ca3f7a899.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_experience_survey~hackerrank_r_profile_v2~hackerrank_r_survey-5d2c1ecc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_experience_survey~hackerrank_r_profile_v2~hackerrank_r_survey-cb12e22419.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_experience_survey~hackerrank_r_survey-524d57c1.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_experience_survey~hackerrank_r_survey-fdb908b0fe.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_survey-39f13a34.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_survey-3892fd1a5f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_experience_survey~hackerrank_r_survey-0815e820.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_experience_survey~hackerrank_r_survey-8ca3f7a899.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_experience_survey~hackerrank_r_profile_v2~hackerrank_r_survey-5d2c1ecc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_experience_survey~hackerrank_r_profile_v2~hackerrank_r_survey-cb12e22419.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_experience_survey~hackerrank_r_survey-524d57c1.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_experience_survey~hackerrank_r_survey-fdb908b0fe.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_experience_survey-97a4dc7cbb.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_profile_v2-69af4974.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_profile_v2-4400f576c7.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_experience_survey~hackerrank_r_profile_v2~hackerrank_r_survey-5d2c1ecc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_experience_survey~hackerrank_r_profile_v2~hackerrank_r_survey-cb12e22419.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_profile_v2-ca7601cc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_profile_v2-9e9510d811.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_calendar-7e1537c5e5.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_calendar-bd4c6c86.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_calendar-fb8b19574e.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_onboarding-9139f3f.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_onboarding-0f9664da.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_onboarding-8a2b1d57.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_onboarding-78c3de58cf.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_onboarding-9b2f8c7.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_onboarding-ab58d443.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_onboarding-9e6b99f8.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_onboarding-8402465916.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_onboarding-9139f3f.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_onboarding-0f9664da.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_onboarding-8a2b1d57.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_onboarding-78c3de58cf.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_onboarding-9b2f8c7.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_onboarding-ab58d443.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_onboarding-9e6b99f8.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_onboarding-8402465916.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_onboarding-9139f3f.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_onboarding-0f9664da.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_onboarding-8a2b1d57.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_onboarding-78c3de58cf.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_onboarding-9b2f8c7.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_onboarding-ab58d443.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_onboarding-9e6b99f8.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_onboarding-8402465916.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_charts-5ca2c9c7.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_charts-b6314d1d3f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_charts-5ca2c9c7.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_charts-b6314d1d3f.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_003.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_003.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_scoring-4c78a277.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_scoring-a0bed16e13.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerr_003.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_contesthackerra_003.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_scoring-4c78a277.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_scoring-a0bed16e13.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_interview-db12a6db.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_interview-f80bfedb20.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview-15b79f2e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview-29008bd10a.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_interview-a8c931d1.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_interview-8a8643ef79.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_interview-db12a6db.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_interview-f80bfedb20.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview-15b79f2e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview-29008bd10a.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_interview-a8c931d1.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_interview-8a8643ef79.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_interview-db12a6db.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_interview-f80bfedb20.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview-15b79f2e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview-29008bd10a.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_interview-a8c931d1.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_interview-8a8643ef79.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_004.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_interview-db12a6db.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_interview-f80bfedb20.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_list_002.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview-15b79f2e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview-29008bd10a.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_interview-a8c931d1.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_interview-8a8643ef79.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_002.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_challengehackerrank_r_challenge_listh_003.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_skills_verification-46cf6482.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_skills_verification-3d6be01052.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhack.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/commonshackerrank_r_challengehackerrank_r_challenge_listhacke.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-5670ca88.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_jobs~hackerrank_r_skills_verification~hackerrank_r_skill~d7f2654f-c69eb0224c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_skills_verification~hackerrank_r_skills_verification_test-02ff1bbc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_skills_verification~hackerrank_r_skills_verification_test-8232990f5f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_skills_verification-47589ec7.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_dashboard~hackerrank_r_skills_verification-fac221c2c2.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_skills_verification-305f0b3e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_skills_verification-e5611d7040.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair-3006f39e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair-b798024f23.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_career_fair_faq-900a1b77.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_career_fair_faq-dbc9e5ca52.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_career_fair-76f935e5.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_career_fair-ec52727dc9.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair-3006f39e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair-b798024f23.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_career_fair_faq-900a1b77.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_career_fair_faq-dbc9e5ca52.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_career_fair-76f935e5.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_career_fair-ec52727dc9.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_career_fair_faq-900a1b77.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_career_fair_faq-dbc9e5ca52.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_career_fair_faq-8985583e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_career_fair_faq-8f1685a1c1.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair-3006f39e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair-b798024f23.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_career_fair_faq-900a1b77.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_career_fair_faq-dbc9e5ca52.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_career_fair-76f935e5.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_career_fair-ec52727dc9.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair-3006f39e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair-b798024f23.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_career_fair_faq-900a1b77.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_career_fair_faq-dbc9e5ca52.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_career_fair-76f935e5.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_career_fair-ec52727dc9.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerr.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_career_fairhackerrank_r_challengehackerra.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-80be0abc.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~d534e475-aaef089cfb.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_testquestions-fa84a081dd.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair-3006f39e.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair-b798024f23.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_profile_v2~hackerrank_r_skills_verif~52659f53-21d7fbe9ea.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-33ef75a3.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_verification_test-366c92a03f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_career_fair_faq-900a1b77.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_career_fair_faq-dbc9e5ca52.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-981b969f.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/commons~hackerrank_r_career_fair~hackerrank_r_jobs-6332eea539.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_career_fair-76f935e5.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_career_fair-ec52727dc9.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_skills_directory-437e9763.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_skills_directory-bbf082aa6b.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_skills_directory-437e9763.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_skills_directory-bbf082aa6b.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_calendarhackerrank_r_career_fairhackerran.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_challenge_list~hackerrank_r_challenge_list_v2~hackerrank_r_interview~hackerrank~76813109-1a4185264c.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-4a7f5840.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/vendors~hackerrank_r_career_fair~hackerrank_r_jobs~hackerrank_r_skills_directory-1a834700a1.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_skills_directory-437e9763.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_skills_directory-bbf082aa6b.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_auth-c2db1645.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/hackerrank_r_auth-4efe429b7c.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_krackjack-a11f8e24.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_krackjack-d55a4cecdb.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_krackjack-0ab859773f.js"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/codeshell_editor_theme_m-a7d0d404.css"><link rel="prefetch" href="https://hrcdn.net/community-frontend/assets/codeshell_editor_theme_m-012090e6db.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_krackjack-a11f8e24.css"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/vendorshackerrank_r_krackjack-d55a4cecdb.js"><link rel="prefetch" href="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_krackjack-0ab859773f.js"></head>
<body id="hr_v2" class="hr-community theme-dark" data-gr-c-s-loaded="true">
<div id="fb-root"></div>
<!-- Just a placeholder div to start loading open sans and source code loader -->
<div class="font-open-sans-loader"></div>
<div class="font-source-code-loader"></div>
<!-- Just a placeholder div to start loading open sans and source code loader end -->
<div id="content" onclick="void(0);"><div class="ui-kit-root"><div class="body-wrap community-page challenges-page problem-page show-cookie-banner"><div class="theme-m new-design logged-user"><div class="page-header-wrapper theme-m-section"><nav class="community-header"><div class="container"><div class="header-nav-links theme-m-section"><ul class="nav-links"><li class="nav-link-item logo-wrap"><a class="nav_link backbone logo_mark js_logo_mark logo-link" data-analytics="NavBarLogo" data-attr1="/dashboard" href="https://www.hackerrank.com/dashboard"><img id="feed-intro" class="logo-img-small" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/logo-new-white-green-a5cb16e0ae.svg" alt=""></a></li><li class="nav-link-item"><a class="nav-link dashboard active" data-analytics="NavBarDomains" href="https://www.hackerrank.com/dashboard"><span>Practice</span></a></li><li class="nav-link-item"><a class="nav-link " data-analytics="NavBarDomains" href="https://www.hackerrank.com/skills-verification"><span>Certification</span><div class="new-badge new-feature-badge">NEW</div></a></li><li class="nav-link-item"><a class="nav-link contests" data-analytics="NavBarContests" href="https://www.hackerrank.com/contests"><span>Compete</span></a></li><li class="nav-link-item"><a class="nav-link " data-analytics="NavBarJobs" href="https://www.hackerrank.com/jobs"><span>Jobs</span><i class="ui-icon-circle-filled notification-indicator hidden"></i></a></li><li class="nav-link-item"><a class="nav-link " data-analytics="NavBarLeaderboard" id="leaderboard-nav-link" href="https://www.hackerrank.com/leaderboard"><span>Leaderboard</span></a></li></ul></div><div class="nav-buttons theme-m-section"><ul class="pull-left psR"><li class="hide-in-private-contest search-input-container input-icon main-hr-search" id="search-span"><div class="search-form new-search"><div><div class="search-query asyn-autocomplete autocomplete"><div class="ac-input-wrap cf"><input autocomplete="off" class="ac-input " placeholder="Search"></div></div><i class="ui-icon-search"></i></div></div></li></ul><ul class="pull-left nav-wrap mmL"><li class="hide-in-private-contest button-item"><div class="dropdown dropdown message-dropdown notify-dropdown theme-m-content"><a class="cursor dropdown-handle nav_link hr_nav_messages_link js-dropdown-toggle js-link" data-analytics="NavBarMessageIcon"><i class="dropdown-icon ui-icon-message"></i></a></div></li><li class="button-item"><div class="dropdown dropdown notification-dropdown notify-dropdown theme-m-content"><a class="cursor dropdown-handle nav_link hr_nav_notifications_link js-dropdown-toggle js-link" data-toggle="dropdown" data-analytics="NavBarNotificationsIcon"><i class="dropdown-icon ui-icon-notification"></i></a></div></li><li class="button-item"><div class="dropdown dropdown dropdown-auth profile-menu cursor theme-m-content"><a class="backbone nav_link js-dropdown-toggle js-link toggle-wrap" data-analytics="NavBarProfileDropDown"><img src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/150x150.png" alt="" class="avatar"><span class="mmR username text-ellipsis">eklavya27</span><i class="ui-icon-chevron-down down-icon"></i></a><div class="dropdown-menu drop-list pull-right"><ul><li class="hide-in-private-contest profile-nav-item"><a class="navigation_hackos hackos-count" data-analytics="NavBarProfileDropDownHackos" href="https://www.hackerrank.com/eklavya27/hackos">Hackos: <span class="navigation_hackos-count">1436</span></a></li><li class="hide-in-private-contest profile-nav-item"><a rel="tooltip" data-placement="left" data-analytics="NavBarProfileDropDownProfile" class="d-flex justify-content-between mmT mmB" href="https://www.hackerrank.com/eklavya27">Profile<div class="ui-circular-progress-bar theme-m" style="width:40px" aria-live="polite"><progress class="sr-only" value="56" max="100"></progress><svg viewBox="0 0 36 36" class="ui-circular-progress-bar-container"><path class="track-background" style="stroke:transparent" d="M18 2.0845 a 15.9155 15.9155 0 0 1 0 31.831 a 15.9155 15.9155 0 0 1 0 -31.831"></path><path class="track" style="stroke:rgb(27, 169, 76)" stroke-dasharray="56, 100" d="M18 2.0845 a 15.9155 15.9155 0 0 1 0 31.831 a 15.9155 15.9155 0 0 1 0 -31.831"></path><text x="18" y="18.5" class="percentage small" dominant-baseline="middle" text-anchor="middle" style="fill:rgb(27, 169, 76)">56%</text></svg></div></a></li><li class="hide-in-private-contest profile-nav-item"><a href="https://www.hackerrank.com/settings" data-analytics="NavBarProfileDropDownSettings">Settings</a></li><li class="hide-in-private-contest profile-nav-item"><a href="https://www.hackerrank.com/challenges/bookmarks" data-analytics="NavBarDropDownBookmarks">Bookmarks</a></li><li class="hide-in-private-contest profile-nav-item"><a href="https://www.hackerrank.com/network" data-analytics="NavBarProfileDropDownNetwork">Network</a></li><li class="hide-in-private-contest profile-nav-item"><a href="https://www.hackerrank.com/submissions" data-analytics="NavBarProfileDropDownSubmissions">Submissions</a></li><li class="hide-in-private-contest profile-nav-item"><a href="https://www.hackerrank.com/administration" data-analytics="NavBarProfileDropDownAdministration">Administration</a></li><li class="profile-nav-item"><a class="logout-button js-link" data-analytics="NavBarProfileDropDownLogout">Logout</a></li></ul></div></div></li></ul></div></div></nav></div><header class="community-header-breadcrumb"><div class="container"><div class="d-flex justify-content-between align-items-center content-header-wrapper"><div class="community-header-breadcrumb-items"><ol itemtype="http://schema.org/BreadcrumbList" class="community-breadcrumb text-content ellipsis"><li itemprop="itemListElement" itemtype="http://schema.org/ListItem" class="breadcrumb-item"><a itemprop="item" class="breadcrumb-link" data-analytics="Breadcrumb" data-attr1="Practice" data-attr2="global" data-attr7="1" href="https://www.hackerrank.com/dashboard"><span itemprop="name" class="breadcrumb-item-text">Practice</span></a><meta itemprop="position" content="1"></li><li itemprop="itemListElement" itemtype="http://schema.org/ListItem" class="breadcrumb-item"><span class="ui-icon-chevron-right mmL mmR chevron-icon"></span><a itemprop="item" class="breadcrumb-link" data-analytics="Breadcrumb" data-attr1="Algorithms" data-attr2="global" data-attr7="1" href="https://www.hackerrank.com/domains/algorithms"><span itemprop="name" class="breadcrumb-item-text">Algorithms</span></a><meta itemprop="position" content="1"></li><li itemprop="itemListElement" itemtype="http://schema.org/ListItem" class="breadcrumb-item"><span class="ui-icon-chevron-right mmL mmR chevron-icon"></span><a itemprop="item" class="breadcrumb-link" data-analytics="Breadcrumb" data-attr1="Implementation" data-attr2="global" data-attr7="1" href="https://www.hackerrank.com/domains/algorithms/implementation"><span itemprop="name" class="breadcrumb-item-text">Implementation</span></a><meta itemprop="position" content="1"></li><li itemprop="itemListElement" itemtype="http://schema.org/ListItem" class="breadcrumb-item"><span class="ui-icon-chevron-right mmL mmR chevron-icon"></span><span itemprop="name" class="breadcrumb-item-text">Climbing the Leaderboard</span><meta itemprop="position" content="1"></li></ol><div class="page-label-wrapper text-headline"><h1 class="page-label"><div class="challenge-page-label-wrapper align-items-center"><h1 class="ui-icon-label page-label">Climbing the Leaderboard</h1><button class="ui-btn ui-btn-normal ui-btn-plain star-button" aria-label="Add bookmark"><div class="ui-content align-icon-right"><span class="ui-text"><i class="icon-bookmark star-icon ui-icon-star"></i></span></div></button></div></h1></div></div><div class="community-header-aside"><div class="challenge-header-aside"><div class="track-badge-progress"><div class="badge-progress"><div class="remaining"><div class="point-left-wrap"><span class="point-left">717.69 more points</span> to get your next star!</div><div class="track-progress-bar"><div class="ui-progress-bar progress-bar theme-default"><div class="progress-filler" style="width: 47%;"></div></div></div><div class="score-info"><span class="current-rank">Rank: <span class="value">54538</span></span><span class="pipe">|</span><span class="current-points">Points: <span class="value">1482.31/2200</span></span><a class="scoring-link" data-analytics="BadgeLearnMoreLink" data-attr1="problem-solving" target="_blank" href="https://www.hackerrank.com/scoring"><i class="scoring-icon ui-icon-warning-hexagon"></i></a></div></div><div location="[object Object]" params="[object Object]" router="[object Object]" class="ui-badge level-gold"><div class="ui-badge-wrap"><svg viewBox="0 0 91.66667 100" class="hexagon"><g><defs><linearGradient id="badge-gold-gradient" x1="52.5" y1="2.5" x2="52.5" y2="102.5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#f9d641"></stop><stop offset="1" stop-color="#f8bc36"></stop></linearGradient></defs><path fill="url(#badge-gold-gradient)" d="M98.28277,47.36h0c-.18459-9.382-.87983-17.797-2.0917-19.8595-1.02214-1.742-6.1721-5.43476-12.6195-9.45853L66.3804,8.23311C59.94162,4.89541,54.4699,2.5,52.49778,2.5c-2.42987,0-10.17687,3.63131-18.49789,8.18049-6.30411,3.44623-12.9328,7.41557-17.83631,10.74623-3.85037,2.61278-6.63864,4.828-7.35893,6.07393-.73574,1.27216-1.28014,4.91124-1.63613,9.67794l-.00014-.00008c-.45195,6.03951-.599,13.88935-.43933,21.10033.20233,9.11082.89243,17.18541,2.07561,19.22049C11.66541,82.42328,46.78277,102.5,52.49778,102.5c2.374,0,9.82245-3.47115,17.92388-7.87722,6.4-3.48081,13.19866-7.5418,18.23618-10.9459l-.00046-.00026c3.93694-2.6605,6.80064-4.91944,7.53385-6.17728.72907-1.2482,1.27024-4.80557,1.62881-9.48065l-.00014-.00008C98.269,62.13222,98.42408,54.47227,98.28277,47.36Z" transform="translate(-6.66667 -2.5)"></path></g><image class="badge-icon" xlink:href="https://hrcdn.net/community-frontend/assets/badges/problem-solving-ecaf59a612.svg" x="50%" y="22" height="27" width="27" transform="translate(-13.5, 0)"></image><text class="badge-title" x="50%" y="65.5" font-size="10">Problem Solving</text><g class="star-section" transform="translate(-21.5, 0)"><svg x="50%" y="71" height="10"><svg class="badge-star" viewBox="0 0 6.54904 6.25825" width="7" x="0"><path class="star" d="M55.51425,77.01983l-1.89417-.275-.84833-1.7175a.299.299,0,0,0-.27167-.16917.3245.3245,0,0,0-.2725.16917l-.305.61833-.5425,1.09916-.51417.075-1.38.2a.30333.30333,0,0,0-.18583.10083.33411.33411,0,0,0-.045.06833.35631.35631,0,0,0-.02417.07667.34087.34087,0,0,0-.005.04083.3038.3038,0,0,0,.02417.13417.33341.33341,0,0,0,.06667.0975l1.37167,1.33667-.2875,1.67167-.03667.21417c-.00167.01-.00167.02-.0025.02917l-.00167.0175a.26453.26453,0,0,0,.00167.04417.30489.30489,0,0,0,.44417.22917l1.69417-.89,1.69416.89a.30352.30352,0,0,0,.44084-.32L54.31175,78.874l1.37083-1.33667a.30339.30339,0,0,0-.16833-.5175" transform="translate(-49.22548 -74.85817)"></path></svg><svg class="badge-star" viewBox="0 0 6.54904 6.25825" width="7" x="9"><path class="star" d="M55.51425,77.01983l-1.89417-.275-.84833-1.7175a.299.299,0,0,0-.27167-.16917.3245.3245,0,0,0-.2725.16917l-.305.61833-.5425,1.09916-.51417.075-1.38.2a.30333.30333,0,0,0-.18583.10083.33411.33411,0,0,0-.045.06833.35631.35631,0,0,0-.02417.07667.34087.34087,0,0,0-.005.04083.3038.3038,0,0,0,.02417.13417.33341.33341,0,0,0,.06667.0975l1.37167,1.33667-.2875,1.67167-.03667.21417c-.00167.01-.00167.02-.0025.02917l-.00167.0175a.26453.26453,0,0,0,.00167.04417.30489.30489,0,0,0,.44417.22917l1.69417-.89,1.69416.89a.30352.30352,0,0,0,.44084-.32L54.31175,78.874l1.37083-1.33667a.30339.30339,0,0,0-.16833-.5175" transform="translate(-49.22548 -74.85817)"></path></svg><svg class="badge-star" viewBox="0 0 6.54904 6.25825" width="7" x="18"><path class="star" d="M55.51425,77.01983l-1.89417-.275-.84833-1.7175a.299.299,0,0,0-.27167-.16917.3245.3245,0,0,0-.2725.16917l-.305.61833-.5425,1.09916-.51417.075-1.38.2a.30333.30333,0,0,0-.18583.10083.33411.33411,0,0,0-.045.06833.35631.35631,0,0,0-.02417.07667.34087.34087,0,0,0-.005.04083.3038.3038,0,0,0,.02417.13417.33341.33341,0,0,0,.06667.0975l1.37167,1.33667-.2875,1.67167-.03667.21417c-.00167.01-.00167.02-.0025.02917l-.00167.0175a.26453.26453,0,0,0,.00167.04417.30489.30489,0,0,0,.44417.22917l1.69417-.89,1.69416.89a.30352.30352,0,0,0,.44084-.32L54.31175,78.874l1.37083-1.33667a.30339.30339,0,0,0-.16833-.5175" transform="translate(-49.22548 -74.85817)"></path></svg><svg class="badge-star" viewBox="0 0 6.54904 6.25825" width="7" x="27"><path class="star" d="M55.51425,77.01983l-1.89417-.275-.84833-1.7175a.299.299,0,0,0-.27167-.16917.3245.3245,0,0,0-.2725.16917l-.305.61833-.5425,1.09916-.51417.075-1.38.2a.30333.30333,0,0,0-.18583.10083.33411.33411,0,0,0-.045.06833.35631.35631,0,0,0-.02417.07667.34087.34087,0,0,0-.005.04083.3038.3038,0,0,0,.02417.13417.33341.33341,0,0,0,.06667.0975l1.37167,1.33667-.2875,1.67167-.03667.21417c-.00167.01-.00167.02-.0025.02917l-.00167.0175a.26453.26453,0,0,0,.00167.04417.30489.30489,0,0,0,.44417.22917l1.69417-.89,1.69416.89a.30352.30352,0,0,0,.44084-.32L54.31175,78.874l1.37083-1.33667a.30339.30339,0,0,0-.16833-.5175" transform="translate(-49.22548 -74.85817)"></path></svg><svg class="badge-star" viewBox="0 0 6.54904 6.25825" width="7" x="36"><path class="star" d="M55.51425,77.01983l-1.89417-.275-.84833-1.7175a.299.299,0,0,0-.27167-.16917.3245.3245,0,0,0-.2725.16917l-.305.61833-.5425,1.09916-.51417.075-1.38.2a.30333.30333,0,0,0-.18583.10083.33411.33411,0,0,0-.045.06833.35631.35631,0,0,0-.02417.07667.34087.34087,0,0,0-.005.04083.3038.3038,0,0,0,.02417.13417.33341.33341,0,0,0,.06667.0975l1.37167,1.33667-.2875,1.67167-.03667.21417c-.00167.01-.00167.02-.0025.02917l-.00167.0175a.26453.26453,0,0,0,.00167.04417.30489.30489,0,0,0,.44417.22917l1.69417-.89,1.69416.89a.30352.30352,0,0,0,.44084-.32L54.31175,78.874l1.37083-1.33667a.30339.30339,0,0,0-.16833-.5175" transform="translate(-49.22548 -74.85817)"></path></svg></svg></g></svg></div></div></div></div></div></div></div></div></header><div class="container"></div><div class="community-content"><div class="challenge-view theme-m"><div class="challenge-page-header container"><div class="ui-tabs-wrap"><div class="render-list clearfix"><ul class="tab-header"><li id="Problem" class="tab-item active"><a class="tab-item-color" data-analytics="ChallengeViewTab" data-attr1="/challenges/climbing-the-leaderboard/problem" data-attr2="Problem" data-attr3="no_full_screen" href="https://www.hackerrank.com/challenges/climbing-the-leaderboard/problem"><span class="ui-icon-label">Problem</span></a></li><li id="Submissions" class="tab-item"><a class="tab-item-color" data-analytics="ChallengeViewTab" data-attr1="/challenges/climbing-the-leaderboard/submissions" data-attr2="Submissions" data-attr3="no_full_screen" href="https://www.hackerrank.com/challenges/climbing-the-leaderboard/submissions"><span class="ui-icon-label">Submissions</span></a></li><li id="Leaderboard" class="tab-item"><a class="tab-item-color" data-analytics="ChallengeViewTab" data-attr1="/challenges/climbing-the-leaderboard/leaderboard" data-attr2="Leaderboard" data-attr3="no_full_screen" href="https://www.hackerrank.com/challenges/climbing-the-leaderboard/leaderboard"><span class="ui-icon-label">Leaderboard</span></a></li><li id="Discussions" class="tab-item"><a class="tab-item-color" data-analytics="ChallengeViewTab" data-attr1="/challenges/climbing-the-leaderboard/forum" data-attr2="Discussions" data-attr3="no_full_screen" href="https://www.hackerrank.com/challenges/climbing-the-leaderboard/forum"><span class="ui-icon-label">Discussions</span></a></li><li id="Editorial" class="tab-item"><a class="tab-item-color" data-analytics="ChallengeViewTab" data-attr1="/challenges/climbing-the-leaderboard/editorial" data-attr2="Editorial" data-attr3="no_full_screen" href="https://www.hackerrank.com/challenges/climbing-the-leaderboard/editorial"><span class="ui-icon-label">Editorial</span></a></li></ul></div></div></div><section class="challenge-interface challenge-problem"><div class="challenge-body"><div class="challenge-body-elements-problem challenge-container-element"><div class="full-screen-view"><div class="full-screeen-header"><div class="align-left-conatiner"><div class="nav-link-item logo-wrap"><a data-analytics="NavBarLogo" class="nav-link-home" href="https://www.hackerrank.com/dashboard"><img id="feed-intro" class="logo-img-small" src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/logo-new-white-green-a5cb16e0ae.svg" alt=""></a></div><ol itemtype="http://schema.org/BreadcrumbList" class="community-breadcrumb text-content"><li itemprop="itemListElement" itemtype="http://schema.org/ListItem" class="breadcrumb-item"><a itemprop="item" class="breadcrumb-link" data-analytics="Breadcrumb" data-attr1="Practice" data-attr2="global" data-attr7="1" href="https://www.hackerrank.com/dashboard"><span itemprop="name" class="breadcrumb-item-text">Practice</span></a><meta itemprop="position" content="1"></li><li itemprop="itemListElement" itemtype="http://schema.org/ListItem" class="breadcrumb-item"><span class="ui-icon-chevron-right mmL mmR chevron-icon"></span><a itemprop="item" class="breadcrumb-link" data-analytics="Breadcrumb" data-attr1="Algorithms" data-attr2="global" data-attr7="1" href="https://www.hackerrank.com/domains/algorithms"><span itemprop="name" class="breadcrumb-item-text">Algorithms</span></a><meta itemprop="position" content="1"></li><li itemprop="itemListElement" itemtype="http://schema.org/ListItem" class="breadcrumb-item"><span class="ui-icon-chevron-right mmL mmR chevron-icon"></span><a itemprop="item" class="breadcrumb-link" data-analytics="Breadcrumb" data-attr1="Implementation" data-attr2="global" data-attr7="1" href="https://www.hackerrank.com/domains/algorithms/implementation"><span itemprop="name" class="breadcrumb-item-text">Implementation</span></a><meta itemprop="position" content="1"></li><li itemprop="itemListElement" itemtype="http://schema.org/ListItem" class="breadcrumb-item"><span class="ui-icon-chevron-right mmL mmR chevron-icon"></span><span itemprop="name" class="breadcrumb-item-text">Climbing the Leaderboard</span><meta itemprop="position" content="1"></li></ol></div><div class="align-right-container"><a class="restoreScreen active-link no-select" data-analytics="Exit fullscreen"><span>Exit Full Screen View</span><i class="ui-icon-restore-size"></i></a></div></div><div class="contents-wrapper"><div class="fs-pains-container" style=""><div class="fs-left-pane" style="width: calc(45.9553% - 6px); position: relative;"><div class="left-pane-container"><div class="full-screen-sidebar" style="transform: translate3d(0px, 0px, 0px);"><div class="extra-sidebar-wrapper"><div class="sidebar-container"><ul class="sidebar-list"><li class="tab-item active"><a class="tab-item-color" data-analytics="ChallengeViewTab" data-attr1="/challenges/climbing-the-leaderboard/problem" data-attr2="Problem" data-attr3="full_screen" href="https://www.hackerrank.com/challenges/climbing-the-leaderboard/problem"><span class="ui-icon-label">Problem</span></a></li><li class="tab-item"><a class="tab-item-color" data-analytics="ChallengeViewTab" data-attr1="/challenges/climbing-the-leaderboard/submissions" data-attr2="Submissions" data-attr3="full_screen" href="https://www.hackerrank.com/challenges/climbing-the-leaderboard/submissions"><span class="ui-icon-label">Submissions</span></a></li><li class="tab-item"><a class="tab-item-color" data-analytics="ChallengeViewTab" data-attr1="/challenges/climbing-the-leaderboard/leaderboard" data-attr2="Leaderboard" data-attr3="full_screen" href="https://www.hackerrank.com/challenges/climbing-the-leaderboard/leaderboard"><span class="ui-icon-label">Leaderboard</span></a></li><li class="tab-item"><a class="tab-item-color" data-analytics="ChallengeViewTab" data-attr1="/challenges/climbing-the-leaderboard/forum" data-attr2="Discussions" data-attr3="full_screen" href="https://www.hackerrank.com/challenges/climbing-the-leaderboard/forum"><span class="ui-icon-label">Discussions</span></a></li><li class="tab-item"><a class="tab-item-color" data-analytics="ChallengeViewTab" data-attr1="/challenges/climbing-the-leaderboard/editorial" data-attr2="Editorial" data-attr3="full_screen" href="https://www.hackerrank.com/challenges/climbing-the-leaderboard/editorial"><span class="ui-icon-label">Editorial</span></a></li></ul></div></div></div><div class="left-pane-content" style="transform: translate3d(0px, 0px, 0px);"><div id="fullScreenLeftPane" class="problem-statement-container"><div class="theme-m hr_tour-problem-statement problem-statement have-external-links"><div class="content-text challenge-text mlB hackdown-container theme-m"><div class="challenge-body-html"><div class="challenge_problem_statement"><div class="msB challenge_problem_statement_body"><div class="hackdown-content"><style id="MathJax_SVG_styles">.MathJax_SVG_Display {text-align: center; margin: 1em 0em; position: relative; display: block!important; text-indent: 0; max-width: none; max-height: none; min-width: 0; min-height: 0; width: 100%}
.MathJax_SVG .MJX-monospace {font-family: monospace}
.MathJax_SVG .MJX-sans-serif {font-family: sans-serif}
.MathJax_SVG {display: inline; font-style: normal; font-weight: normal; line-height: normal; font-size: 100%; font-size-adjust: none; text-indent: 0; text-align: left; text-transform: none; letter-spacing: normal; word-spacing: normal; word-wrap: normal; white-space: nowrap; float: none; direction: ltr; max-width: none; max-height: none; min-width: 0; min-height: 0; border: 0; padding: 0; margin: 0}
.MathJax_SVG * {transition: none; -webkit-transition: none; -moz-transition: none; -ms-transition: none; -o-transition: none}
.mjx-svg-href {fill: blue; stroke: blue}
.MathJax_SVG_LineBox {display: table!important}
.MathJax_SVG_LineBox span {display: table-cell!important; width: 10000em!important; min-width: 0; max-width: none; padding: 0; border: 0; margin: 0}
</style><svg style="display: none;"><defs id="MathJax_SVG_glyphs"></defs></svg><p>Alice is playing an arcade game and wants to climb to the top of the leaderboard and wants to track her ranking. The game uses <a href="https://en.wikipedia.org/wiki/Ranking#Dense_ranking_.28.221223.22_ranking.29">Dense Ranking</a>, so its leaderboard works like this: </p>
<ul>
<li>The player with the highest score is ranked number <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-1-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path></g></svg></span> on the leaderboard. </li>
<li>Players who have equal scores receive the same ranking number, and
the next player(s) receive the immediately following ranking number.</li>
</ul>
<p>For example, the four players on the leaderboard have high scores of <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-2-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="3.487ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 1501.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(500,0)"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(1001,0)"></path></g></svg></span>, <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-3-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="2.325ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 1001 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M352 287Q304 211 232 211Q154 211 104 270T44 396Q42 412 42 436V444Q42 537 111 606Q171 666 243 666Q245 666 249 666T257 665H261Q273 665 286 663T323 651T370 619T413 560Q456 472 456 334Q456 194 396 97Q361 41 312 10T208 -22Q147 -22 108 7T68 93T121 149Q143 149 158 135T173 96Q173 78 164 65T148 49T135 44L131 43Q131 41 138 37T164 27T206 22H212Q272 22 313 86Q352 142 352 280V287ZM244 248Q292 248 321 297T351 430Q351 508 343 542Q341 552 337 562T323 588T293 615T246 625Q208 625 181 598Q160 576 154 546T147 441Q147 358 152 329T172 282Q197 248 244 248Z"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(500,0)"></path></g></svg></span>, <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-4-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="2.325ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 1001 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M352 287Q304 211 232 211Q154 211 104 270T44 396Q42 412 42 436V444Q42 537 111 606Q171 666 243 666Q245 666 249 666T257 665H261Q273 665 286 663T323 651T370 619T413 560Q456 472 456 334Q456 194 396 97Q361 41 312 10T208 -22Q147 -22 108 7T68 93T121 149Q143 149 158 135T173 96Q173 78 164 65T148 49T135 44L131 43Q131 41 138 37T164 27T206 22H212Q272 22 313 86Q352 142 352 280V287ZM244 248Q292 248 321 297T351 430Q351 508 343 542Q341 552 337 562T323 588T293 615T246 625Q208 625 181 598Q160 576 154 546T147 441Q147 358 152 329T172 282Q197 248 244 248Z"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(500,0)"></path></g></svg></span>, and <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-5-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="2.325ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 1001 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M70 417T70 494T124 618T248 666Q319 666 374 624T429 515Q429 485 418 459T392 417T361 389T335 371T324 363L338 354Q352 344 366 334T382 323Q457 264 457 174Q457 95 399 37T249 -22Q159 -22 101 29T43 155Q43 263 172 335L154 348Q133 361 127 368Q70 417 70 494ZM286 386L292 390Q298 394 301 396T311 403T323 413T334 425T345 438T355 454T364 471T369 491T371 513Q371 556 342 586T275 624Q268 625 242 625Q201 625 165 599T128 534Q128 511 141 492T167 463T217 431Q224 426 228 424L286 386ZM250 21Q308 21 350 55T392 137Q392 154 387 169T375 194T353 216T330 234T301 253T274 270Q260 279 244 289T218 306L210 311Q204 311 181 294T133 239T107 157Q107 98 150 60T250 21Z"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(500,0)"></path></g></svg></span>. Those players will have ranks <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-6-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path></g></svg></span>, <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-7-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path></g></svg></span>, <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-8-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path></g></svg></span>, and <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-9-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M127 463Q100 463 85 480T69 524Q69 579 117 622T233 665Q268 665 277 664Q351 652 390 611T430 522Q430 470 396 421T302 350L299 348Q299 347 308 345T337 336T375 315Q457 262 457 175Q457 96 395 37T238 -22Q158 -22 100 21T42 130Q42 158 60 175T105 193Q133 193 151 175T169 130Q169 119 166 110T159 94T148 82T136 74T126 70T118 67L114 66Q165 21 238 21Q293 21 321 74Q338 107 338 175V195Q338 290 274 322Q259 328 213 329L171 330L168 332Q166 335 166 348Q166 366 174 366Q202 366 232 371Q266 376 294 413T322 525V533Q322 590 287 612Q265 626 240 626Q208 626 181 615T143 592T132 580H135Q138 579 143 578T153 573T165 566T175 555T183 540T186 520Q186 498 172 481T127 463Z"></path></g></svg></span>, respectively. If Alice's scores are <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-10-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="2.325ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 1001 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M55 458Q56 460 72 567L88 674Q88 676 108 676H128V672Q128 662 143 655T195 646T364 644H485V605L417 512Q408 500 387 472T360 435T339 403T319 367T305 330T292 284T284 230T278 162T275 80Q275 66 275 52T274 28V19Q270 2 255 -10T221 -22Q210 -22 200 -19T179 0T168 40Q168 198 265 368Q285 400 349 489L395 552H302Q128 552 119 546Q113 543 108 522T98 479L95 458V455H55V458Z"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(500,0)"></path></g></svg></span>, <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-11-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="2.325ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 1001 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M70 417T70 494T124 618T248 666Q319 666 374 624T429 515Q429 485 418 459T392 417T361 389T335 371T324 363L338 354Q352 344 366 334T382 323Q457 264 457 174Q457 95 399 37T249 -22Q159 -22 101 29T43 155Q43 263 172 335L154 348Q133 361 127 368Q70 417 70 494ZM286 386L292 390Q298 394 301 396T311 403T323 413T334 425T345 438T355 454T364 471T369 491T371 513Q371 556 342 586T275 624Q268 625 242 625Q201 625 165 599T128 534Q128 511 141 492T167 463T217 431Q224 426 228 424L286 386ZM250 21Q308 21 350 55T392 137Q392 154 387 169T375 194T353 216T330 234T301 253T274 270Q260 279 244 289T218 306L210 311Q204 311 181 294T133 239T107 157Q107 98 150 60T250 21Z"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(500,0)"></path></g></svg></span> and <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-12-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="3.487ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 1501.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(500,0)"></path><path stroke-width="1" d="M164 157Q164 133 148 117T109 101H102Q148 22 224 22Q294 22 326 82Q345 115 345 210Q345 313 318 349Q292 382 260 382H254Q176 382 136 314Q132 307 129 306T114 304Q97 304 95 310Q93 314 93 485V614Q93 664 98 664Q100 666 102 666Q103 666 123 658T178 642T253 634Q324 634 389 662Q397 666 402 666Q410 666 410 648V635Q328 538 205 538Q174 538 149 544L139 546V374Q158 388 169 396T205 412T256 420Q337 420 393 355T449 201Q449 109 385 44T229 -22Q148 -22 99 32T50 154Q50 178 61 192T84 210T107 214Q132 214 148 197T164 157Z" transform="translate(1001,0)"></path></g></svg></span>, her rankings after each game are <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-13-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="2.935ex" height="2.676ex" style="vertical-align: -0.338ex;" viewBox="0 -1006.6 1263.8 1152.1" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M462 0Q444 3 333 3Q217 3 199 0H190V46H221Q241 46 248 46T265 48T279 53T286 61Q287 63 287 115V165H28V211L179 442Q332 674 334 675Q336 677 355 677H373L379 671V211H471V165H379V114Q379 73 379 66T385 54Q393 47 442 46H471V0H462ZM293 211V545L74 212L183 211H293Z"></path><g transform="translate(500,404)"><path stroke-width="1" transform="scale(0.707)" d="M26 385Q19 392 19 395Q19 399 22 411T27 425Q29 430 36 430T87 431H140L159 511Q162 522 166 540T173 566T179 586T187 603T197 615T211 624T229 626Q247 625 254 615T261 596Q261 589 252 549T232 470L222 433Q222 431 272 431H323Q330 424 330 420Q330 398 317 385H210L174 240Q135 80 135 68Q135 26 162 26Q197 26 230 60T283 144Q285 150 288 151T303 153H307Q322 153 322 145Q322 142 319 133Q314 117 301 95T267 48T216 6T155 -11Q125 -11 98 4T59 56Q57 64 57 83V101L92 241Q127 382 128 383Q128 385 77 385H26Z"></path><g transform="translate(255,0)"><path stroke-width="1" transform="scale(0.707)" d="M137 683Q138 683 209 688T282 694Q294 694 294 685Q294 674 258 534Q220 386 220 383Q220 381 227 388Q288 442 357 442Q411 442 444 415T478 336Q478 285 440 178T402 50Q403 36 407 31T422 26Q450 26 474 56T513 138Q516 149 519 151T535 153Q555 153 555 145Q555 144 551 130Q535 71 500 33Q466 -10 419 -10H414Q367 -10 346 17T325 74Q325 90 361 192T398 345Q398 404 354 404H349Q266 404 205 306L198 293L164 158Q132 28 127 16Q114 -11 83 -11Q69 -11 59 -2T48 16Q48 30 121 320L195 616Q195 629 188 632T149 637H128Q122 643 122 645T124 664Q129 683 137 683Z"></path></g></g></g></svg></span>, <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-14-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="2.996ex" height="2.676ex" style="vertical-align: -0.338ex;" viewBox="0 -1006.6 1289.9 1152.1" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M127 463Q100 463 85 480T69 524Q69 579 117 622T233 665Q268 665 277 664Q351 652 390 611T430 522Q430 470 396 421T302 350L299 348Q299 347 308 345T337 336T375 315Q457 262 457 175Q457 96 395 37T238 -22Q158 -22 100 21T42 130Q42 158 60 175T105 193Q133 193 151 175T169 130Q169 119 166 110T159 94T148 82T136 74T126 70T118 67L114 66Q165 21 238 21Q293 21 321 74Q338 107 338 175V195Q338 290 274 322Q259 328 213 329L171 330L168 332Q166 335 166 348Q166 366 174 366Q202 366 232 371Q266 376 294 413T322 525V533Q322 590 287 612Q265 626 240 626Q208 626 181 615T143 592T132 580H135Q138 579 143 578T153 573T165 566T175 555T183 540T186 520Q186 498 172 481T127 463Z"></path><g transform="translate(500,392)"><path stroke-width="1" transform="scale(0.707)" d="M21 287Q22 290 23 295T28 317T38 348T53 381T73 411T99 433T132 442Q161 442 183 430T214 408T225 388Q227 382 228 382T236 389Q284 441 347 441H350Q398 441 422 400Q430 381 430 363Q430 333 417 315T391 292T366 288Q346 288 334 299T322 328Q322 376 378 392Q356 405 342 405Q286 405 239 331Q229 315 224 298T190 165Q156 25 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 114 189T154 366Q154 405 128 405Q107 405 92 377T68 316T57 280Q55 278 41 278H27Q21 284 21 287Z"></path><g transform="translate(319,0)"><path stroke-width="1" transform="scale(0.707)" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path></g></g></g></svg></span> and <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-15-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="2.759ex" height="2.509ex" style="vertical-align: -0.338ex;" viewBox="0 -934.9 1188.1 1080.4" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path><g transform="translate(500,393)"><path stroke-width="1" transform="scale(0.707)" d="M131 289Q131 321 147 354T203 415T300 442Q362 442 390 415T419 355Q419 323 402 308T364 292Q351 292 340 300T328 326Q328 342 337 354T354 372T367 378Q368 378 368 379Q368 382 361 388T336 399T297 405Q249 405 227 379T204 326Q204 301 223 291T278 274T330 259Q396 230 396 163Q396 135 385 107T352 51T289 7T195 -10Q118 -10 86 19T53 87Q53 126 74 143T118 160Q133 160 146 151T160 120Q160 94 142 76T111 58Q109 57 108 57T107 55Q108 52 115 47T146 34T201 27Q237 27 263 38T301 66T318 97T323 122Q323 150 302 164T254 181T195 196T148 231Q131 256 131 289Z"></path><g transform="translate(331,0)"><path stroke-width="1" transform="scale(0.707)" d="M26 385Q19 392 19 395Q19 399 22 411T27 425Q29 430 36 430T87 431H140L159 511Q162 522 166 540T173 566T179 586T187 603T197 615T211 624T229 626Q247 625 254 615T261 596Q261 589 252 549T232 470L222 433Q222 431 272 431H323Q330 424 330 420Q330 398 317 385H210L174 240Q135 80 135 68Q135 26 162 26Q197 26 230 60T283 144Q285 150 288 151T303 153H307Q322 153 322 145Q322 142 319 133Q314 117 301 95T267 48T216 6T155 -11Q125 -11 98 4T59 56Q57 64 57 83V101L92 241Q127 382 128 383Q128 385 77 385H26Z"></path></g></g></g></svg></span>. </p>
<p><strong>Function Description</strong> </p>
<p>Complete the <em>climbingLeaderboard</em> function in the editor below. It should return an integer array where each element <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-16-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="5.474ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 2357 1223.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M21 287Q22 290 23 295T28 317T38 348T53 381T73 411T99 433T132 442Q161 442 183 430T214 408T225 388Q227 382 228 382T236 389Q284 441 347 441H350Q398 441 422 400Q430 381 430 363Q430 333 417 315T391 292T366 288Q346 288 334 299T322 328Q322 376 378 392Q356 405 342 405Q286 405 239 331Q229 315 224 298T190 165Q156 25 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 114 189T154 366Q154 405 128 405Q107 405 92 377T68 316T57 280Q55 278 41 278H27Q21 284 21 287Z"></path><g transform="translate(451,0)"><path stroke-width="1" d="M39 168Q39 225 58 272T107 350T174 402T244 433T307 442H310Q355 442 388 420T421 355Q421 265 310 237Q261 224 176 223Q139 223 138 221Q138 219 132 186T125 128Q125 81 146 54T209 26T302 45T394 111Q403 121 406 121Q410 121 419 112T429 98T420 82T390 55T344 24T281 -1T205 -11Q126 -11 83 42T39 168ZM373 353Q367 405 305 405Q272 405 244 391T199 357T170 316T154 280T149 261Q149 260 169 260Q282 260 327 284T373 353Z"></path></g><g transform="translate(918,0)"><path stroke-width="1" d="M131 289Q131 321 147 354T203 415T300 442Q362 442 390 415T419 355Q419 323 402 308T364 292Q351 292 340 300T328 326Q328 342 337 354T354 372T367 378Q368 378 368 379Q368 382 361 388T336 399T297 405Q249 405 227 379T204 326Q204 301 223 291T278 274T330 259Q396 230 396 163Q396 135 385 107T352 51T289 7T195 -10Q118 -10 86 19T53 87Q53 126 74 143T118 160Q133 160 146 151T160 120Q160 94 142 76T111 58Q109 57 108 57T107 55Q108 52 115 47T146 34T201 27Q237 27 263 38T301 66T318 97T323 122Q323 150 302 164T254 181T195 196T148 231Q131 256 131 289Z"></path></g><g transform="translate(1387,0)"><path stroke-width="1" d="M118 -250V750H255V710H158V-210H255V-250H118Z"></path></g><g transform="translate(1666,0)"><path stroke-width="1" d="M297 596Q297 627 318 644T361 661Q378 661 389 651T403 623Q403 595 384 576T340 557Q322 557 310 567T297 596ZM288 376Q288 405 262 405Q240 405 220 393T185 362T161 325T144 293L137 279Q135 278 121 278H107Q101 284 101 286T105 299Q126 348 164 391T252 441Q253 441 260 441T272 442Q296 441 316 432Q341 418 354 401T367 348V332L318 133Q267 -67 264 -75Q246 -125 194 -164T75 -204Q25 -204 7 -183T-12 -137Q-12 -110 7 -91T53 -71Q70 -71 82 -81T95 -112Q95 -148 63 -167Q69 -168 77 -168Q111 -168 139 -140T182 -74L193 -32Q204 11 219 72T251 197T278 308T289 365Q289 372 288 376Z"></path></g><g transform="translate(2078,0)"><path stroke-width="1" d="M22 710V750H159V-250H22V-210H119V710H22Z"></path></g></g></svg></span> represents Alice's rank after the <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-17-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="2.758ex" height="2.843ex" style="vertical-align: -0.671ex;" viewBox="-11.5 -934.9 1187.3 1223.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M297 596Q297 627 318 644T361 661Q378 661 389 651T403 623Q403 595 384 576T340 557Q322 557 310 567T297 596ZM288 376Q288 405 262 405Q240 405 220 393T185 362T161 325T144 293L137 279Q135 278 121 278H107Q101 284 101 286T105 299Q126 348 164 391T252 441Q253 441 260 441T272 442Q296 441 316 432Q341 418 354 401T367 348V332L318 133Q267 -67 264 -75Q246 -125 194 -164T75 -204Q25 -204 7 -183T-12 -137Q-12 -110 7 -91T53 -71Q70 -71 82 -81T95 -112Q95 -148 63 -167Q69 -168 77 -168Q111 -168 139 -140T182 -74L193 -32Q204 11 219 72T251 197T278 308T289 365Q289 372 288 376Z"></path><g transform="translate(412,362)"><path stroke-width="1" transform="scale(0.707)" d="M26 385Q19 392 19 395Q19 399 22 411T27 425Q29 430 36 430T87 431H140L159 511Q162 522 166 540T173 566T179 586T187 603T197 615T211 624T229 626Q247 625 254 615T261 596Q261 589 252 549T232 470L222 433Q222 431 272 431H323Q330 424 330 420Q330 398 317 385H210L174 240Q135 80 135 68Q135 26 162 26Q197 26 230 60T283 144Q285 150 288 151T303 153H307Q322 153 322 145Q322 142 319 133Q314 117 301 95T267 48T216 6T155 -11Q125 -11 98 4T59 56Q57 64 57 83V101L92 241Q127 382 128 383Q128 385 77 385H26Z"></path><g transform="translate(255,0)"><path stroke-width="1" transform="scale(0.707)" d="M137 683Q138 683 209 688T282 694Q294 694 294 685Q294 674 258 534Q220 386 220 383Q220 381 227 388Q288 442 357 442Q411 442 444 415T478 336Q478 285 440 178T402 50Q403 36 407 31T422 26Q450 26 474 56T513 138Q516 149 519 151T535 153Q555 153 555 145Q555 144 551 130Q535 71 500 33Q466 -10 419 -10H414Q367 -10 346 17T325 74Q325 90 361 192T398 345Q398 404 354 404H349Q266 404 205 306L198 293L164 158Q132 28 127 16Q114 -11 83 -11Q69 -11 59 -2T48 16Q48 30 121 320L195 616Q195 629 188 632T149 637H128Q122 643 122 645T124 664Q129 683 137 683Z"></path></g></g></g></svg></span> game.</p>
<p>climbingLeaderboard has the following parameter(s): </p>
<ul>
<li><em>scores</em>: an array of integers that represent leaderboard scores </li>
<li><em>alice</em>: an array of integers that represent Alice's scores </li>
</ul></div></div></div><div class="challenge_input_format"><div class="msB challenge_input_format_title"><p><strong>Input Format</strong></p></div><div class="msB challenge_input_format_body"><div class="hackdown-content"><style id="MathJax_SVG_styles">.MathJax_SVG_Display {text-align: center; margin: 1em 0em; position: relative; display: block!important; text-indent: 0; max-width: none; max-height: none; min-width: 0; min-height: 0; width: 100%}
.MathJax_SVG .MJX-monospace {font-family: monospace}
.MathJax_SVG .MJX-sans-serif {font-family: sans-serif}
.MathJax_SVG {display: inline; font-style: normal; font-weight: normal; line-height: normal; font-size: 100%; font-size-adjust: none; text-indent: 0; text-align: left; text-transform: none; letter-spacing: normal; word-spacing: normal; word-wrap: normal; white-space: nowrap; float: none; direction: ltr; max-width: none; max-height: none; min-width: 0; min-height: 0; border: 0; padding: 0; margin: 0}
.MathJax_SVG * {transition: none; -webkit-transition: none; -moz-transition: none; -ms-transition: none; -o-transition: none}
.mjx-svg-href {fill: blue; stroke: blue}
.MathJax_SVG_LineBox {display: table!important}
.MathJax_SVG_LineBox span {display: table-cell!important; width: 10000em!important; min-width: 0; max-width: none; padding: 0; border: 0; margin: 0}
</style><svg style="display: none;"><defs id="MathJax_SVG_glyphs"></defs></svg><p>The first line contains an integer <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-1-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.395ex" height="1.676ex" style="vertical-align: -0.338ex;" viewBox="0 -576.1 600.5 721.6" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287Z"></path></g></svg></span>, the number of players on the leaderboard. <br>
The next line contains <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-2-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.395ex" height="1.676ex" style="vertical-align: -0.338ex;" viewBox="0 -576.1 600.5 721.6" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287Z"></path></g></svg></span> space-separated integers <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-3-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="8.544ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 3678.5 1223.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M131 289Q131 321 147 354T203 415T300 442Q362 442 390 415T419 355Q419 323 402 308T364 292Q351 292 340 300T328 326Q328 342 337 354T354 372T367 378Q368 378 368 379Q368 382 361 388T336 399T297 405Q249 405 227 379T204 326Q204 301 223 291T278 274T330 259Q396 230 396 163Q396 135 385 107T352 51T289 7T195 -10Q118 -10 86 19T53 87Q53 126 74 143T118 160Q133 160 146 151T160 120Q160 94 142 76T111 58Q109 57 108 57T107 55Q108 52 115 47T146 34T201 27Q237 27 263 38T301 66T318 97T323 122Q323 150 302 164T254 181T195 196T148 231Q131 256 131 289Z"></path><g transform="translate(469,0)"><path stroke-width="1" d="M34 159Q34 268 120 355T306 442Q362 442 394 418T427 355Q427 326 408 306T360 285Q341 285 330 295T319 325T330 359T352 380T366 386H367Q367 388 361 392T340 400T306 404Q276 404 249 390Q228 381 206 359Q162 315 142 235T121 119Q121 73 147 50Q169 26 205 26H209Q321 26 394 111Q403 121 406 121Q410 121 419 112T429 98T420 83T391 55T346 25T282 0T202 -11Q127 -11 81 37T34 159Z"></path></g><g transform="translate(903,0)"><path stroke-width="1" d="M201 -11Q126 -11 80 38T34 156Q34 221 64 279T146 380Q222 441 301 441Q333 441 341 440Q354 437 367 433T402 417T438 387T464 338T476 268Q476 161 390 75T201 -11ZM121 120Q121 70 147 48T206 26Q250 26 289 58T351 142Q360 163 374 216T388 308Q388 352 370 375Q346 405 306 405Q243 405 195 347Q158 303 140 230T121 120Z"></path></g><g transform="translate(1388,0)"><path stroke-width="1" d="M21 287Q22 290 23 295T28 317T38 348T53 381T73 411T99 433T132 442Q161 442 183 430T214 408T225 388Q227 382 228 382T236 389Q284 441 347 441H350Q398 441 422 400Q430 381 430 363Q430 333 417 315T391 292T366 288Q346 288 334 299T322 328Q322 376 378 392Q356 405 342 405Q286 405 239 331Q229 315 224 298T190 165Q156 25 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 114 189T154 366Q154 405 128 405Q107 405 92 377T68 316T57 280Q55 278 41 278H27Q21 284 21 287Z"></path></g><g transform="translate(1840,0)"><path stroke-width="1" d="M39 168Q39 225 58 272T107 350T174 402T244 433T307 442H310Q355 442 388 420T421 355Q421 265 310 237Q261 224 176 223Q139 223 138 221Q138 219 132 186T125 128Q125 81 146 54T209 26T302 45T394 111Q403 121 406 121Q410 121 419 112T429 98T420 82T390 55T344 24T281 -1T205 -11Q126 -11 83 42T39 168ZM373 353Q367 405 305 405Q272 405 244 391T199 357T170 316T154 280T149 261Q149 260 169 260Q282 260 327 284T373 353Z"></path></g><g transform="translate(2306,0)"><path stroke-width="1" d="M131 289Q131 321 147 354T203 415T300 442Q362 442 390 415T419 355Q419 323 402 308T364 292Q351 292 340 300T328 326Q328 342 337 354T354 372T367 378Q368 378 368 379Q368 382 361 388T336 399T297 405Q249 405 227 379T204 326Q204 301 223 291T278 274T330 259Q396 230 396 163Q396 135 385 107T352 51T289 7T195 -10Q118 -10 86 19T53 87Q53 126 74 143T118 160Q133 160 146 151T160 120Q160 94 142 76T111 58Q109 57 108 57T107 55Q108 52 115 47T146 34T201 27Q237 27 263 38T301 66T318 97T323 122Q323 150 302 164T254 181T195 196T148 231Q131 256 131 289Z"></path></g><g transform="translate(2776,0)"><path stroke-width="1" d="M118 -250V750H255V710H158V-210H255V-250H118Z"></path></g><g transform="translate(3054,0)"><path stroke-width="1" d="M184 600Q184 624 203 642T247 661Q265 661 277 649T290 619Q290 596 270 577T226 557Q211 557 198 567T184 600ZM21 287Q21 295 30 318T54 369T98 420T158 442Q197 442 223 419T250 357Q250 340 236 301T196 196T154 83Q149 61 149 51Q149 26 166 26Q175 26 185 29T208 43T235 78T260 137Q263 149 265 151T282 153Q302 153 302 143Q302 135 293 112T268 61T223 11T161 -11Q129 -11 102 10T74 74Q74 91 79 106T122 220Q160 321 166 341T173 380Q173 404 156 404H154Q124 404 99 371T61 287Q60 286 59 284T58 281T56 279T53 278T49 278T41 278H27Q21 284 21 287Z"></path></g><g transform="translate(3400,0)"><path stroke-width="1" d="M22 710V750H159V-250H22V-210H119V710H22Z"></path></g></g></svg></span>, the leaderboard scores in decreasing order. <br>
The next line contains an integer, <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-4-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="2.04ex" height="1.676ex" style="vertical-align: -0.338ex;" viewBox="0 -576.1 878.5 721.6" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M21 287Q22 293 24 303T36 341T56 388T88 425T132 442T175 435T205 417T221 395T229 376L231 369Q231 367 232 367L243 378Q303 442 384 442Q401 442 415 440T441 433T460 423T475 411T485 398T493 385T497 373T500 364T502 357L510 367Q573 442 659 442Q713 442 746 415T780 336Q780 285 742 178T704 50Q705 36 709 31T724 26Q752 26 776 56T815 138Q818 149 821 151T837 153Q857 153 857 145Q857 144 853 130Q845 101 831 73T785 17T716 -10Q669 -10 648 17T627 73Q627 92 663 193T700 345Q700 404 656 404H651Q565 404 506 303L499 291L466 157Q433 26 428 16Q415 -11 385 -11Q372 -11 364 -4T353 8T350 18Q350 29 384 161L420 307Q423 322 423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 181Q151 335 151 342Q154 357 154 369Q154 405 129 405Q107 405 92 377T69 316T57 280Q55 278 41 278H27Q21 284 21 287Z"></path></g></svg></span>, denoting the number games Alice plays. <br>
The last line contains <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-5-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="2.04ex" height="1.676ex" style="vertical-align: -0.338ex;" viewBox="0 -576.1 878.5 721.6" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M21 287Q22 293 24 303T36 341T56 388T88 425T132 442T175 435T205 417T221 395T229 376L231 369Q231 367 232 367L243 378Q303 442 384 442Q401 442 415 440T441 433T460 423T475 411T485 398T493 385T497 373T500 364T502 357L510 367Q573 442 659 442Q713 442 746 415T780 336Q780 285 742 178T704 50Q705 36 709 31T724 26Q752 26 776 56T815 138Q818 149 821 151T837 153Q857 153 857 145Q857 144 853 130Q845 101 831 73T785 17T716 -10Q669 -10 648 17T627 73Q627 92 663 193T700 345Q700 404 656 404H651Q565 404 506 303L499 291L466 157Q433 26 428 16Q415 -11 385 -11Q372 -11 364 -4T353 8T350 18Q350 29 384 161L420 307Q423 322 423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 181Q151 335 151 342Q154 357 154 369Q154 405 129 405Q107 405 92 377T69 316T57 280Q55 278 41 278H27Q21 284 21 287Z"></path></g></svg></span> space-separated integers <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-6-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="7.068ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 3043 1223.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path><g transform="translate(529,0)"><path stroke-width="1" d="M117 59Q117 26 142 26Q179 26 205 131Q211 151 215 152Q217 153 225 153H229Q238 153 241 153T246 151T248 144Q247 138 245 128T234 90T214 43T183 6T137 -11Q101 -11 70 11T38 85Q38 97 39 102L104 360Q167 615 167 623Q167 626 166 628T162 632T157 634T149 635T141 636T132 637T122 637Q112 637 109 637T101 638T95 641T94 647Q94 649 96 661Q101 680 107 682T179 688Q194 689 213 690T243 693T254 694Q266 694 266 686Q266 675 193 386T118 83Q118 81 118 75T117 65V59Z"></path></g><g transform="translate(828,0)"><path stroke-width="1" d="M184 600Q184 624 203 642T247 661Q265 661 277 649T290 619Q290 596 270 577T226 557Q211 557 198 567T184 600ZM21 287Q21 295 30 318T54 369T98 420T158 442Q197 442 223 419T250 357Q250 340 236 301T196 196T154 83Q149 61 149 51Q149 26 166 26Q175 26 185 29T208 43T235 78T260 137Q263 149 265 151T282 153Q302 153 302 143Q302 135 293 112T268 61T223 11T161 -11Q129 -11 102 10T74 74Q74 91 79 106T122 220Q160 321 166 341T173 380Q173 404 156 404H154Q124 404 99 371T61 287Q60 286 59 284T58 281T56 279T53 278T49 278T41 278H27Q21 284 21 287Z"></path></g><g transform="translate(1173,0)"><path stroke-width="1" d="M34 159Q34 268 120 355T306 442Q362 442 394 418T427 355Q427 326 408 306T360 285Q341 285 330 295T319 325T330 359T352 380T366 386H367Q367 388 361 392T340 400T306 404Q276 404 249 390Q228 381 206 359Q162 315 142 235T121 119Q121 73 147 50Q169 26 205 26H209Q321 26 394 111Q403 121 406 121Q410 121 419 112T429 98T420 83T391 55T346 25T282 0T202 -11Q127 -11 81 37T34 159Z"></path></g><g transform="translate(1607,0)"><path stroke-width="1" d="M39 168Q39 225 58 272T107 350T174 402T244 433T307 442H310Q355 442 388 420T421 355Q421 265 310 237Q261 224 176 223Q139 223 138 221Q138 219 132 186T125 128Q125 81 146 54T209 26T302 45T394 111Q403 121 406 121Q410 121 419 112T429 98T420 82T390 55T344 24T281 -1T205 -11Q126 -11 83 42T39 168ZM373 353Q367 405 305 405Q272 405 244 391T199 357T170 316T154 280T149 261Q149 260 169 260Q282 260 327 284T373 353Z"></path></g><g transform="translate(2073,0)"><path stroke-width="1" d="M118 -250V750H255V710H158V-210H255V-250H118Z"></path></g><g transform="translate(2352,0)"><path stroke-width="1" d="M297 596Q297 627 318 644T361 661Q378 661 389 651T403 623Q403 595 384 576T340 557Q322 557 310 567T297 596ZM288 376Q288 405 262 405Q240 405 220 393T185 362T161 325T144 293L137 279Q135 278 121 278H107Q101 284 101 286T105 299Q126 348 164 391T252 441Q253 441 260 441T272 442Q296 441 316 432Q341 418 354 401T367 348V332L318 133Q267 -67 264 -75Q246 -125 194 -164T75 -204Q25 -204 7 -183T-12 -137Q-12 -110 7 -91T53 -71Q70 -71 82 -81T95 -112Q95 -148 63 -167Q69 -168 77 -168Q111 -168 139 -140T182 -74L193 -32Q204 11 219 72T251 197T278 308T289 365Q289 372 288 376Z"></path></g><g transform="translate(2764,0)"><path stroke-width="1" d="M22 710V750H159V-250H22V-210H119V710H22Z"></path></g></g></svg></span>, the game scores.</p></div></div></div><div class="challenge_constraints"><div class="msB challenge_constraints_title"><p><strong>Constraints</strong></p></div><div class="msB challenge_constraints_body"><div class="hackdown-content"><style id="MathJax_SVG_styles">.MathJax_SVG_Display {text-align: center; margin: 1em 0em; position: relative; display: block!important; text-indent: 0; max-width: none; max-height: none; min-width: 0; min-height: 0; width: 100%}
.MathJax_SVG .MJX-monospace {font-family: monospace}
.MathJax_SVG .MJX-sans-serif {font-family: sans-serif}
.MathJax_SVG {display: inline; font-style: normal; font-weight: normal; line-height: normal; font-size: 100%; font-size-adjust: none; text-indent: 0; text-align: left; text-transform: none; letter-spacing: normal; word-spacing: normal; word-wrap: normal; white-space: nowrap; float: none; direction: ltr; max-width: none; max-height: none; min-width: 0; min-height: 0; border: 0; padding: 0; margin: 0}
.MathJax_SVG * {transition: none; -webkit-transition: none; -moz-transition: none; -ms-transition: none; -o-transition: none}
.mjx-svg-href {fill: blue; stroke: blue}
.MathJax_SVG_LineBox {display: table!important}
.MathJax_SVG_LineBox span {display: table-cell!important; width: 10000em!important; min-width: 0; max-width: none; padding: 0; border: 0; margin: 0}
</style><svg style="display: none;"><defs id="MathJax_SVG_glyphs"></defs></svg><ul>
<li><span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-1-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="16.136ex" height="2.843ex" style="vertical-align: -0.505ex;" viewBox="0 -1006.6 6947.5 1223.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path><g transform="translate(778,0)"><path stroke-width="1" d="M674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118Z"></path></g><g transform="translate(1834,0)"><path stroke-width="1" d="M21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287Z"></path></g><g transform="translate(2712,0)"><path stroke-width="1" d="M674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118Z"></path></g><g transform="translate(3769,0)"><path stroke-width="1" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path></g><g transform="translate(4491,0)"><path stroke-width="1" d="M630 29Q630 9 609 9Q604 9 587 25T493 118L389 222L284 117Q178 13 175 11Q171 9 168 9Q160 9 154 15T147 29Q147 36 161 51T255 146L359 250L255 354Q174 435 161 449T147 471Q147 480 153 485T168 490Q173 490 175 489Q178 487 284 383L389 278L493 382Q570 459 587 475T609 491Q630 491 630 471Q630 464 620 453T522 355L418 250L522 145Q606 61 618 48T630 29Z"></path></g><g transform="translate(5492,0)"><path stroke-width="1" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(500,0)"></path><g transform="translate(1001,393)"><path stroke-width="1" transform="scale(0.707)" d="M164 157Q164 133 148 117T109 101H102Q148 22 224 22Q294 22 326 82Q345 115 345 210Q345 313 318 349Q292 382 260 382H254Q176 382 136 314Q132 307 129 306T114 304Q97 304 95 310Q93 314 93 485V614Q93 664 98 664Q100 666 102 666Q103 666 123 658T178 642T253 634Q324 634 389 662Q397 666 402 666Q410 666 410 648V635Q328 538 205 538Q174 538 149 544L139 546V374Q158 388 169 396T205 412T256 420Q337 420 393 355T449 201Q449 109 385 44T229 -22Q148 -22 99 32T50 154Q50 178 61 192T84 210T107 214Q132 214 148 197T164 157Z"></path></g></g></g></svg></span></li>
<li><span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-2-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="16.782ex" height="2.843ex" style="vertical-align: -0.505ex;" viewBox="0 -1006.6 7225.5 1223.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path><g transform="translate(778,0)"><path stroke-width="1" d="M674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118Z"></path></g><g transform="translate(1834,0)"><path stroke-width="1" d="M21 287Q22 293 24 303T36 341T56 388T88 425T132 442T175 435T205 417T221 395T229 376L231 369Q231 367 232 367L243 378Q303 442 384 442Q401 442 415 440T441 433T460 423T475 411T485 398T493 385T497 373T500 364T502 357L510 367Q573 442 659 442Q713 442 746 415T780 336Q780 285 742 178T704 50Q705 36 709 31T724 26Q752 26 776 56T815 138Q818 149 821 151T837 153Q857 153 857 145Q857 144 853 130Q845 101 831 73T785 17T716 -10Q669 -10 648 17T627 73Q627 92 663 193T700 345Q700 404 656 404H651Q565 404 506 303L499 291L466 157Q433 26 428 16Q415 -11 385 -11Q372 -11 364 -4T353 8T350 18Q350 29 384 161L420 307Q423 322 423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 181Q151 335 151 342Q154 357 154 369Q154 405 129 405Q107 405 92 377T69 316T57 280Q55 278 41 278H27Q21 284 21 287Z"></path></g><g transform="translate(2990,0)"><path stroke-width="1" d="M674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118Z"></path></g><g transform="translate(4047,0)"><path stroke-width="1" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path></g><g transform="translate(4769,0)"><path stroke-width="1" d="M630 29Q630 9 609 9Q604 9 587 25T493 118L389 222L284 117Q178 13 175 11Q171 9 168 9Q160 9 154 15T147 29Q147 36 161 51T255 146L359 250L255 354Q174 435 161 449T147 471Q147 480 153 485T168 490Q173 490 175 489Q178 487 284 383L389 278L493 382Q570 459 587 475T609 491Q630 491 630 471Q630 464 620 453T522 355L418 250L522 145Q606 61 618 48T630 29Z"></path></g><g transform="translate(5770,0)"><path stroke-width="1" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(500,0)"></path><g transform="translate(1001,393)"><path stroke-width="1" transform="scale(0.707)" d="M164 157Q164 133 148 117T109 101H102Q148 22 224 22Q294 22 326 82Q345 115 345 210Q345 313 318 349Q292 382 260 382H254Q176 382 136 314Q132 307 129 306T114 304Q97 304 95 310Q93 314 93 485V614Q93 664 98 664Q100 666 102 666Q103 666 123 658T178 642T253 634Q324 634 389 662Q397 666 402 666Q410 666 410 648V635Q328 538 205 538Q174 538 149 544L139 546V374Q158 388 169 396T205 412T256 420Q337 420 393 355T449 201Q449 109 385 44T229 -22Q148 -22 99 32T50 154Q50 178 61 192T84 210T107 214Q132 214 148 197T164 157Z"></path></g></g></g></svg></span></li>
<li><span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-3-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="19.282ex" height="3.176ex" style="vertical-align: -0.838ex;" viewBox="0 -1006.6 8302 1367.4" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z"></path><g transform="translate(778,0)"><path stroke-width="1" d="M674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118Z"></path></g><g transform="translate(1834,0)"><path stroke-width="1" d="M131 289Q131 321 147 354T203 415T300 442Q362 442 390 415T419 355Q419 323 402 308T364 292Q351 292 340 300T328 326Q328 342 337 354T354 372T367 378Q368 378 368 379Q368 382 361 388T336 399T297 405Q249 405 227 379T204 326Q204 301 223 291T278 274T330 259Q396 230 396 163Q396 135 385 107T352 51T289 7T195 -10Q118 -10 86 19T53 87Q53 126 74 143T118 160Q133 160 146 151T160 120Q160 94 142 76T111 58Q109 57 108 57T107 55Q108 52 115 47T146 34T201 27Q237 27 263 38T301 66T318 97T323 122Q323 150 302 164T254 181T195 196T148 231Q131 256 131 289Z"></path></g><g transform="translate(2304,0)"><path stroke-width="1" d="M34 159Q34 268 120 355T306 442Q362 442 394 418T427 355Q427 326 408 306T360 285Q341 285 330 295T319 325T330 359T352 380T366 386H367Q367 388 361 392T340 400T306 404Q276 404 249 390Q228 381 206 359Q162 315 142 235T121 119Q121 73 147 50Q169 26 205 26H209Q321 26 394 111Q403 121 406 121Q410 121 419 112T429 98T420 83T391 55T346 25T282 0T202 -11Q127 -11 81 37T34 159Z"></path></g><g transform="translate(2737,0)"><path stroke-width="1" d="M201 -11Q126 -11 80 38T34 156Q34 221 64 279T146 380Q222 441 301 441Q333 441 341 440Q354 437 367 433T402 417T438 387T464 338T476 268Q476 161 390 75T201 -11ZM121 120Q121 70 147 48T206 26Q250 26 289 58T351 142Q360 163 374 216T388 308Q388 352 370 375Q346 405 306 405Q243 405 195 347Q158 303 140 230T121 120Z"></path></g><g transform="translate(3223,0)"><path stroke-width="1" d="M21 287Q22 290 23 295T28 317T38 348T53 381T73 411T99 433T132 442Q161 442 183 430T214 408T225 388Q227 382 228 382T236 389Q284 441 347 441H350Q398 441 422 400Q430 381 430 363Q430 333 417 315T391 292T366 288Q346 288 334 299T322 328Q322 376 378 392Q356 405 342 405Q286 405 239 331Q229 315 224 298T190 165Q156 25 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 114 189T154 366Q154 405 128 405Q107 405 92 377T68 316T57 280Q55 278 41 278H27Q21 284 21 287Z"></path></g><g transform="translate(3674,0)"><path stroke-width="1" d="M39 168Q39 225 58 272T107 350T174 402T244 433T307 442H310Q355 442 388 420T421 355Q421 265 310 237Q261 224 176 223Q139 223 138 221Q138 219 132 186T125 128Q125 81 146 54T209 26T302 45T394 111Q403 121 406 121Q410 121 419 112T429 98T420 82T390 55T344 24T281 -1T205 -11Q126 -11 83 42T39 168ZM373 353Q367 405 305 405Q272 405 244 391T199 357T170 316T154 280T149 261Q149 260 169 260Q282 260 327 284T373 353Z"></path></g><g transform="translate(4141,0)"><path stroke-width="1" d="M131 289Q131 321 147 354T203 415T300 442Q362 442 390 415T419 355Q419 323 402 308T364 292Q351 292 340 300T328 326Q328 342 337 354T354 372T367 378Q368 378 368 379Q368 382 361 388T336 399T297 405Q249 405 227 379T204 326Q204 301 223 291T278 274T330 259Q396 230 396 163Q396 135 385 107T352 51T289 7T195 -10Q118 -10 86 19T53 87Q53 126 74 143T118 160Q133 160 146 151T160 120Q160 94 142 76T111 58Q109 57 108 57T107 55Q108 52 115 47T146 34T201 27Q237 27 263 38T301 66T318 97T323 122Q323 150 302 164T254 181T195 196T148 231Q131 256 131 289Z"></path></g><g transform="translate(4610,0)"><path stroke-width="1" d="M118 -250V750H255V710H158V-210H255V-250H118Z"></path></g><g transform="translate(4889,0)"><path stroke-width="1" d="M184 600Q184 624 203 642T247 661Q265 661 277 649T290 619Q290 596 270 577T226 557Q211 557 198 567T184 600ZM21 287Q21 295 30 318T54 369T98 420T158 442Q197 442 223 419T250 357Q250 340 236 301T196 196T154 83Q149 61 149 51Q149 26 166 26Q175 26 185 29T208 43T235 78T260 137Q263 149 265 151T282 153Q302 153 302 143Q302 135 293 112T268 61T223 11T161 -11Q129 -11 102 10T74 74Q74 91 79 106T122 220Q160 321 166 341T173 380Q173 404 156 404H154Q124 404 99 371T61 287Q60 286 59 284T58 281T56 279T53 278T49 278T41 278H27Q21 284 21 287Z"></path></g><g transform="translate(5234,0)"><path stroke-width="1" d="M22 710V750H159V-250H22V-210H119V710H22Z"></path></g><g transform="translate(5790,0)"><path stroke-width="1" d="M674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118Z"></path></g><g transform="translate(6847,0)"><path stroke-width="1" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(500,0)"></path><g transform="translate(1001,393)"><path stroke-width="1" transform="scale(0.707)" d="M352 287Q304 211 232 211Q154 211 104 270T44 396Q42 412 42 436V444Q42 537 111 606Q171 666 243 666Q245 666 249 666T257 665H261Q273 665 286 663T323 651T370 619T413 560Q456 472 456 334Q456 194 396 97Q361 41 312 10T208 -22Q147 -22 108 7T68 93T121 149Q143 149 158 135T173 96Q173 78 164 65T148 49T135 44L131 43Q131 41 138 37T164 27T206 22H212Q272 22 313 86Q352 142 352 280V287ZM244 248Q292 248 321 297T351 430Q351 508 343 542Q341 552 337 562T323 588T293 615T246 625Q208 625 181 598Q160 576 154 546T147 441Q147 358 152 329T172 282Q197 248 244 248Z"></path></g></g></g></svg></span> for <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-4-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="9.557ex" height="2.343ex" style="vertical-align: -0.505ex;" viewBox="0 -791.3 4114.6 1008.6" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z"></path><g transform="translate(778,0)"><path stroke-width="1" d="M674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118Z"></path></g><g transform="translate(1834,0)"><path stroke-width="1" d="M184 600Q184 624 203 642T247 661Q265 661 277 649T290 619Q290 596 270 577T226 557Q211 557 198 567T184 600ZM21 287Q21 295 30 318T54 369T98 420T158 442Q197 442 223 419T250 357Q250 340 236 301T196 196T154 83Q149 61 149 51Q149 26 166 26Q175 26 185 29T208 43T235 78T260 137Q263 149 265 151T282 153Q302 153 302 143Q302 135 293 112T268 61T223 11T161 -11Q129 -11 102 10T74 74Q74 91 79 106T122 220Q160 321 166 341T173 380Q173 404 156 404H154Q124 404 99 371T61 287Q60 286 59 284T58 281T56 279T53 278T49 278T41 278H27Q21 284 21 287Z"></path></g><g transform="translate(2457,0)"><path stroke-width="1" d="M694 -11T694 -19T688 -33T678 -40Q671 -40 524 29T234 166L90 235Q83 240 83 250Q83 261 91 266Q664 540 678 540Q681 540 687 534T694 519T687 505Q686 504 417 376L151 250L417 124Q686 -4 687 -5Q694 -11 694 -19Z"></path></g><g transform="translate(3514,0)"><path stroke-width="1" d="M21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287Z"></path></g></g></svg></span></li>
<li><span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-5-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="17.806ex" height="3.176ex" style="vertical-align: -0.838ex;" viewBox="0 -1006.6 7666.5 1367.4" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z"></path><g transform="translate(778,0)"><path stroke-width="1" d="M674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118Z"></path></g><g transform="translate(1834,0)"><path stroke-width="1" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path></g><g transform="translate(2364,0)"><path stroke-width="1" d="M117 59Q117 26 142 26Q179 26 205 131Q211 151 215 152Q217 153 225 153H229Q238 153 241 153T246 151T248 144Q247 138 245 128T234 90T214 43T183 6T137 -11Q101 -11 70 11T38 85Q38 97 39 102L104 360Q167 615 167 623Q167 626 166 628T162 632T157 634T149 635T141 636T132 637T122 637Q112 637 109 637T101 638T95 641T94 647Q94 649 96 661Q101 680 107 682T179 688Q194 689 213 690T243 693T254 694Q266 694 266 686Q266 675 193 386T118 83Q118 81 118 75T117 65V59Z"></path></g><g transform="translate(2662,0)"><path stroke-width="1" d="M184 600Q184 624 203 642T247 661Q265 661 277 649T290 619Q290 596 270 577T226 557Q211 557 198 567T184 600ZM21 287Q21 295 30 318T54 369T98 420T158 442Q197 442 223 419T250 357Q250 340 236 301T196 196T154 83Q149 61 149 51Q149 26 166 26Q175 26 185 29T208 43T235 78T260 137Q263 149 265 151T282 153Q302 153 302 143Q302 135 293 112T268 61T223 11T161 -11Q129 -11 102 10T74 74Q74 91 79 106T122 220Q160 321 166 341T173 380Q173 404 156 404H154Q124 404 99 371T61 287Q60 286 59 284T58 281T56 279T53 278T49 278T41 278H27Q21 284 21 287Z"></path></g><g transform="translate(3008,0)"><path stroke-width="1" d="M34 159Q34 268 120 355T306 442Q362 442 394 418T427 355Q427 326 408 306T360 285Q341 285 330 295T319 325T330 359T352 380T366 386H367Q367 388 361 392T340 400T306 404Q276 404 249 390Q228 381 206 359Q162 315 142 235T121 119Q121 73 147 50Q169 26 205 26H209Q321 26 394 111Q403 121 406 121Q410 121 419 112T429 98T420 83T391 55T346 25T282 0T202 -11Q127 -11 81 37T34 159Z"></path></g><g transform="translate(3441,0)"><path stroke-width="1" d="M39 168Q39 225 58 272T107 350T174 402T244 433T307 442H310Q355 442 388 420T421 355Q421 265 310 237Q261 224 176 223Q139 223 138 221Q138 219 132 186T125 128Q125 81 146 54T209 26T302 45T394 111Q403 121 406 121Q410 121 419 112T429 98T420 82T390 55T344 24T281 -1T205 -11Q126 -11 83 42T39 168ZM373 353Q367 405 305 405Q272 405 244 391T199 357T170 316T154 280T149 261Q149 260 169 260Q282 260 327 284T373 353Z"></path></g><g transform="translate(3908,0)"><path stroke-width="1" d="M118 -250V750H255V710H158V-210H255V-250H118Z"></path></g><g transform="translate(4186,0)"><path stroke-width="1" d="M297 596Q297 627 318 644T361 661Q378 661 389 651T403 623Q403 595 384 576T340 557Q322 557 310 567T297 596ZM288 376Q288 405 262 405Q240 405 220 393T185 362T161 325T144 293L137 279Q135 278 121 278H107Q101 284 101 286T105 299Q126 348 164 391T252 441Q253 441 260 441T272 442Q296 441 316 432Q341 418 354 401T367 348V332L318 133Q267 -67 264 -75Q246 -125 194 -164T75 -204Q25 -204 7 -183T-12 -137Q-12 -110 7 -91T53 -71Q70 -71 82 -81T95 -112Q95 -148 63 -167Q69 -168 77 -168Q111 -168 139 -140T182 -74L193 -32Q204 11 219 72T251 197T278 308T289 365Q289 372 288 376Z"></path></g><g transform="translate(4599,0)"><path stroke-width="1" d="M22 710V750H159V-250H22V-210H119V710H22Z"></path></g><g transform="translate(5155,0)"><path stroke-width="1" d="M674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118Z"></path></g><g transform="translate(6211,0)"><path stroke-width="1" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(500,0)"></path><g transform="translate(1001,393)"><path stroke-width="1" transform="scale(0.707)" d="M352 287Q304 211 232 211Q154 211 104 270T44 396Q42 412 42 436V444Q42 537 111 606Q171 666 243 666Q245 666 249 666T257 665H261Q273 665 286 663T323 651T370 619T413 560Q456 472 456 334Q456 194 396 97Q361 41 312 10T208 -22Q147 -22 108 7T68 93T121 149Q143 149 158 135T173 96Q173 78 164 65T148 49T135 44L131 43Q131 41 138 37T164 27T206 22H212Q272 22 313 86Q352 142 352 280V287ZM244 248Q292 248 321 297T351 430Q351 508 343 542Q341 552 337 562T323 588T293 615T246 625Q208 625 181 598Q160 576 154 546T147 441Q147 358 152 329T172 282Q197 248 244 248Z"></path></g></g></g></svg></span> for <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-6-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="10.358ex" height="2.509ex" style="vertical-align: -0.671ex;" viewBox="0 -791.3 4459.6 1080.4" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z"></path><g transform="translate(778,0)"><path stroke-width="1" d="M674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118Z"></path></g><g transform="translate(1834,0)"><path stroke-width="1" d="M297 596Q297 627 318 644T361 661Q378 661 389 651T403 623Q403 595 384 576T340 557Q322 557 310 567T297 596ZM288 376Q288 405 262 405Q240 405 220 393T185 362T161 325T144 293L137 279Q135 278 121 278H107Q101 284 101 286T105 299Q126 348 164 391T252 441Q253 441 260 441T272 442Q296 441 316 432Q341 418 354 401T367 348V332L318 133Q267 -67 264 -75Q246 -125 194 -164T75 -204Q25 -204 7 -183T-12 -137Q-12 -110 7 -91T53 -71Q70 -71 82 -81T95 -112Q95 -148 63 -167Q69 -168 77 -168Q111 -168 139 -140T182 -74L193 -32Q204 11 219 72T251 197T278 308T289 365Q289 372 288 376Z"></path></g><g transform="translate(2524,0)"><path stroke-width="1" d="M694 -11T694 -19T688 -33T678 -40Q671 -40 524 29T234 166L90 235Q83 240 83 250Q83 261 91 266Q664 540 678 540Q681 540 687 534T694 519T687 505Q686 504 417 376L151 250L417 124Q686 -4 687 -5Q694 -11 694 -19Z"></path></g><g transform="translate(3581,0)"><path stroke-width="1" d="M21 287Q22 293 24 303T36 341T56 388T88 425T132 442T175 435T205 417T221 395T229 376L231 369Q231 367 232 367L243 378Q303 442 384 442Q401 442 415 440T441 433T460 423T475 411T485 398T493 385T497 373T500 364T502 357L510 367Q573 442 659 442Q713 442 746 415T780 336Q780 285 742 178T704 50Q705 36 709 31T724 26Q752 26 776 56T815 138Q818 149 821 151T837 153Q857 153 857 145Q857 144 853 130Q845 101 831 73T785 17T716 -10Q669 -10 648 17T627 73Q627 92 663 193T700 345Q700 404 656 404H651Q565 404 506 303L499 291L466 157Q433 26 428 16Q415 -11 385 -11Q372 -11 364 -4T353 8T350 18Q350 29 384 161L420 307Q423 322 423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 181Q151 335 151 342Q154 357 154 369Q154 405 129 405Q107 405 92 377T69 316T57 280Q55 278 41 278H27Q21 284 21 287Z"></path></g></g></svg></span></li>
<li>The existing leaderboard, <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-7-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="6.448ex" height="1.676ex" style="vertical-align: -0.338ex;" viewBox="0 -576.1 2776 721.6" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M131 289Q131 321 147 354T203 415T300 442Q362 442 390 415T419 355Q419 323 402 308T364 292Q351 292 340 300T328 326Q328 342 337 354T354 372T367 378Q368 378 368 379Q368 382 361 388T336 399T297 405Q249 405 227 379T204 326Q204 301 223 291T278 274T330 259Q396 230 396 163Q396 135 385 107T352 51T289 7T195 -10Q118 -10 86 19T53 87Q53 126 74 143T118 160Q133 160 146 151T160 120Q160 94 142 76T111 58Q109 57 108 57T107 55Q108 52 115 47T146 34T201 27Q237 27 263 38T301 66T318 97T323 122Q323 150 302 164T254 181T195 196T148 231Q131 256 131 289Z"></path><g transform="translate(469,0)"><path stroke-width="1" d="M34 159Q34 268 120 355T306 442Q362 442 394 418T427 355Q427 326 408 306T360 285Q341 285 330 295T319 325T330 359T352 380T366 386H367Q367 388 361 392T340 400T306 404Q276 404 249 390Q228 381 206 359Q162 315 142 235T121 119Q121 73 147 50Q169 26 205 26H209Q321 26 394 111Q403 121 406 121Q410 121 419 112T429 98T420 83T391 55T346 25T282 0T202 -11Q127 -11 81 37T34 159Z"></path></g><g transform="translate(903,0)"><path stroke-width="1" d="M201 -11Q126 -11 80 38T34 156Q34 221 64 279T146 380Q222 441 301 441Q333 441 341 440Q354 437 367 433T402 417T438 387T464 338T476 268Q476 161 390 75T201 -11ZM121 120Q121 70 147 48T206 26Q250 26 289 58T351 142Q360 163 374 216T388 308Q388 352 370 375Q346 405 306 405Q243 405 195 347Q158 303 140 230T121 120Z"></path></g><g transform="translate(1388,0)"><path stroke-width="1" d="M21 287Q22 290 23 295T28 317T38 348T53 381T73 411T99 433T132 442Q161 442 183 430T214 408T225 388Q227 382 228 382T236 389Q284 441 347 441H350Q398 441 422 400Q430 381 430 363Q430 333 417 315T391 292T366 288Q346 288 334 299T322 328Q322 376 378 392Q356 405 342 405Q286 405 239 331Q229 315 224 298T190 165Q156 25 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 114 189T154 366Q154 405 128 405Q107 405 92 377T68 316T57 280Q55 278 41 278H27Q21 284 21 287Z"></path></g><g transform="translate(1840,0)"><path stroke-width="1" d="M39 168Q39 225 58 272T107 350T174 402T244 433T307 442H310Q355 442 388 420T421 355Q421 265 310 237Q261 224 176 223Q139 223 138 221Q138 219 132 186T125 128Q125 81 146 54T209 26T302 45T394 111Q403 121 406 121Q410 121 419 112T429 98T420 82T390 55T344 24T281 -1T205 -11Q126 -11 83 42T39 168ZM373 353Q367 405 305 405Q272 405 244 391T199 357T170 316T154 280T149 261Q149 260 169 260Q282 260 327 284T373 353Z"></path></g><g transform="translate(2306,0)"><path stroke-width="1" d="M131 289Q131 321 147 354T203 415T300 442Q362 442 390 415T419 355Q419 323 402 308T364 292Q351 292 340 300T328 326Q328 342 337 354T354 372T367 378Q368 378 368 379Q368 382 361 388T336 399T297 405Q249 405 227 379T204 326Q204 301 223 291T278 274T330 259Q396 230 396 163Q396 135 385 107T352 51T289 7T195 -10Q118 -10 86 19T53 87Q53 126 74 143T118 160Q133 160 146 151T160 120Q160 94 142 76T111 58Q109 57 108 57T107 55Q108 52 115 47T146 34T201 27Q237 27 263 38T301 66T318 97T323 122Q323 150 302 164T254 181T195 196T148 231Q131 256 131 289Z"></path></g></g></svg></span>, is in <em>descending</em> order.</li>
<li>Alice's scores, <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-8-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="4.816ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 2073.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path><g transform="translate(529,0)"><path stroke-width="1" d="M117 59Q117 26 142 26Q179 26 205 131Q211 151 215 152Q217 153 225 153H229Q238 153 241 153T246 151T248 144Q247 138 245 128T234 90T214 43T183 6T137 -11Q101 -11 70 11T38 85Q38 97 39 102L104 360Q167 615 167 623Q167 626 166 628T162 632T157 634T149 635T141 636T132 637T122 637Q112 637 109 637T101 638T95 641T94 647Q94 649 96 661Q101 680 107 682T179 688Q194 689 213 690T243 693T254 694Q266 694 266 686Q266 675 193 386T118 83Q118 81 118 75T117 65V59Z"></path></g><g transform="translate(828,0)"><path stroke-width="1" d="M184 600Q184 624 203 642T247 661Q265 661 277 649T290 619Q290 596 270 577T226 557Q211 557 198 567T184 600ZM21 287Q21 295 30 318T54 369T98 420T158 442Q197 442 223 419T250 357Q250 340 236 301T196 196T154 83Q149 61 149 51Q149 26 166 26Q175 26 185 29T208 43T235 78T260 137Q263 149 265 151T282 153Q302 153 302 143Q302 135 293 112T268 61T223 11T161 -11Q129 -11 102 10T74 74Q74 91 79 106T122 220Q160 321 166 341T173 380Q173 404 156 404H154Q124 404 99 371T61 287Q60 286 59 284T58 281T56 279T53 278T49 278T41 278H27Q21 284 21 287Z"></path></g><g transform="translate(1173,0)"><path stroke-width="1" d="M34 159Q34 268 120 355T306 442Q362 442 394 418T427 355Q427 326 408 306T360 285Q341 285 330 295T319 325T330 359T352 380T366 386H367Q367 388 361 392T340 400T306 404Q276 404 249 390Q228 381 206 359Q162 315 142 235T121 119Q121 73 147 50Q169 26 205 26H209Q321 26 394 111Q403 121 406 121Q410 121 419 112T429 98T420 83T391 55T346 25T282 0T202 -11Q127 -11 81 37T34 159Z"></path></g><g transform="translate(1607,0)"><path stroke-width="1" d="M39 168Q39 225 58 272T107 350T174 402T244 433T307 442H310Q355 442 388 420T421 355Q421 265 310 237Q261 224 176 223Q139 223 138 221Q138 219 132 186T125 128Q125 81 146 54T209 26T302 45T394 111Q403 121 406 121Q410 121 419 112T429 98T420 82T390 55T344 24T281 -1T205 -11Q126 -11 83 42T39 168ZM373 353Q367 405 305 405Q272 405 244 391T199 357T170 316T154 280T149 261Q149 260 169 260Q282 260 327 284T373 353Z"></path></g></g></svg></span>, are in <em>ascending</em> order.</li>
</ul>
<p><strong>Subtask</strong></p>
<p>For <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-9-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="4.261ex" height="2.343ex" style="vertical-align: -0.338ex;" viewBox="0 -863.1 1834.5 1008.6" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M42 313Q42 476 123 571T303 666Q372 666 402 630T432 550Q432 525 418 510T379 495Q356 495 341 509T326 548Q326 592 373 601Q351 623 311 626Q240 626 194 566Q147 500 147 364L148 360Q153 366 156 373Q197 433 263 433H267Q313 433 348 414Q372 400 396 374T435 317Q456 268 456 210V192Q456 169 451 149Q440 90 387 34T253 -22Q225 -22 199 -14T143 16T92 75T56 172T42 313ZM257 397Q227 397 205 380T171 335T154 278T148 216Q148 133 160 97T198 39Q222 21 251 21Q302 21 329 59Q342 77 347 104T352 209Q352 289 347 316T329 361Q302 397 257 397Z"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(500,0)"></path><g transform="translate(1001,0)"><path stroke-width="1" d="M465 605Q428 605 394 614T340 632T319 641Q332 608 332 548Q332 458 293 403T202 347Q145 347 101 402T56 548Q56 637 101 693T202 750Q241 750 272 719Q359 642 464 642Q580 642 650 732Q662 748 668 749Q670 750 673 750Q682 750 688 743T693 726Q178 -47 170 -52Q166 -56 160 -56Q147 -56 142 -45Q137 -36 142 -27Q143 -24 363 304Q469 462 525 546T581 630Q528 605 465 605ZM207 385Q235 385 263 427T292 548Q292 617 267 664T200 712Q193 712 186 709T167 698T147 668T134 615Q132 595 132 548V527Q132 436 165 403Q183 385 203 385H207ZM500 146Q500 234 544 290T647 347Q699 347 737 292T776 146T737 0T646 -56Q590 -56 545 0T500 146ZM651 -18Q679 -18 707 24T736 146Q736 215 711 262T644 309Q637 309 630 306T611 295T591 265T578 212Q577 200 577 146V124Q577 -18 647 -18H651Z"></path></g></g></svg></span> of the maximum score:</p>
<ul>
<li><span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-10-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="12.241ex" height="2.343ex" style="vertical-align: -0.505ex;" viewBox="0 -791.3 5270.6 1008.6" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path><g transform="translate(778,0)"><path stroke-width="1" d="M674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118Z"></path></g><g transform="translate(1834,0)"><path stroke-width="1" d="M21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287Z"></path></g><g transform="translate(2712,0)"><path stroke-width="1" d="M674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118Z"></path></g><g transform="translate(3769,0)"><path stroke-width="1" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(500,0)"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(1001,0)"></path></g></g></svg></span></li>
<li><span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-11-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="12.887ex" height="2.343ex" style="vertical-align: -0.505ex;" viewBox="0 -791.3 5548.6 1008.6" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path><g transform="translate(778,0)"><path stroke-width="1" d="M674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118Z"></path></g><g transform="translate(1834,0)"><path stroke-width="1" d="M21 287Q22 293 24 303T36 341T56 388T88 425T132 442T175 435T205 417T221 395T229 376L231 369Q231 367 232 367L243 378Q303 442 384 442Q401 442 415 440T441 433T460 423T475 411T485 398T493 385T497 373T500 364T502 357L510 367Q573 442 659 442Q713 442 746 415T780 336Q780 285 742 178T704 50Q705 36 709 31T724 26Q752 26 776 56T815 138Q818 149 821 151T837 153Q857 153 857 145Q857 144 853 130Q845 101 831 73T785 17T716 -10Q669 -10 648 17T627 73Q627 92 663 193T700 345Q700 404 656 404H651Q565 404 506 303L499 291L466 157Q433 26 428 16Q415 -11 385 -11Q372 -11 364 -4T353 8T350 18Q350 29 384 161L420 307Q423 322 423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 181Q151 335 151 342Q154 357 154 369Q154 405 129 405Q107 405 92 377T69 316T57 280Q55 278 41 278H27Q21 284 21 287Z"></path></g><g transform="translate(2990,0)"><path stroke-width="1" d="M674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118Z"></path></g><g transform="translate(4047,0)"><path stroke-width="1" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(500,0)"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(1001,0)"></path></g></g></svg></span></li>
</ul></div></div></div><div class="challenge_output_format"><div class="msB challenge_output_format_title"><p><strong>Output Format</strong></p></div><div class="msB challenge_output_format_body"><div class="hackdown-content"><style id="MathJax_SVG_styles">.MathJax_SVG_Display {text-align: center; margin: 1em 0em; position: relative; display: block!important; text-indent: 0; max-width: none; max-height: none; min-width: 0; min-height: 0; width: 100%}
.MathJax_SVG .MJX-monospace {font-family: monospace}
.MathJax_SVG .MJX-sans-serif {font-family: sans-serif}
.MathJax_SVG {display: inline; font-style: normal; font-weight: normal; line-height: normal; font-size: 100%; font-size-adjust: none; text-indent: 0; text-align: left; text-transform: none; letter-spacing: normal; word-spacing: normal; word-wrap: normal; white-space: nowrap; float: none; direction: ltr; max-width: none; max-height: none; min-width: 0; min-height: 0; border: 0; padding: 0; margin: 0}
.MathJax_SVG * {transition: none; -webkit-transition: none; -moz-transition: none; -ms-transition: none; -o-transition: none}
.mjx-svg-href {fill: blue; stroke: blue}
.MathJax_SVG_LineBox {display: table!important}
.MathJax_SVG_LineBox span {display: table-cell!important; width: 10000em!important; min-width: 0; max-width: none; padding: 0; border: 0; margin: 0}
</style><svg style="display: none;"><defs id="MathJax_SVG_glyphs"></defs></svg><p>Print <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-1-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="2.04ex" height="1.676ex" style="vertical-align: -0.338ex;" viewBox="0 -576.1 878.5 721.6" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M21 287Q22 293 24 303T36 341T56 388T88 425T132 442T175 435T205 417T221 395T229 376L231 369Q231 367 232 367L243 378Q303 442 384 442Q401 442 415 440T441 433T460 423T475 411T485 398T493 385T497 373T500 364T502 357L510 367Q573 442 659 442Q713 442 746 415T780 336Q780 285 742 178T704 50Q705 36 709 31T724 26Q752 26 776 56T815 138Q818 149 821 151T837 153Q857 153 857 145Q857 144 853 130Q845 101 831 73T785 17T716 -10Q669 -10 648 17T627 73Q627 92 663 193T700 345Q700 404 656 404H651Q565 404 506 303L499 291L466 157Q433 26 428 16Q415 -11 385 -11Q372 -11 364 -4T353 8T350 18Q350 29 384 161L420 307Q423 322 423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 181Q151 335 151 342Q154 357 154 369Q154 405 129 405Q107 405 92 377T69 316T57 280Q55 278 41 278H27Q21 284 21 287Z"></path></g></svg></span> integers. The <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-2-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="2.758ex" height="2.843ex" style="vertical-align: -0.671ex;" viewBox="-11.5 -934.9 1187.3 1223.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M297 596Q297 627 318 644T361 661Q378 661 389 651T403 623Q403 595 384 576T340 557Q322 557 310 567T297 596ZM288 376Q288 405 262 405Q240 405 220 393T185 362T161 325T144 293L137 279Q135 278 121 278H107Q101 284 101 286T105 299Q126 348 164 391T252 441Q253 441 260 441T272 442Q296 441 316 432Q341 418 354 401T367 348V332L318 133Q267 -67 264 -75Q246 -125 194 -164T75 -204Q25 -204 7 -183T-12 -137Q-12 -110 7 -91T53 -71Q70 -71 82 -81T95 -112Q95 -148 63 -167Q69 -168 77 -168Q111 -168 139 -140T182 -74L193 -32Q204 11 219 72T251 197T278 308T289 365Q289 372 288 376Z"></path><g transform="translate(412,362)"><path stroke-width="1" transform="scale(0.707)" d="M26 385Q19 392 19 395Q19 399 22 411T27 425Q29 430 36 430T87 431H140L159 511Q162 522 166 540T173 566T179 586T187 603T197 615T211 624T229 626Q247 625 254 615T261 596Q261 589 252 549T232 470L222 433Q222 431 272 431H323Q330 424 330 420Q330 398 317 385H210L174 240Q135 80 135 68Q135 26 162 26Q197 26 230 60T283 144Q285 150 288 151T303 153H307Q322 153 322 145Q322 142 319 133Q314 117 301 95T267 48T216 6T155 -11Q125 -11 98 4T59 56Q57 64 57 83V101L92 241Q127 382 128 383Q128 385 77 385H26Z"></path><g transform="translate(255,0)"><path stroke-width="1" transform="scale(0.707)" d="M137 683Q138 683 209 688T282 694Q294 694 294 685Q294 674 258 534Q220 386 220 383Q220 381 227 388Q288 442 357 442Q411 442 444 415T478 336Q478 285 440 178T402 50Q403 36 407 31T422 26Q450 26 474 56T513 138Q516 149 519 151T535 153Q555 153 555 145Q555 144 551 130Q535 71 500 33Q466 -10 419 -10H414Q367 -10 346 17T325 74Q325 90 361 192T398 345Q398 404 354 404H349Q266 404 205 306L198 293L164 158Q132 28 127 16Q114 -11 83 -11Q69 -11 59 -2T48 16Q48 30 121 320L195 616Q195 629 188 632T149 637H128Q122 643 122 645T124 664Q129 683 137 683Z"></path></g></g></g></svg></span> integer should indicate Alice's rank after playing the <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-3-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="2.758ex" height="2.843ex" style="vertical-align: -0.671ex;" viewBox="-11.5 -934.9 1187.3 1223.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M297 596Q297 627 318 644T361 661Q378 661 389 651T403 623Q403 595 384 576T340 557Q322 557 310 567T297 596ZM288 376Q288 405 262 405Q240 405 220 393T185 362T161 325T144 293L137 279Q135 278 121 278H107Q101 284 101 286T105 299Q126 348 164 391T252 441Q253 441 260 441T272 442Q296 441 316 432Q341 418 354 401T367 348V332L318 133Q267 -67 264 -75Q246 -125 194 -164T75 -204Q25 -204 7 -183T-12 -137Q-12 -110 7 -91T53 -71Q70 -71 82 -81T95 -112Q95 -148 63 -167Q69 -168 77 -168Q111 -168 139 -140T182 -74L193 -32Q204 11 219 72T251 197T278 308T289 365Q289 372 288 376Z"></path><g transform="translate(412,362)"><path stroke-width="1" transform="scale(0.707)" d="M26 385Q19 392 19 395Q19 399 22 411T27 425Q29 430 36 430T87 431H140L159 511Q162 522 166 540T173 566T179 586T187 603T197 615T211 624T229 626Q247 625 254 615T261 596Q261 589 252 549T232 470L222 433Q222 431 272 431H323Q330 424 330 420Q330 398 317 385H210L174 240Q135 80 135 68Q135 26 162 26Q197 26 230 60T283 144Q285 150 288 151T303 153H307Q322 153 322 145Q322 142 319 133Q314 117 301 95T267 48T216 6T155 -11Q125 -11 98 4T59 56Q57 64 57 83V101L92 241Q127 382 128 383Q128 385 77 385H26Z"></path><g transform="translate(255,0)"><path stroke-width="1" transform="scale(0.707)" d="M137 683Q138 683 209 688T282 694Q294 694 294 685Q294 674 258 534Q220 386 220 383Q220 381 227 388Q288 442 357 442Q411 442 444 415T478 336Q478 285 440 178T402 50Q403 36 407 31T422 26Q450 26 474 56T513 138Q516 149 519 151T535 153Q555 153 555 145Q555 144 551 130Q535 71 500 33Q466 -10 419 -10H414Q367 -10 346 17T325 74Q325 90 361 192T398 345Q398 404 354 404H349Q266 404 205 306L198 293L164 158Q132 28 127 16Q114 -11 83 -11Q69 -11 59 -2T48 16Q48 30 121 320L195 616Q195 629 188 632T149 637H128Q122 643 122 645T124 664Q129 683 137 683Z"></path></g></g></g></svg></span> game. </p></div></div></div></div><div class="visual-test-case"><div class="challenge-sample-input-title"><div class="sample-input-header"><p><strong>Sample Input 1</strong></p></div><div class="sample-input-buttons"><a href="#!" class="msR">Copy</a><a href="#">Download</a></div></div><div class="visual-input-style visual-hackdown-content"><div class="input-left"><pre class="pre-style"><div class="img-style"><div class="hackdown-content"><style id="MathJax_SVG_styles">.MathJax_SVG_Display {text-align: center; margin: 1em 0em; position: relative; display: block!important; text-indent: 0; max-width: none; max-height: none; min-width: 0; min-height: 0; width: 100%}
.MathJax_SVG .MJX-monospace {font-family: monospace}
.MathJax_SVG .MJX-sans-serif {font-family: sans-serif}
.MathJax_SVG {display: inline; font-style: normal; font-weight: normal; line-height: normal; font-size: 100%; font-size-adjust: none; text-indent: 0; text-align: left; text-transform: none; letter-spacing: normal; word-spacing: normal; word-wrap: normal; white-space: nowrap; float: none; direction: ltr; max-width: none; max-height: none; min-width: 0; min-height: 0; border: 0; padding: 0; margin: 0}
.MathJax_SVG * {transition: none; -webkit-transition: none; -moz-transition: none; -ms-transition: none; -o-transition: none}
.mjx-svg-href {fill: blue; stroke: blue}
.MathJax_SVG_LineBox {display: table!important}
.MathJax_SVG_LineBox span {display: table-cell!important; width: 10000em!important; min-width: 0; max-width: none; padding: 0; border: 0; margin: 0}
</style><svg style="display: none;"><defs id="MathJax_SVG_glyphs"></defs></svg><svg width="232pt" height="70pt" viewBox="0.00 0.00 232.00 69.80" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 65.8)">
<title>G</title>
<text text-anchor="middle" x="112" y="-8.2" font-family="Times,serif" font-size="14.00" fill="#000000">Array: scores</text>
<!-- node1 -->
<g id="node1" class="node">
<title>node1</title>
<polygon fill="none" stroke="#000000" points="0,-25.3 0,-61.3 224,-61.3 224,-25.3 0,-25.3"></polygon>
<text text-anchor="middle" x="18.5" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">100</text>
<polyline fill="none" stroke="#000000" points="37,-25.3 37,-61.3 "></polyline>
<text text-anchor="middle" x="55.5" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">100</text>
<polyline fill="none" stroke="#000000" points="74,-25.3 74,-61.3 "></polyline>
<text text-anchor="middle" x="89" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">50</text>
<polyline fill="none" stroke="#000000" points="104,-25.3 104,-61.3 "></polyline>
<text text-anchor="middle" x="119" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">40</text>
<polyline fill="none" stroke="#000000" points="134,-25.3 134,-61.3 "></polyline>
<text text-anchor="middle" x="149" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">40</text>
<polyline fill="none" stroke="#000000" points="164,-25.3 164,-61.3 "></polyline>
<text text-anchor="middle" x="179" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">20</text>
<polyline fill="none" stroke="#000000" points="194,-25.3 194,-61.3 "></polyline>
<text text-anchor="middle" x="209" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">10</text>
</g>
</g>
</svg>
<!--?xml version="1.0" encoding="UTF-8" standalone="no"?-->
<!-- Generated by graphviz version 2.40.1 (20161225.0304)
-->
<!-- Title: G Pages: 1 -->
<svg width="128pt" height="70pt" viewBox="0.00 0.00 128.00 69.80" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 65.8)">
<title>G</title>
<text text-anchor="middle" x="60" y="-8.2" font-family="Times,serif" font-size="14.00" fill="#000000">Array: alice</text>
<!-- node1 -->
<g id="node1" class="node">
<title>node1</title>
<polygon fill="none" stroke="#000000" points="0,-25.3 0,-61.3 120,-61.3 120,-25.3 0,-25.3"></polygon>
<text text-anchor="middle" x="11.5" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">5</text>
<polyline fill="none" stroke="#000000" points="23,-25.3 23,-61.3 "></polyline>
<text text-anchor="middle" x="38" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">25</text>
<polyline fill="none" stroke="#000000" points="53,-25.3 53,-61.3 "></polyline>
<text text-anchor="middle" x="68" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">50</text>
<polyline fill="none" stroke="#000000" points="83,-25.3 83,-61.3 "></polyline>
<text text-anchor="middle" x="101.5" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">120</text>
</g>
</g>
</svg>
</div></div></pre></div><div class="input-right"><pre class="pre-style"><div class="input-text">7<br>100 100 50 40 40 20 10<br>4<br>5 25 50 120<br></div></pre></div></div><div class="challenge-sample-output-title"><p><strong>Sample Output 1</strong></p></div><div class="challenge-sample-output-body"><div class="visual-hackdown-content"><pre><code><div>6<br>4<br>2<br>1<br></div></code></pre></div></div><div class="challenge-sample-explanation-title"><p><strong>Explanation 1</strong></p></div><div class="challenge-explanation-body"><p class="explanation-style"><div><div class="hackdown-content"><style id="MathJax_SVG_styles">.MathJax_SVG_Display {text-align: center; margin: 1em 0em; position: relative; display: block!important; text-indent: 0; max-width: none; max-height: none; min-width: 0; min-height: 0; width: 100%}
.MathJax_SVG .MJX-monospace {font-family: monospace}
.MathJax_SVG .MJX-sans-serif {font-family: sans-serif}
.MathJax_SVG {display: inline; font-style: normal; font-weight: normal; line-height: normal; font-size: 100%; font-size-adjust: none; text-indent: 0; text-align: left; text-transform: none; letter-spacing: normal; word-spacing: normal; word-wrap: normal; white-space: nowrap; float: none; direction: ltr; max-width: none; max-height: none; min-width: 0; min-height: 0; border: 0; padding: 0; margin: 0}
.MathJax_SVG * {transition: none; -webkit-transition: none; -moz-transition: none; -ms-transition: none; -o-transition: none}
.mjx-svg-href {fill: blue; stroke: blue}
.MathJax_SVG_LineBox {display: table!important}
.MathJax_SVG_LineBox span {display: table-cell!important; width: 10000em!important; min-width: 0; max-width: none; padding: 0; border: 0; margin: 0}
</style><svg style="display: none;"><defs id="MathJax_SVG_glyphs"></defs></svg><p>Alice starts playing with <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-1-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M55 458Q56 460 72 567L88 674Q88 676 108 676H128V672Q128 662 143 655T195 646T364 644H485V605L417 512Q408 500 387 472T360 435T339 403T319 367T305 330T292 284T284 230T278 162T275 80Q275 66 275 52T274 28V19Q270 2 255 -10T221 -22Q210 -22 200 -19T179 0T168 40Q168 198 265 368Q285 400 349 489L395 552H302Q128 552 119 546Q113 543 108 522T98 479L95 458V455H55V458Z"></path></g></svg></span> players already on the leaderboard, which looks like this:</p>
<p><img src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/1481263702-9b5e9abd56-climbingrank.png" alt="image" title=""></p>
<p>After Alice finishes game <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-2-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z"></path></g></svg></span>, her score is <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-3-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M164 157Q164 133 148 117T109 101H102Q148 22 224 22Q294 22 326 82Q345 115 345 210Q345 313 318 349Q292 382 260 382H254Q176 382 136 314Q132 307 129 306T114 304Q97 304 95 310Q93 314 93 485V614Q93 664 98 664Q100 666 102 666Q103 666 123 658T178 642T253 634Q324 634 389 662Q397 666 402 666Q410 666 410 648V635Q328 538 205 538Q174 538 149 544L139 546V374Q158 388 169 396T205 412T256 420Q337 420 393 355T449 201Q449 109 385 44T229 -22Q148 -22 99 32T50 154Q50 178 61 192T84 210T107 214Q132 214 148 197T164 157Z"></path></g></svg></span> and her ranking is <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-4-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M42 313Q42 476 123 571T303 666Q372 666 402 630T432 550Q432 525 418 510T379 495Q356 495 341 509T326 548Q326 592 373 601Q351 623 311 626Q240 626 194 566Q147 500 147 364L148 360Q153 366 156 373Q197 433 263 433H267Q313 433 348 414Q372 400 396 374T435 317Q456 268 456 210V192Q456 169 451 149Q440 90 387 34T253 -22Q225 -22 199 -14T143 16T92 75T56 172T42 313ZM257 397Q227 397 205 380T171 335T154 278T148 216Q148 133 160 97T198 39Q222 21 251 21Q302 21 329 59Q342 77 347 104T352 209Q352 289 347 316T329 361Q302 397 257 397Z"></path></g></svg></span>:</p>
<p><img src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/1481263847-2443e11cea-climbingrank1.png" alt="image" title=""></p>
<p>After Alice finishes game <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-5-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path></g></svg></span>, her score is <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-6-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="2.325ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 1001 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path><path stroke-width="1" d="M164 157Q164 133 148 117T109 101H102Q148 22 224 22Q294 22 326 82Q345 115 345 210Q345 313 318 349Q292 382 260 382H254Q176 382 136 314Q132 307 129 306T114 304Q97 304 95 310Q93 314 93 485V614Q93 664 98 664Q100 666 102 666Q103 666 123 658T178 642T253 634Q324 634 389 662Q397 666 402 666Q410 666 410 648V635Q328 538 205 538Q174 538 149 544L139 546V374Q158 388 169 396T205 412T256 420Q337 420 393 355T449 201Q449 109 385 44T229 -22Q148 -22 99 32T50 154Q50 178 61 192T84 210T107 214Q132 214 148 197T164 157Z" transform="translate(500,0)"></path></g></svg></span> and her ranking is <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-7-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M462 0Q444 3 333 3Q217 3 199 0H190V46H221Q241 46 248 46T265 48T279 53T286 61Q287 63 287 115V165H28V211L179 442Q332 674 334 675Q336 677 355 677H373L379 671V211H471V165H379V114Q379 73 379 66T385 54Q393 47 442 46H471V0H462ZM293 211V545L74 212L183 211H293Z"></path></g></svg></span>:</p>
<p><img src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/1481264155-cb76495070-climbingrank3.png" alt="image" title=""></p>
<p>After Alice finishes game <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-8-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path></g></svg></span>, her score is <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-9-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="2.325ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 1001 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M164 157Q164 133 148 117T109 101H102Q148 22 224 22Q294 22 326 82Q345 115 345 210Q345 313 318 349Q292 382 260 382H254Q176 382 136 314Q132 307 129 306T114 304Q97 304 95 310Q93 314 93 485V614Q93 664 98 664Q100 666 102 666Q103 666 123 658T178 642T253 634Q324 634 389 662Q397 666 402 666Q410 666 410 648V635Q328 538 205 538Q174 538 149 544L139 546V374Q158 388 169 396T205 412T256 420Q337 420 393 355T449 201Q449 109 385 44T229 -22Q148 -22 99 32T50 154Q50 178 61 192T84 210T107 214Q132 214 148 197T164 157Z"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(500,0)"></path></g></svg></span> and her ranking is tied with Caroline at <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-10-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path></g></svg></span>:</p>
<p><img src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/1481264229-a216b3a974-climbingrank4.png" alt="image" title=""></p>
<p>After Alice finishes game <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-11-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M127 463Q100 463 85 480T69 524Q69 579 117 622T233 665Q268 665 277 664Q351 652 390 611T430 522Q430 470 396 421T302 350L299 348Q299 347 308 345T337 336T375 315Q457 262 457 175Q457 96 395 37T238 -22Q158 -22 100 21T42 130Q42 158 60 175T105 193Q133 193 151 175T169 130Q169 119 166 110T159 94T148 82T136 74T126 70T118 67L114 66Q165 21 238 21Q293 21 321 74Q338 107 338 175V195Q338 290 274 322Q259 328 213 329L171 330L168 332Q166 335 166 348Q166 366 174 366Q202 366 232 371Q266 376 294 413T322 525V533Q322 590 287 612Q265 626 240 626Q208 626 181 615T143 592T132 580H135Q138 579 143 578T153 573T165 566T175 555T183 540T186 520Q186 498 172 481T127 463Z"></path></g></svg></span>, her score is <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-12-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="3.487ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 1501.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path><path stroke-width="1" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z" transform="translate(500,0)"></path><path stroke-width="1" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z" transform="translate(1001,0)"></path></g></svg></span> and her ranking is <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-13-Frame"><svg xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><path stroke-width="1" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path></g></svg></span>:</p>
<p><img src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/1481264323-30f93fa8de-climbingrank5.png" alt="image" title=""></p></div></div></p></div></div><div class="visual-test-case"><div class="challenge-sample-input-title"><div class="sample-input-header"><p><strong>Sample Input 2</strong></p></div><div class="sample-input-buttons"><a href="#!" class="msR">Copy</a><a href="#">Download</a></div></div><div class="visual-input-style visual-hackdown-content"><div class="input-left"><pre class="pre-style"><div class="img-style"><div class="hackdown-content"><style id="MathJax_SVG_styles">.MathJax_SVG_Display {text-align: center; margin: 1em 0em; position: relative; display: block!important; text-indent: 0; max-width: none; max-height: none; min-width: 0; min-height: 0; width: 100%}
.MathJax_SVG .MJX-monospace {font-family: monospace}
.MathJax_SVG .MJX-sans-serif {font-family: sans-serif}
.MathJax_SVG {display: inline; font-style: normal; font-weight: normal; line-height: normal; font-size: 100%; font-size-adjust: none; text-indent: 0; text-align: left; text-transform: none; letter-spacing: normal; word-spacing: normal; word-wrap: normal; white-space: nowrap; float: none; direction: ltr; max-width: none; max-height: none; min-width: 0; min-height: 0; border: 0; padding: 0; margin: 0}
.MathJax_SVG * {transition: none; -webkit-transition: none; -moz-transition: none; -ms-transition: none; -o-transition: none}
.mjx-svg-href {fill: blue; stroke: blue}
.MathJax_SVG_LineBox {display: table!important}
.MathJax_SVG_LineBox span {display: table-cell!important; width: 10000em!important; min-width: 0; max-width: none; padding: 0; border: 0; margin: 0}
</style><svg style="display: none;"><defs id="MathJax_SVG_glyphs"></defs></svg><svg width="195pt" height="70pt" viewBox="0.00 0.00 195.00 69.80" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 65.8)">
<title>G</title>
<text text-anchor="middle" x="93.5" y="-8.2" font-family="Times,serif" font-size="14.00" fill="#000000">Array: scores</text>
<!-- node1 -->
<g id="node1" class="node">
<title>node1</title>
<polygon fill="none" stroke="#000000" points="0,-25.3 0,-61.3 187,-61.3 187,-25.3 0,-25.3"></polygon>
<text text-anchor="middle" x="18.5" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">100</text>
<polyline fill="none" stroke="#000000" points="37,-25.3 37,-61.3 "></polyline>
<text text-anchor="middle" x="52" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">90</text>
<polyline fill="none" stroke="#000000" points="67,-25.3 67,-61.3 "></polyline>
<text text-anchor="middle" x="82" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">90</text>
<polyline fill="none" stroke="#000000" points="97,-25.3 97,-61.3 "></polyline>
<text text-anchor="middle" x="112" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">80</text>
<polyline fill="none" stroke="#000000" points="127,-25.3 127,-61.3 "></polyline>
<text text-anchor="middle" x="142" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">75</text>
<polyline fill="none" stroke="#000000" points="157,-25.3 157,-61.3 "></polyline>
<text text-anchor="middle" x="172" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">60</text>
</g>
</g>
</svg>
<!--?xml version="1.0" encoding="UTF-8" standalone="no"?-->
<!-- Generated by graphviz version 2.40.1 (20161225.0304)
-->
<!-- Title: G Pages: 1 -->
<svg width="165pt" height="70pt" viewBox="0.00 0.00 165.00 69.80" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 65.8)">
<title>G</title>
<text text-anchor="middle" x="78.5" y="-8.2" font-family="Times,serif" font-size="14.00" fill="#000000">Array: alice</text>
<!-- node1 -->
<g id="node1" class="node">
<title>node1</title>
<polygon fill="none" stroke="#000000" points="0,-25.3 0,-61.3 157,-61.3 157,-25.3 0,-25.3"></polygon>
<text text-anchor="middle" x="15" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">50</text>
<polyline fill="none" stroke="#000000" points="30,-25.3 30,-61.3 "></polyline>
<text text-anchor="middle" x="45" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">65</text>
<polyline fill="none" stroke="#000000" points="60,-25.3 60,-61.3 "></polyline>
<text text-anchor="middle" x="75" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">77</text>
<polyline fill="none" stroke="#000000" points="90,-25.3 90,-61.3 "></polyline>
<text text-anchor="middle" x="105" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">90</text>
<polyline fill="none" stroke="#000000" points="120,-25.3 120,-61.3 "></polyline>
<text text-anchor="middle" x="138.5" y="-39.1" font-family="Times,serif" font-size="14.00" fill="#000000">102</text>
</g>
</g>
</svg>
</div></div></pre></div><div class="input-right"><pre class="pre-style"><div class="input-text">6<br>100 90 90 80 75 60<br>5<br>50 65 77 90 102<br></div></pre></div></div><div class="challenge-sample-output-title"><p><strong>Sample Output 2</strong></p></div><div class="challenge-sample-output-body"><div class="visual-hackdown-content"><pre><code><div>6<br>5<br>4<br>2<br>1<br></div></code></pre></div></div><div class="challenge-sample-explanation-title"></div><div class="challenge-explanation-body"><p class="explanation-style"><div></div></p></div></div></div></div></div></div></div></div><div class="gutter gutter-horizontal" style="width: 12px;"></div><div class="fs-right-pane" style="width: calc(54.0447% - 6px);"><div class="challenge-page-wrap theme-m-content"><section class="code-editor-section split"><div><div></div><div class="hr-monaco-editor-wrapper"><div class="hr-monaco-editor-with-input"><div><div class="hr-monaco-editor-with-statusbar"><div class="hr-monaco-editor"><div class="editor-toolbar"><div class="toolbar-left"></div><div class="toolbar-right"><div class="toolbar-custom-items"><div class="theme-change-wrapper"><div class="dropdown"><div aria-haspopup="menu" class="dropdown-handle theme-change-handle"><span class="text-link">Change Theme</span></div></div></div></div><div class="select-language css-2b097c-container"><div class=" css-y9fljz-control"><div class=" css-1hwfws3"><div class=" css-ki0glp">C++</div><div class="css-1j2eamm"><div class="" style="display: inline-block;"><input autocapitalize="none" autocomplete="off" autocorrect="off" id="react-select-3-input" spellcheck="false" tabindex="0" type="text" aria-autocomplete="list" aria-label="Select Language" style="box-sizing: content-box; width: 2px; background: rgba(0, 0, 0, 0) none repeat scroll 0px center; border: 0px none; font-size: inherit; opacity: 1; outline: currentcolor none 0px; padding: 0px; color: inherit;"><div style="position: absolute; top: 0px; left: 0px; visibility: hidden; height: 0px; overflow: scroll; white-space: pre; font-size: 16px; font-family: sans-serif; font-weight: 400; font-style: normal; letter-spacing: normal; text-transform: none;"></div></div></div></div><div class=" css-1wy0on6"><span class=" css-43ykx9-indicatorSeparator"></span><div aria-hidden="true" class=" css-rzj7fh-indicatorContainer"><svg height="20" width="20" viewBox="0 0 20 20" aria-hidden="true" focusable="false" class="css-19bqh2r"><path d="M4.516 7.548c0.436-0.446 1.043-0.481 1.576 0l3.908 3.747 3.908-3.747c0.533-0.481 1.141-0.446 1.574 0 0.436 0.445 0.408 1.197 0 1.615-0.406 0.418-4.695 4.502-4.695 4.502-0.217 0.223-0.502 0.335-0.787 0.335s-0.57-0.112-0.789-0.335c0 0-4.287-4.084-4.695-4.502s-0.436-1.17 0-1.615z"></path></svg></div></div></div></div><div class="toolbar-custom-items"><div class="hr-monaco-reset-code"><button class="ui-btn ui-btn-normal cursor reset-btn" title="Reset Code" type="button"><div class="ui-content align-icon-right"><span class="ui-text"><svg viewBox="0 0 48 48" width="1em" height="1em" class="icon-grey reset-code-icon ui-svg-icon" fill="currentColor"><path d="M40 8.9C31.7.1 17.7-.3 8.9 8L5.7 4.9c-.4-.4-.9-.7-1.5-.7C3 4.2 2 5.2 2 6.4v8.8c0 1.2 1 2.2 2.2 2.2H13c.6 0 1.2-.2 1.6-.7.9-.9.8-2.3 0-3.1L12 11.1c3.3-3 7.5-4.7 12-4.7 9.7 0 17.6 7.9 17.6 17.6S33.7 41.6 24 41.6c-9.7 0-17.6-7.9-17.6-17.6 0-1.2-1-2.2-2.2-2.2C3 21.8 2 22.8 2 24c0 5.6 2.1 11 6 15.1 8.3 8.8 22.3 9.3 31.1.9 8.8-8.3 9.2-22.3.9-31.1z"></path><path d="M26.6 31.4c.4.4.9.6 1.4.6s1-.2 1.4-.6l6-6c.8-.8.8-2 0-2.8l-6-6c-.8-.8-2-.8-2.8 0-.8.8-.8 2 0 2.8l4.6 4.6-4.6 4.6c-.8.8-.8 2 0 2.8zm-5.2-14.8c-.8-.8-2-.8-2.8 0l-6 6c-.8.8-.8 2 0 2.8l6 6c.4.4.9.6 1.4.6s1-.2 1.4-.6c.8-.8.8-2 0-2.8L16.8 24l4.6-4.6c.8-.8.8-2 0-2.8z"></path></svg></span></div></button></div><div class="fullscreen-btn-wrapper"><button class="ui-btn ui-btn-normal restorefullscreen fullscreen-btn no-select active-link hr-monaco-base-btn" title="Switch to Normal layout" data-original-title="Switch to Normal layout"><div class="ui-content align-icon-right"><span class="ui-text"><svg viewBox="0 0 100 100" width="1em" height="1em" class="minimize-icon icon-grey no-select ui-svg-icon" fill="currentColor"><path d="M94.59 5.41a3 3 0 0 0-4.24 0L67.82 27.94 66 11.21a3 3 0 1 0-6 .65l2.5 22.95v.36a3 3 0 0 0 .09.31c0 .07.05.14.08.21a3 3 0 0 0 .16.31l.1.17a3 3 0 0 0 .79.79l.17.1.31.17.21.08.31.09h.36L88.14 40h.33a3 3 0 0 0 .32-6l-16.73-1.82L94.59 9.66a3 3 0 0 0 0-4.25zM91.45 62.7a3 3 0 0 0-3.31-2.7l-22.95 2.5h-.36l-.31.09-.21.08-.32.17-.17.1a3 3 0 0 0-.79.79l-.1.17a3 3 0 0 0-.16.31c0 .07-.06.14-.08.21a3 3 0 0 0-.09.31v.36L60 88.14a3 3 0 0 0 2.66 3.31h.33a3 3 0 0 0 3-2.68l1.82-16.72 22.53 22.54a3 3 0 0 0 4.24-4.24L72.06 67.82 88.79 66a3 3 0 0 0 2.66-3.3zM5.41 9.66l22.53 22.52L11.21 34a3 3 0 0 0 .32 6h.33l22.95-2.5h.36l.31-.09.21-.08.31-.17.17-.1a3 3 0 0 0 .79-.79l.1-.17a3 3 0 0 0 .16-.31c0-.07.06-.14.08-.21a3 3 0 0 0 .09-.31v-.36L40 11.86a3 3 0 1 0-6-.65l-1.82 16.73L9.66 5.41a3 3 0 0 0-4.25 4.25zm0 84.93a3 3 0 0 0 4.24 0l22.53-22.53L34 88.79a3 3 0 0 0 3 2.68h.33A3 3 0 0 0 40 88.14l-2.5-22.95v-.36a3 3 0 0 0-.09-.31c0-.07-.05-.14-.08-.21a3 3 0 0 0-.16-.31l-.1-.17a3 3 0 0 0-.79-.79l-.17-.1-.31-.17-.21-.08-.31-.09h-.36L11.86 60a3 3 0 0 0-.65 6l16.73 1.82L5.41 90.34a3 3 0 0 0 0 4.25z"></path></svg></span></div></button></div></div><div class="hr-monaco-settings-editor"><button tabindex="0" class="ui-btn ui-btn-link settings-toggle " aria-haspopup="true" aria-expanded="false" aria-label="Editor Settings" title="Editor Settings"><svg viewBox="0 0 100 100" width="1em" height="1em" class="settings-icon ui-svg-icon" fill="currentColor"><path d="M10.82 37.94a7 7 0 0 0-7 7v10.12a7 7 0 0 0 7 7H17q.51 1.4 1.15 2.76l-4.35 4.34a7 7 0 0 0 0 9.9l7.16 7.16a7 7 0 0 0 9.9 0l4.35-4.35q1.36.63 2.76 1.15v6.14a7 7 0 0 0 7 7h10.09a7 7 0 0 0 7-7V83q1.4-.51 2.76-1.15l4.35 4.35a7 7 0 0 0 9.9 0l7.16-7.16a7 7 0 0 0 0-9.9l-4.35-4.35q.63-1.36 1.15-2.76h6.14a7 7 0 0 0 7-7V44.94a7 7 0 0 0-7-7H83q-.51-1.41-1.14-2.76l4.35-4.34a7 7 0 0 0 0-9.9l-7.16-7.16a7 7 0 0 0-9.9 0l-4.35 4.35q-1.36-.63-2.76-1.15v-6.15a7 7 0 0 0-7-7h-10.1a7 7 0 0 0-7 7V17q-1.4.51-2.76 1.15l-4.35-4.35a7 7 0 0 0-9.9 0l-7.16 7.16a7 7 0 0 0 0 9.9l4.34 4.35q-.63 1.36-1.15 2.76zm13.07-5.47L18 26.58a1 1 0 0 1 0-1.41L25.17 18a1 1 0 0 1 1.41 0l5.88 5.88a3 3 0 0 0 3.54.52 29.21 29.21 0 0 1 5.78-2.4 3 3 0 0 0 2.15-2.88v-8.29a1 1 0 0 1 1-1h10.13a1 1 0 0 1 1 1v8.31A3 3 0 0 0 58.22 22 29 29 0 0 1 64 24.4a3 3 0 0 0 3.56-.51L73.41 18a1 1 0 0 1 1.41 0L82 25.17a1 1 0 0 1 0 1.41l-5.88 5.88A3 3 0 0 0 75.6 36a29 29 0 0 1 2.4 5.78 3 3 0 0 0 2.88 2.16h8.32a1 1 0 0 1 1 1v10.12a1 1 0 0 1-1 1h-8.34A3 3 0 0 0 78 58.22 29 29 0 0 1 75.6 64a3 3 0 0 0 .51 3.56L82 73.42a1 1 0 0 1 0 1.41L74.83 82a1 1 0 0 1-1.41 0l-5.88-5.88A3 3 0 0 0 64 75.6a29 29 0 0 1-5.78 2.4 3 3 0 0 0-2.16 2.88v8.31a1 1 0 0 1-1 1H44.94a1 1 0 0 1-1-1v-8.33A3 3 0 0 0 41.78 78 29.07 29.07 0 0 1 36 75.59a3 3 0 0 0-3.56.51L26.59 82a1 1 0 0 1-1.41 0L18 74.83a1 1 0 0 1 0-1.41l5.88-5.88A3 3 0 0 0 24.4 64a29.06 29.06 0 0 1-2.4-5.78 3 3 0 0 0-2.88-2.16h-8.3a1 1 0 0 1-1-1V44.94a1 1 0 0 1 1-1h8.31A3 3 0 0 0 22 41.78 29.06 29.06 0 0 1 24.4 36a3 3 0 0 0-.51-3.53z"></path><path d="M50 68.94A18.94 18.94 0 1 0 31.06 50 19 19 0 0 0 50 68.94zm0-31.87A12.94 12.94 0 1 1 37.06 50 13 13 0 0 1 50 37.06z"></path></svg></button></div></div></div><div class="hr-monaco-editor-parent"><div class="hr-monaco-base-editor showUnused" style="height: 507px;" data-keybinding-context="1" data-mode-id="cpp"><div class="monaco-editor no-user-select vs-dark focused" style="width: 819px; height: 507px;" data-uri="file:///lsp-c1b25930-dd29-11ea-bc27-81331528c250/Solution.cpp"><div data-mprt="3" class="overflow-guard" style="width: 819px; height: 507px;"><div class="margin" style="position: absolute; will-change: transform; top: 0px; height: 1960px; width: 71px;" role="presentation" aria-hidden="true"><div class="glyph-margin" style="left: 0px; width: 0px; height: 1960px;"></div><div class="margin-view-zones" style="position: absolute;" role="presentation" aria-hidden="true"></div><div class="margin-view-overlays focused" style="position: absolute; width: 71px; font-family: SourceCodePro, monospace; font-weight: normal; font-size: 15px; line-height: 20px; letter-spacing: 0px; height: 2120px;" role="presentation" aria-hidden="true"><div style="position:absolute;top:0px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">1</div></div><div style="position:absolute;top:20px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">2</div></div><div style="position:absolute;top:40px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">3</div></div><div style="position:absolute;top:60px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">4</div></div><div style="position:absolute;top:80px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">5</div></div><div style="position:absolute;top:100px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">6</div></div><div style="position:absolute;top:120px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">7</div></div><div style="position:absolute;top:140px;width:100%;height:20px;"><div class="cldr folding alwaysShowFoldIcons" style="left:45px;width:26px;"></div><div class="line-numbers lh-even" style="left:0px;width:45px;">8</div></div><div style="position:absolute;top:160px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">9</div></div><div style="position:absolute;top:360px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">19</div></div><div style="position:absolute;top:380px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">20</div></div><div style="position:absolute;top:400px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">21</div></div><div style="position:absolute;top:420px;width:100%;height:20px;"><div class="cldr folding alwaysShowFoldIcons" style="left:45px;width:26px;"></div><div class="line-numbers lh-even" style="left:0px;width:45px;">22</div></div><div style="position:absolute;top:440px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">23</div></div><div style="position:absolute;top:460px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">24</div></div><div style="position:absolute;top:480px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">25</div></div><div style="position:absolute;top:500px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">26</div></div><div style="position:absolute;top:180px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">10</div></div><div style="position:absolute;top:200px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">11</div></div><div style="position:absolute;top:220px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">12</div></div><div style="position:absolute;top:240px;width:100%;height:20px;"><div class="cldr folding alwaysShowFoldIcons" style="left:45px;width:26px;"></div><div class="line-numbers lh-even" style="left:0px;width:45px;">13</div></div><div style="position:absolute;top:260px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">14</div></div><div style="position:absolute;top:340px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">18</div></div><div style="position:absolute;top:280px;width:100%;height:20px;"><div class="cldr folding alwaysShowFoldIcons" style="left:45px;width:26px;"></div><div class="line-numbers lh-even" style="left:0px;width:45px;">15</div></div><div style="position:absolute;top:300px;width:100%;height:20px;"><div class="line-numbers lh-even" style="left:0px;width:45px;">16</div></div><div style="position:absolute;top:320px;width:100%;height:20px;"><div class="current-line" style="width:71px; height:20px;"></div><div class="line-numbers lh-even" style="left:0px;width:45px;">17</div></div></div></div><div class="monaco-scrollable-element editor-scrollable vs-dark" role="presentation" style="position: absolute; overflow: hidden; left: 71px; height: 507px; width: 748px;" data-mprt="5"><div class="lines-content monaco-editor-background" style="position: absolute; overflow: hidden; width: 1000000px; height: 1000000px; touch-action: none; will-change: transform; top: 0px; left: 0px;"><div class="view-overlays focused" style="position: absolute; height: 0px; width: 748px;" role="presentation" aria-hidden="true"><div style="position:absolute;top:0px;width:100%;height:20px;"></div><div style="position:absolute;top:20px;width:100%;height:20px;"></div><div style="position:absolute;top:40px;width:100%;height:20px;"></div><div style="position:absolute;top:60px;width:100%;height:20px;"></div><div style="position:absolute;top:80px;width:100%;height:20px;"></div><div style="position:absolute;top:100px;width:100%;height:20px;"></div><div style="position:absolute;top:120px;width:100%;height:20px;"></div><div style="position:absolute;top:140px;width:100%;height:20px;"></div><div style="position:absolute;top:160px;width:100%;height:20px;"><div class="cigr" style="left:0px;height:20px;width:36px"></div></div><div style="position: absolute; top: 360px; width: 100%; height: 20px;"></div><div style="position: absolute; top: 380px; width: 100%; height: 20px;"></div><div style="position: absolute; top: 400px; width: 100%; height: 20px;"></div><div style="position: absolute; top: 420px; width: 100%; height: 20px;"></div><div style="position: absolute; top: 440px; width: 100%; height: 20px;"><div class="cigr" style="left:0px;height:20px;width:36px"></div></div><div style="position: absolute; top: 460px; width: 100%; height: 20px;"><div class="cigr" style="left:0px;height:20px;width:36px"></div></div><div style="position: absolute; top: 480px; width: 100%; height: 20px;"><div class="cigr" style="left:0px;height:20px;width:36px"></div></div><div style="position: absolute; top: 500px; width: 100%; height: 20px;"><div class="cigr" style="left:0px;height:20px;width:36px"></div></div><div style="position:absolute;top:180px;width:100%;height:20px;"><div class="cigr" style="left:0px;height:20px;width:36px"></div></div><div style="position:absolute;top:200px;width:100%;height:20px;"><div class="cigr" style="left:0px;height:20px;width:36px"></div></div><div style="position:absolute;top:220px;width:100%;height:20px;"><div class="cigr" style="left:0px;height:20px;width:36px"></div></div><div style="position:absolute;top:240px;width:100%;height:20px;"><div class="cigr" style="left:0px;height:20px;width:36px"></div></div><div style="position:absolute;top:260px;width:100%;height:20px;"><div class="cigr" style="left:0px;height:20px;width:36px"></div><div class="cigra" style="left:36px;height:20px;width:36px"></div></div><div style="position: absolute; top: 340px; width: 100%; height: 20px;"><div class="cigr" style="left:0px;height:20px;width:36px"></div></div><div style="position:absolute;top:280px;width:100%;height:20px;"><div class="cigr" style="left:0px;height:20px;width:36px"></div><div class="cigra" style="left:36px;height:20px;width:36px"></div><div class="cdr bracket-match" style="left:72px;width:9px;height:20px;"></div></div><div style="position:absolute;top:300px;width:100%;height:20px;"><div class="cigr" style="left:0px;height:20px;width:36px"></div><div class="cigra" style="left:36px;height:20px;width:36px"></div><div class="cigr" style="left:72px;height:20px;width:36px"></div></div><div style="position:absolute;top:320px;width:100%;height:20px;"><div class="current-line" style="width:748px; height:20px;"></div><div class="cigr" style="left:0px;height:20px;width:36px"></div><div class="cigra" style="left:36px;height:20px;width:36px"></div><div class="cdr bracket-match" style="left:72px;width:9px;height:20px;"></div></div></div><div role="presentation" aria-hidden="true" class="view-rulers"></div><div class="view-zones" style="position: absolute;" role="presentation" aria-hidden="true"></div><div class="view-lines" style="position: absolute; font-family: SourceCodePro, monospace; font-weight: normal; font-size: 15px; line-height: 20px; letter-spacing: 0px; width: 748px; height: 2120px;" role="presentation" aria-hidden="true" data-mprt="7"><div style="top:0px;height:20px;" class="view-line"><span><span class="mtk14 mtkb">#include</span><span class="mtk1"> </span><span class="mtk14 mtkb"><</span><span class="mtk23">bits/stdc++.h</span><span class="mtk14 mtkb">></span></span></div><div style="top:20px;height:20px;" class="view-line"><span><span> </span></span></div><div style="top:40px;height:20px;" class="view-line"><span><span class="mtk14 mtkb">using</span><span class="mtk1"> </span><span class="mtk14 mtkb">namespace</span><span class="mtk1"> </span><span class="mtk12">std</span><span class="mtk10">;</span></span></div><div style="top:60px;height:20px;" class="view-line"><span><span> </span></span></div><div style="top:80px;height:20px;" class="view-line"><span><span class="mtk12">vector</span><span class="mtk10"><</span><span class="mtk12">string</span><span class="mtk10">></span><span class="mtk1"> </span><span class="mtk12">split_string</span><span class="mtk10">(</span><span class="mtk12">string</span><span class="mtk10">);</span></span></div><div style="top:100px;height:20px;" class="view-line"><span><span> </span></span></div><div style="top:120px;height:20px;" class="view-line"><span><span class="mtk8 mtki">// Complete the climbingLeaderboard function below</span><span class="mtk8 mtki">.</span></span></div><div style="top:140px;height:20px;" class="view-line"><span><span class="mtk12">vector</span><span class="mtk10"><</span><span class="mtk14 mtkb">int</span><span class="mtk10">></span><span class="mtk1"> </span><span class="mtk12">climbingLeaderboard</span><span class="mtk10">(</span><span class="mtk12">vector</span><span class="mtk10"><</span><span class="mtk14 mtkb">int</span><span class="mtk10">></span><span class="mtk1"> </span><span class="mtk12">scores</span><span class="mtk10">,</span><span class="mtk1"> </span><span class="mtk12">vector</span><span class="mtk10"><</span><span class="mtk14 mtkb">int</span><span class="mtk10">></span><span class="mtk1"> </span><span class="mtk12">alice</span><span class="mtk10">)</span><span class="mtk1"> </span><span class="mtk10">{</span></span></div><div style="top:160px;height:20px;" class="view-line"><span><span class="mtk1"> </span><span class="mtk12">vector</span><span class="mtk10"><</span><span class="mtk14 mtkb">int</span><span class="mtk10">></span><span class="mtk1"> </span><span class="mtk12">ans</span><span class="mtk10">;</span></span></div><div style="top: 360px; height: 20px;" class="view-line"><span><span class="mtk10">}</span></span></div><div style="top: 380px; height: 20px;" class="view-line"><span><span> </span></span></div><div style="top: 400px; height: 20px;" class="view-line"><span><span class="mtk14 mtkb">int</span><span class="mtk1"> </span><span class="mtk12">main</span><span class="mtk10">()</span></span></div><div style="top: 420px; height: 20px;" class="view-line"><span><span class="mtk10">{</span></span></div><div style="top: 440px; height: 20px;" class="view-line"><span><span class="mtk1"> </span><span class="mtk12">ofstream</span><span class="mtk1"> </span><span class="mtk12">fout</span><span class="mtk10">(</span><span class="mtk12">getenv</span><span class="mtk10">(</span><span class="mtk23">"OUTPUT_PATH"</span><span class="mtk10">));</span></span></div><div style="top: 460px; height: 20px;" class="view-line"><span><span> </span></span></div><div style="top: 480px; height: 20px;" class="view-line"><span><span class="mtk1"> </span><span class="mtk14 mtkb">int</span><span class="mtk1"> </span><span class="mtk12">scores_count</span><span class="mtk10">;</span></span></div><div style="top: 500px; height: 20px;" class="view-line"><span><span class="mtk1"> </span><span class="mtk12">cin</span><span class="mtk1"> </span><span class="mtk10">>></span><span class="mtk1"> </span><span class="mtk12">scores_count</span><span class="mtk10">;</span></span></div><div style="top:180px;height:20px;" class="view-line"><span><span class="mtk1"> </span><span class="mtk12">vector</span><span class="mtk10"><</span><span class="mtk14 mtkb">int</span><span class="mtk10">></span><span class="mtk1"> </span><span class="mtk12">rank</span><span class="mtk10">(</span><span class="mtk12">scores</span><span class="mtk10">.</span><span class="mtk12">size</span><span class="mtk10">(),</span><span class="mtk6">0</span><span class="mtk10">);</span></span></div><div style="top:200px;height:20px;" class="view-line"><span><span class="mtk1"> </span><span class="mtk12">rank</span><span class="mtk10">[</span><span class="mtk6">0</span><span class="mtk10">]</span><span class="mtk1"> </span><span class="mtk10">=</span><span class="mtk1"> </span><span class="mtk6">1</span><span class="mtk10">;</span></span></div><div style="top:220px;height:20px;" class="view-line"><span><span class="mtk1"> </span><span class="mtk14 mtkb">for</span><span class="mtk10">(</span><span class="mtk14 mtkb">int</span><span class="mtk1"> </span><span class="mtk12">i</span><span class="mtk1"> </span><span class="mtk10">=</span><span class="mtk1"> </span><span class="mtk6">1</span><span class="mtk10">;</span><span class="mtk12">i</span><span class="mtk10"><</span><span class="mtk12">scores</span><span class="mtk10">.</span><span class="mtk12">size</span><span class="mtk10">();</span><span class="mtk12">i</span><span class="mtk10">++)</span></span></div><div style="top:240px;height:20px;" class="view-line"><span><span class="mtk1"> </span><span class="mtk10">{</span></span></div><div style="top:260px;height:20px;" class="view-line"><span><span class="mtk1"> </span><span class="mtk14 mtkb">if</span><span class="mtk10">(</span><span class="mtk12">scores</span><span class="mtk10">[</span><span class="mtk12">i</span><span class="mtk10">]</span><span class="mtk1"> </span><span class="mtk10"><</span><span class="mtk1"> </span><span class="mtk12">scores</span><span class="mtk10">[</span><span class="mtk12">i</span><span class="mtk10">-</span><span class="mtk6">1</span><span class="mtk10">])</span></span></div><div style="top: 340px; height: 20px;" class="view-line"><span><span class="mtk1"> </span><span class="mtk10">}</span></span></div><div style="top:280px;height:20px;" class="view-line"><span><span class="mtk1"> </span><span class="mtk10">{</span></span></div><div style="top:300px;height:20px;" class="view-line"><span><span class="mtk1"> </span><span class="mtk12">rank</span><span class="mtk10">[</span><span class="mtk12">i</span><span class="mtk10">]</span><span class="mtk1"> </span><span class="mtk10">=</span><span class="mtk1"> </span><span class="mtk12">rank</span><span class="mtk10">[</span><span class="mtk12">i</span><span class="mtk10">-</span><span class="mtk6">1</span><span class="mtk10">]</span><span class="mtk1"> </span><span class="mtk10">+</span><span class="mtk1"> </span><span class="mtk6">1</span><span class="mtk10">;</span></span></div><div style="top:320px;height:20px;" class="view-line"><span><span class="mtk1"> </span><span class="mtk10">}</span></span></div></div><div data-mprt="1" class="contentWidgets" style="position: absolute; top: 0px;"><div class="lightbulb-glyph" title="Show Fixes (Ctrl+.)" style="position: absolute; visibility: hidden;" widgetid="LightBulbWidget"></div></div><div role="presentation" aria-hidden="true" class="cursors-layer cursor-line-style cursor-solid"><div class="cursor " style="height: 20px; top: 320px; left: 81px; font-family: SourceCodePro, monospace; font-weight: normal; font-size: 15px; line-height: 20px; letter-spacing: 0px; display: block; visibility: hidden; width: 1.6px;"></div></div></div><div role="presentation" aria-hidden="true" class="invisible scrollbar horizontal" style="position: absolute; width: 734px; height: 10px; left: 0px; bottom: 0px;"><div class="slider" style="position: absolute; top: 0px; left: 0px; height: 10px; will-change: transform; width: 734px;"></div></div><canvas class="decorationsOverviewRuler" style="position: absolute; will-change: transform; top: 0px; right: 0px; width: 14px; height: 507px;" aria-hidden="true" width="17" height="633"></canvas><div role="presentation" aria-hidden="true" class="invisible scrollbar vertical fade" style="position: absolute; width: 14px; height: 507px; right: 0px; top: 0px;"><div class="slider" style="position: absolute; top: 0px; left: 0px; width: 14px; will-change: transform; height: 121px;"></div></div></div><div role="presentation" aria-hidden="true" style="width: 819px;"></div><textarea data-mprt="6" class="inputarea" autocorrect="off" autocapitalize="off" autocomplete="off" spellcheck="false" aria-label="Editor content;Press Alt+F1 for Accessibility Options." role="textbox" aria-multiline="true" aria-haspopup="false" aria-autocomplete="both" style="font-family: SourceCodePro, monospace; font-weight: normal; font-size: 1px; line-height: 20px; letter-spacing: 0px; top: 320px; left: 152px; width: 0px; height: 0px;" wrap="off"> rank[0] = 1;
for(int i = 1;i<scores.size();i++)
{
if(scores[i] < scores[i-1])
{
rank[i] = rank[i-1] + 1;
}
}
}
</textarea><div style="position: absolute; top: 0px; left: 0px; width: 0px; height: 0px;"></div><div data-mprt="4" class="overlayWidgets" style="width: 819px;"><div class="accessibilityHelpWidget" style="display: none; position: absolute;" role="dialog" aria-hidden="true" widgetid="editor.contrib.accessibilityHelpWidget"><div role="document"></div></div><div class="monaco-editor-hover hidden" aria-hidden="true" role="presentation" style="position: absolute;" widgetid="editor.contrib.modesGlyphHoverWidget"></div></div><div data-mprt="8" class="minimap slider-mouseover" style="position: absolute; left: 0px; width: 0px; height: 507px;" role="presentation" aria-hidden="true"><div class="minimap-shadow-hidden" style="height: 507px;"></div><canvas style="position: absolute; left: 0px; width: 0.8px; height: 506.4px;" width="1" height="633"></canvas><canvas style="position: absolute; left: 0px; width: 0.8px; height: 506.4px;" class="minimap-decorations-layer" width="1" height="633"></canvas><div style="position: absolute; will-change: transform; width: 0px;" class="minimap-slider"><div style="position: absolute; width: 0px; height: 0px;" class="minimap-slider-horizontal"></div></div></div></div><div data-mprt="2" class="overflowingContentWidgets"><div class="monaco-editor-hover hidden" tabindex="0" style="position: absolute; visibility: hidden; max-width: 1536px;" widgetid="editor.contrib.modesContentHoverWidget"><div class="monaco-scrollable-element " role="presentation" style="position: relative; overflow: hidden;"><div class="monaco-editor-hover-content" style="overflow: hidden; font-size: 15px; line-height: 20px; max-height: 250px; max-width: 540.54px;"></div><div role="presentation" aria-hidden="true" class="invisible scrollbar horizontal" style="position: absolute;"><div class="slider" style="position: absolute; top: 0px; left: 0px; height: 10px; will-change: transform;"></div></div><div role="presentation" aria-hidden="true" class="invisible scrollbar vertical" style="position: absolute;"><div class="slider" style="position: absolute; top: 0px; left: 0px; width: 10px; will-change: transform;"></div></div><div class="shadow"></div><div class="shadow"></div><div class="shadow top-left-corner"></div></div></div><div class="editor-widget suggest-widget" style="position: absolute; visibility: inherit; max-width: 1536px; line-height: 20px; top: 220px; left: 152px;" widgetid="editor.widget.suggestWidget" monaco-visible-content-widget="true"><div class="message" style="display: none; background-color: rgb(37, 37, 38); border-color: rgb(69, 69, 69);" aria-hidden="true"></div><div class="tree" style="background-color: rgb(37, 37, 38); border-color: rgb(69, 69, 69); height: 20px; display: none;" aria-hidden="true"><div class="monaco-list list_id_2 selection-none" tabindex="0" role="tree"><div class="monaco-scrollable-element " role="presentation" style="position: relative; overflow: hidden;"><div class="monaco-list-rows" style="overflow: hidden; height: 0px; left: 0px; top: 0px;"></div><div role="presentation" aria-hidden="true" class="invisible scrollbar horizontal" style="position: absolute; width: 0px; height: 0px; left: 0px; bottom: 0px;"><div class="slider" style="position: absolute; top: 0px; left: 0px; height: 10px; will-change: transform; width: 0px;"></div></div><div role="presentation" aria-hidden="true" class="invisible scrollbar vertical" style="position: absolute; width: 10px; height: 20px; right: 0px; top: 0px;"><div class="slider" style="position: absolute; top: 0px; left: 0px; width: 10px; will-change: transform; height: 20px;"></div></div></div><style type="text/css" media="screen">.monaco-list.list_id_2:focus .monaco-list-row.focused { background-color: #062f4a; }
.monaco-list.list_id_2:focus .monaco-list-row.focused:hover { background-color: #062f4a; }
.monaco-list.list_id_2:focus .monaco-list-row.selected { background-color: #084066; }
.monaco-list.list_id_2:focus .monaco-list-row.selected:hover { background-color: #084066; }
.monaco-list.list_id_2:focus .monaco-list-row.selected { color: #ffffff; }
.monaco-drag-image,
.monaco-list.list_id_2:focus .monaco-list-row.selected.focused { background-color: #094771; }
.monaco-drag-image,
.monaco-list.list_id_2:focus .monaco-list-row.selected.focused { color: #ffffff; }
.monaco-list.list_id_2 .monaco-list-row.focused { background-color: #062f4a; }
.monaco-list.list_id_2 .monaco-list-row.focused:hover { background-color: #062f4a; }
.monaco-list.list_id_2 .monaco-list-row.selected { background-color: #37373d; }
.monaco-list.list_id_2 .monaco-list-row.selected:hover { background-color: #37373d; }
.monaco-list.list_id_2:not(.drop-target) .monaco-list-row:hover:not(.selected):not(.focused) { background-color: #2a2d2e; }
.monaco-list.list_id_2.drop-target,
.monaco-list.list_id_2 .monaco-list-row.drop-target { background-color: #062f4a !important; color: inherit !important; }
.monaco-list-type-filter { background-color: #653723 }
.monaco-list-type-filter { border: 1px solid rgba(0, 0, 0, 0); }
.monaco-list-type-filter.no-matches { border: 1px solid #be1100; }
.monaco-list-type-filter { box-shadow: 1px 1px 1px #000000; }</style></div></div><div class="details" style="font-size: 15px; font-weight: normal; display: none; background-color: rgb(37, 37, 38); border-color: rgb(69, 69, 69);" aria-hidden="true"><div class="monaco-scrollable-element " role="presentation" style="position: relative; overflow: hidden;"><div class="body" style="overflow: hidden;"><div class="header"><span class="close" title="Read less... (Ctrl+Space)" style="height: 20px; width: 20px;"></span><p class="type" style="font-family: SourceCodePro, monospace;"></p></div><p class="docs"></p></div><div role="presentation" aria-hidden="true" class="invisible scrollbar horizontal" style="position: absolute;"><div class="slider" style="position: absolute; top: 0px; left: 0px; height: 10px; will-change: transform;"></div></div><div role="presentation" aria-hidden="true" class="invisible scrollbar vertical" style="position: absolute;"><div class="slider" style="position: absolute; top: 0px; left: 0px; width: 10px; will-change: transform;"></div></div><div class="shadow"></div><div class="shadow"></div><div class="shadow top-left-corner"></div></div></div></div></div><div class="context-view" style="display: none;" aria-hidden="true"></div></div></div></div></div><div class="hr-monaco-editor-statusbar"><div class="statusbar-position">Line: 17 Col: 10</div><div style="display: flex;"><div class="statusbar-message"></div></div></div></div><div class="pmR pmL pmB plT run-code-wrapper"><button class=" pull-right btn btn-primary hr-monaco-submit">Submit Code</button><button class=" pull-right btn msR hr-monaco-compile">Run Code</button></div></div><div class="pmR pmL pmB hr-monaco-custom-input-wrapper inline"><div><button class="btn btn-text upload-file mlR" data-analytics="Upload File" type="button"><i class="icon-upload ui-icon-upload"></i>Upload Code as File</button></div><div><label><div class="custom-checkbox inline"><input type="checkbox" class="custom-input-checkbox"></div><span class="lmT msL testcase-label">Test against custom input</span></label></div></div></div></div></div><div class="challenge-response fs-container"></div></section></div></div></div></div></div></div></div></section></div></div><div></div><footer class="community-footer"><ul class="footer-links"><li class="link-item"><a target="_blank" class="footer-link calendar" data-analytics="FooterLinkCalendar" href="https://www.hackerrank.com/calendar">Contest Calendar</a></li><li class="link-item"><a target="_blank" class="footer-link blog" data-analytics="FooterLinkBlog" href="https://blog.hackerrank.com/">Blog</a></li><li class="link-item"><a target="_blank" class="footer-link scoring" data-analytics="FooterLinkScoring" href="https://www.hackerrank.com/scoring">Scoring</a></li><li class="link-item"><a target="_blank" class="footer-link environment" data-analytics="FooterLinkEnvironment" href="https://www.hackerrank.com/environment">Environment</a></li><li class="link-item"><a target="_blank" class="footer-link faq" data-analytics="FooterLinkFAQ" href="https://www.hackerrank.com/faq">FAQ</a></li><li class="link-item"><a target="_blank" class="footer-link" data-analytics="FooterLinkAboutUs" href="https://www.hackerrank.com/aboutus">About Us</a></li><li class="link-item"><a target="_blank" class="footer-link" data-analytics="FooterLinkSupport" href="https://help.hackerrank.com/hc/en-us">Support</a></li><li class="link-item"><a target="_blank" class="footer-link" data-analytics="FooterLinkCareers" href="https://www.hackerrank.com/careers">Careers</a></li><li class="link-item"><a target="_blank" class="footer-link" data-analytics="FooterLinkTermsOfService" href="https://www.hackerrank.com/terms-of-service">Terms Of Service</a></li><li class="link-item"><a target="_blank" class="footer-link" data-analytics="FooterLinkPrivacyPolicy" href="https://www.hackerrank.com/privacy">Privacy Policy</a></li><li class="link-item"><a target="_blank" class="footer-link featureRequestButton" data-analytics="FooterLinkFeatureRequest" href="https://www.hackerrank.com/support/feature">Request a Feature</a></li></ul></footer></div></div></div></div><!--Required to handle event bubbling of click in ios safari -->
<script>
//HR namespace
var HR = {};
HR.development = false;
HR.assetPath = 'https://hrcdn.net/community-frontend/assets/';
HR.pageLoadTime = Date.now();
HR.productNamespace = 'hackerrank';
HR.production = true;
HR.devServer = false;
HR.isIsomorphic = true;
HR.loadedWithOldCss = false;
HR.pusher = {"key":"a280047e3b323ccb1b65","cluster":"mt1"};
HR.stripe = {"key":"pk_PBXVCPHjyi31lIcbSe2mnlWEIYUzG"};
HR.servicesBaseUrl = "https://services.hackerrank.com";
HR.pendoAPIKey = "6a49047d-7d4c-46f5-7b81-8b6193d6bf7b";
</script>
<!-- Vendor scripts -->
<script src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_vendor-7286a9119d.js"></script>
<script src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/runtime-01063b9785.js"></script>
<script src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/chunks_runtime-b9a703a7ac.js"></script>
<script src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/hackerrank_r_client-9c42b3549e.js"></script>
<script>
var getUser = (function() {
var userData;
$(window).on('initializeNewUser', function(e, user) {
userData = user;
});
try{
if (typeof userData === 'undefined') {
userData = JSON.parse(decodeURI($('#initialUserData').html()));
$('#initialUserData').remove();
}
} catch(e){
userData = {};
console.log('No initial User data found');
}
return function() {
return userData;
}
})();
</script>
<!-- setting up sentry -->
<script src="Climbing%20the%20Leaderboard%20|%20HackerRank_files/raven.js" async="" crossorigin="anonymous" id="raven"></script>
<script>
(function(window, queue, loaded, script, user) {
var setupRaven = function(user) {
var userContext = {};
if (user && !!user.id) {
userContext.handle = user.id;
}
var extraContext = {
cdnUrl: Cookies.get("cdn_url")
}
if (Cookies) {
if (HR.productNamespace === 'hackerrank') {
extraContext.mixpanel_token = Cookies.get('hackerrank_mixpanel_token')
} else if (HR.productNamespace === 'hackerrankx') {
extraContext.mixpanel_token = Cookies.get('hackerrankx_mixpanel_token')
}
}
if(typeof Raven !== 'undefined') {
Raven.setUserContext(userContext);
Raven.setExtraContext(extraContext);
}
}
$(window).on('initializeNewUser', function(e, user) {
setupRaven(user);
});
window.onerror = function e(message, file, lineNo, columnNo, error) {
if (loaded) return;
queue.push([message, file, lineNo, columnNo, error]);
};
window.onunhandledrejection = function e(error) {
if (loaded) return;
queue.push([
error.reason,
]);
};
script.onreadystatechange = script.onload = function() {
if (loaded) return;
loaded = true;
Raven.config('https://6b2d52b23d5a4dd4bc44330335327c04@sentry.io/234162', {
release: "01da773987",
ignoreUrls: [/cdn\.userty\.com/],
ignoreErrors: [
'Error: Connection is disposed',
'Connection got disposed',
'A network error occurred',
'Model is disposed!',
'Unable to get property \'isVisible\' of undefined',
'Cannot read property \'isVisible\' of undefined',
],
}).install();
setupRaven(user);
window.onunhandledrejection = function e(error) {
Raven.captureException(error.reason, {
extra: {
type: error.type,
},
});
};
queue.forEach(function(error) {
Raven.captureException(error[4] || error[0], {
extra: {
file: error[1],
line: error[2],
col: error[3],
},
});
});
};
}(window, [], false, document.getElementById('raven'), getUser()));
</script>
<!-- Mixpanel Stub -->
<script type="text/javascript">
window.mixpanel = window.mixpanel || [];
var attrs = "disable track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.track_charge people.clear_charges people.delete_user".split(" ");
for (var attribute in attrs) {
mixpanel[attrs[attribute]] = function () {};
}
</script>
<!-- google analytics tracking -->
<script>
var _gaq = _gaq || [];
</script>
<!-- Pending candidate site custom GA code -->
<!-- google analytics tracking end-->
<!-- fullstory tracking start -->
<script type="text/javascript">
</script>
<!-- fullstory tracking end -->
<!-- Pendo Tracking -->
<!-- Pendo Tracking end -->
<!-- GTM tracking -->
<script type="text/javascript">
var gtmTracking = function (user){
if (window.dataLayer) {
window.dataLayer.push({'event': 'setUserProps', 'userProps': {
level: user.level,
badges_onboarding_status: user.badges_onboarding_status,
sourcing_jobs_consent: user.sourcing_jobs_consent
}});
}
}
gtmTracking(getUser());
$(window).on('initializeNewUser', function(e, user) {
gtmTracking(user);
});
</script>
<!-- GTM tracking end -->
<!-- Google Tag Manager (noscript) #1 -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NZTBQVZ"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) #1 -->
<!-- Marketo to be added later -->
<!-- Bizible -->
<!-- HR metrics init -->
<script type="text/javascript">
(function() {
hr_metrics.init({
product: 'hackerrank',
use_cookie: true,
uid_cookie_key: 'hackerrank_mixpanel_token',
uid_token_cookie_key: 'metrics_user_identifier',
session_cookie_key: 'session_id',
metrics_endpoint: 'https://metrics.hackerrank.com/metrics'
});
})();
(function(h) {
window.hr_metrics = h;
if (!h.loaded) {
var a = ['track', 'batch_track', 'app_track', 'externalService', 'init', 'batch_track_record', 'track_dwell_time', 'set_navigation_data'];
for (var i = 0; i < a.length; i++) {
if (!h[a[i]]) {h[a[i]] = function() {};}
}
}
})(window.hr_metrics || {});
</script>
<!-- hrutm_params -->
<!-- HR metrics extension pack -->
<script type="text/javascript">
if (('performance' in window) && ('timing' in window.performance)) {
$(window).on("load", function() {
setTimeout(function(){
var timing = window.performance.timing;
var obj = {
referring_url: window.location.pathname,
fullLoadTime: timing.loadEventEnd - timing.navigationStart,
// Total time from req start to load
loadTime: timing.loadEventEnd - timing.fetchStart,
// Time spent constructing the DOM tree
domReadyTime: timing.domComplete - timing.domInteractive,
// Time consumed preparing the new page
readyStart: timing.fetchStart - timing.navigationStart,
// Time spent during redirection
redirectTime: timing.redirectEnd - timing.redirectStart,
// AppCache
appcacheTime: timing.domainLookupStart - timing.fetchStart,
// Time spent unloading documents
unloadEventTime: timing.unloadEventEnd - timing.unloadEventStart,
// DNS query time
lookupDomainTime: timing.domainLookupEnd - timing.domainLookupStart,
// TCP connection time
connectTime: timing.connectEnd - timing.connectStart,
// Time spent during the request
requestTime: timing.responseEnd - timing.requestStart,
// Request to completion of the DOM loading
initDomTreeTime: timing.domInteractive - timing.responseEnd,
// Load event time
loadEventTime: timing.loadEventEnd - timing.loadEventStart,
// Origin of the request
react: true,
//isIsomorphic flag
isIsomorphic: window.HR.isIsomorphic,
//old css loaded flag
loadedWithOldCss: window.HR.loadedWithOldCss,
}
if (('navigation' in window.performance) && ('getEntries' in window.performance)) {
obj.navigationType = window.performance.navigation.type;
obj.navigationRedirectCount = window.performance.navigation.redirectCount;
if (obj.fullLoadTime > 8000) {
try {
var entries = window.performance.getEntries();
if(entries[0].toJSON){
obj.networkRequests = entries.map(function(e) {return e.toJSON();});
}
} catch (e) {
//do nothing
}
}
}
hr_metrics.app_track('page-load-metrics', obj);
}, 1000);
});
}
$(window).on("load", function() {
var _pathname = document.location.pathname;
var cdn_url_switched = Cookies.get("cdn_url_switched");
if (cdn_url_switched !== '') {
Cookies.remove('cdn_url_switched');
}
hr_metrics.batch_track('PageLoad', _pathname + document.location.search, {
attribute1: _pathname,
attribute6: cdn_url_switched,
cdn_url: Cookies.get("cdn_url")
});
if (hr_metrics.track_dwell_time) {
hr_metrics.track_dwell_time(_pathname);
hr_metrics.set_navigation_data();
}
$(window).on('beforeunload', function(){
var _pathname = document.location.pathname;
hr_metrics.batch_track('PageClose', _pathname + document.location.search, {
attribute2: _pathname
});
hr_metrics.track_dwell_time(_pathname, true);