-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHackerRank.html
1014 lines (824 loc) · 382 KB
/
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>
<!-- saved from url=(0056)https://www.hackerrank.com/challenges/java-loops/problem -->
<html lang="en-us" class="gr__hackerrank_com"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" id="meta-description" content="Join over 2 million developers in solving code challenges on HackerRank, one of the best ways to prepare for programming interviews."><meta property="og:image" id="meta-og-image" content="https://hrcdn.net/og/default.jpg"><meta property="og:description" id="meta-og-description" content="Join over 2 million developers in solving code challenges on HackerRank, one of the best ways to prepare for programming interviews."><meta property="og:url" content="https://www.hackerrank.com/domains/java/java-introduction"><meta property="og:site_name" 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" content="summary"><meta name="twitter:site" content="@hackerrank"><meta name="twitter:url" content="https://www.hackerrank.com/domains/java/java-introduction"><meta property="fb:app_id" content="347499128655783"><meta content="authenticity_token" name="csrf-param" id="csrf-param"><meta content="cM1fOOqqDlSCmEEGoMC4l8btPrhQH5JuUKDKafX+X2iCf9AoOnpolcLv8Fj30KXS6dqNBps7HJQfXHjXGVSPzw==" name="csrf-token" id="csrf-token">
<script src="./HackerRank_files/50b78854cb2e10773a00002d.js.download" async=""></script><script type="text/javascript" async="" src="./HackerRank_files/mixpanel-2-latest.min.js.download"></script><script type="text/javascript" async="" src="./HackerRank_files/ga.js.download"></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>
<style>
.cdn-error-view {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: white;
z-index: 9999;
font-family: "Whitney SSm A", "Whitney SSm B", "Avenir", "Segoe UI", "Ubuntu", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.cdn-error-view .error-box-wrap {
position: absolute;
top: 50%;
left: 50%;
padding: 20px;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
text-align: center;
}
.cdn-error-view .error-icon {
text-align: center;
}
.cdn-error-view .error-title {
font-size: 48px;
margin-top: 30px;
margin-bottom: 0;
font-weight: bold;
}
.cdn-error-view .error-message {
margin-top: 20px;
margin-bottom: 0;
}
.cdn-error-view .btn-wrap {
margin-top: 20px;
}
.cdn-error-view .btn-reload {
width: 300px;
padding: 10px;
border-radius: 3px;
border-color: #088837;
border-bottom-color: #007827;
border-width: 1px;
border-style: solid;
color : #FFF;
background-color: #2ec866;
background-image: -webkit-gradient(linear, top left, bottom left, color-stop(0, #2ec866), color-stop(1, #29b35b));
background-image: -webkit-linear-gradient(top, #2ec866, #29b35b);
background-image: linear-gradient(top, #2ec866, #29b35b);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -1px 4px rgba(32, 138, 70, 0.3);
outline: none;
}
</style>
<script>
var cdnLoaded = false;
var checkForWorkingCDN = (function() {
//this two value should come from configuration
var cdns = ["hrcdn.net"];
var cdnUrl = Cookies.get('cdn_url') || cdns[0];
var filePath = "https://hrcdn.net/hackerrank/assets/cdnping-691df18f10507ce98520c220c2ee3e60.js";
//extract pathname from url
var urlRegex = /^[^#]*?:\/\/.*?(\/.*)$/ ;
var match = filePath.match(urlRegex);
if(match) filePath = match[1];
//add current cdn on first of array
cdns.splice(cdns.indexOf(cdnUrl), 1);
cdns.unshift(cdnUrl);
var cdnIndx = 0;
function tryCurrentCDN() {
if (cdnUrl) document.write('<script src="https://' + cdnUrl + filePath + '?' + Date.now() + '"><\/script>');
document.write('<script>checkForWorkingCDN();<\/script>');
}
//try the current cdn
tryCurrentCDN();
return function() {
if (cdnUrl && cdnLoaded) {
Cookies.set('cdn_url', cdnUrl, {expires: 3});
Cookies.set('cdn_set', 'true', {expires: 3});
if (cdnIndx !== 0) {
document.location.reload();
}
//if cdnUrl not loaded check the next cdn;
} else if (cdnUrl) {
//track all the failed cdn
var failedCdns = Cookies.get('failed_cdn_hosts');
if (failedCdns) {
failedCdns = JSON.parse(failedCdns);
} else {
failedCdns = [];
}
failedCdns.push(cdnUrl);
var fifteenMinuteFromNow = new Date();
fifteenMinuteFromNow.setMinutes(15);
Cookies.set('failed_cdn_hosts', JSON.stringify(failedCdns), {expires: fifteenMinuteFromNow});
Cookies.set("cdn_url_switched", "true", {expires: fifteenMinuteFromNow});
//try next cdn
cdnIndx += 1;
cdnUrl = cdns[cdnIndx];
tryCurrentCDN();
//if no cdn left to check and none of loaded return err
} else {
Cookies.remove('cdn_url');
return 'cdnerror';
}
}
}());
</script><script src="./HackerRank_files/cdnping-691df18f10507ce98520c220c2ee3e60.js.download"></script><script>checkForWorkingCDN();</script>
<script>
//track cdn related matrices
(function() {
var allCdns = ["hrcdn.net"];
var metrics = [];
var defaultCdn = Cookies.get('default_cdn_url');
//method to track the events
function appTrack(key, attrs) {
attrs = attrs || {};
attrs.uid = Cookies.get('hackerrank_mixpanel_token')
metrics.push({
'key': key,
'meta_data': attrs
});
}
function sendMetrices() {
if (!XMLHttpRequest) return;
var xhr = new XMLHttpRequest();
var metrics_endpoint = 'https://metrics.hackerrank.com/app_metrics'; // Todo : this need to move on configuration
if (!xhr) return;
xhr.open("POST", metrics_endpoint, true);
//set xhr headers and options
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.withCredentials = true;
xhr.send(JSON.stringify({
data: metrics,
default_cdn_url: defaultCdn,
document_referrer: document.referrer
}));
}
var cdnUrl = Cookies.get('cdn_url');
var failedCdns = Cookies.get('failed_cdn_hosts');
var cdnMetrices = {};
//track used cdn host
if (cdnUrl) {
cdnMetrices['used-cdn'] = cdnUrl;
cdnMetrices['cdn-index'] = allCdns.indexOf(cdnUrl) + 1;
cdnMetrices['all-failed'] = false;
//track if all cdn failed (If cdnUrl is not set it means all cdn url failed)
} else {
cdnMetrices['used-cdn'] = '';
cdnMetrices['cdn-index'] = 999;
cdnMetrices['all-failed'] = true;
}
appTrack('cdn-metrices', cdnMetrices);
//track failed cdn
if (failedCdns) {
failedCdns = JSON.parse(failedCdns);
Cookies.remove('failed_cdn_hosts');
failedCdns.forEach(function(cdn) {
appTrack('failed-cdn-host', {
cdn: cdn
});
});
}
//send metrics
sendMetrices();
}());
</script>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<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://api.mixpanel.com/">
<link rel="dns-prefetch" href="https://heapanalytics.com/">
<link rel="dns-prefetch" href="https://metrics.hackerrank.com/">
<!-- Load promise polyfill for the non-believers -->
<script>
window.Promise || document.write('<script src="https://hrcdn.net/hackerrank/assets/promise-polyfill/promise.min-6441a8739281da98ea4e511b5e96b7c2.js" type="text\/javascript"><\/script>');
</script>
<!-- Prefetch old assets -->
<link rel="prefetch" href="https://hrcdn.net/hackerrank/assets/hackerrank-7ebd92b5a354209052a9bce018e8a907.js">
<link rel="prefetch" href="https://hrcdn.net/hackerrank/assets/base-9c1fbd41eaf488758b4fbd25af7ffaee.js">
<link rel="prefetch" href="https://hrcdn.net/hackerrank/assets/hackerrank_libraries-813aa59d90d24615b794a2edc1bfcbc8.js">
<!-- Prefetch old assets end-->
<!-- preload scripts required on the same page -->
<link rel="preload" as="script" href="./HackerRank_files/hackerrank_r_community-5aef6f073801fb78a894.js.download">
<!-- preload scripts end -->
<link href="./HackerRank_files/hackerrank_libraries-d884f4ea635439f7418d3c462220f7c4.css" media="all" rel="stylesheet"><link rel="stylesheet" href="./HackerRank_files/hackerrank_libraries-d884f4ea635439f7418d3c462220f7c4.css">
<link href="./HackerRank_files/hackerrank-core-e4770600ef9149004a36b432b6223ab3.css" media="all" rel="stylesheet">
<link href="./HackerRank_files/dashboard-d5be922e6d6b7b974c0fb3de032b0ee8.css" media="all" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./HackerRank_files/hackerrank_r_app-eeb90c8aef.css">
<link rel="stylesheet" href="./HackerRank_files/hackerrank_r_community-fdeea7d00d.css">
<style>
html.scroll-hidden,html.scroll-hidden body{
overflow: hidden;
height:100vh;
}
html.scroll-hidden.pad-adjustment body{
padding-right : 17px;
}
html.scroll-hidden.pad-adjustment .fixed-elm{
padding-right : 17px;
}
</style>
<script type="text/javascript" charset="utf-8" async="" src="./HackerRank_files/hackerrank_r_community-5aef6f073801fb78a894.js.download"></script><link rel="prefetch" href="./HackerRank_files/hackerrank_r_challenge-6b34b083da29b413f328.js.download"><link rel="prefetch" href="https://hrcdn.net/hackerrank/assets/hackerrank_r_jobs-721e58241291f1946e64.js"><link rel="prefetch" href="https://hrcdn.net/hackerrank/assets/hackerrank_r_profile-417d6d77714c1a8dde48.js"><style id="react-tooltip">.__react_component_tooltip{border-radius:3px;display:inline-block;font-size:13px;left:-999em;opacity:0;padding:8px 21px;position:fixed;pointer-events:none;transition:opacity 0.3s ease-out;top:-999em;visibility:hidden;z-index:999}.__react_component_tooltip:before,.__react_component_tooltip:after{content:"";width:0;height:0;position:absolute}.__react_component_tooltip.show{opacity:0.9;margin-top:0px;margin-left:0px;visibility:visible}.__react_component_tooltip.type-dark{color:#fff;background-color:#222}.__react_component_tooltip.type-dark.place-top:after{border-top-color:#222;border-top-style:solid;border-top-width:6px}.__react_component_tooltip.type-dark.place-bottom:after{border-bottom-color:#222;border-bottom-style:solid;border-bottom-width:6px}.__react_component_tooltip.type-dark.place-left:after{border-left-color:#222;border-left-style:solid;border-left-width:6px}.__react_component_tooltip.type-dark.place-right:after{border-right-color:#222;border-right-style:solid;border-right-width:6px}.__react_component_tooltip.type-dark.border{border:1px solid #fff}.__react_component_tooltip.type-dark.border.place-top:before{border-top:8px solid #fff}.__react_component_tooltip.type-dark.border.place-bottom:before{border-bottom:8px solid #fff}.__react_component_tooltip.type-dark.border.place-left:before{border-left:8px solid #fff}.__react_component_tooltip.type-dark.border.place-right:before{border-right:8px solid #fff}.__react_component_tooltip.type-success{color:#fff;background-color:#8DC572}.__react_component_tooltip.type-success.place-top:after{border-top-color:#8DC572;border-top-style:solid;border-top-width:6px}.__react_component_tooltip.type-success.place-bottom:after{border-bottom-color:#8DC572;border-bottom-style:solid;border-bottom-width:6px}.__react_component_tooltip.type-success.place-left:after{border-left-color:#8DC572;border-left-style:solid;border-left-width:6px}.__react_component_tooltip.type-success.place-right:after{border-right-color:#8DC572;border-right-style:solid;border-right-width:6px}.__react_component_tooltip.type-success.border{border:1px solid #fff}.__react_component_tooltip.type-success.border.place-top:before{border-top:8px solid #fff}.__react_component_tooltip.type-success.border.place-bottom:before{border-bottom:8px solid #fff}.__react_component_tooltip.type-success.border.place-left:before{border-left:8px solid #fff}.__react_component_tooltip.type-success.border.place-right:before{border-right:8px solid #fff}.__react_component_tooltip.type-warning{color:#fff;background-color:#F0AD4E}.__react_component_tooltip.type-warning.place-top:after{border-top-color:#F0AD4E;border-top-style:solid;border-top-width:6px}.__react_component_tooltip.type-warning.place-bottom:after{border-bottom-color:#F0AD4E;border-bottom-style:solid;border-bottom-width:6px}.__react_component_tooltip.type-warning.place-left:after{border-left-color:#F0AD4E;border-left-style:solid;border-left-width:6px}.__react_component_tooltip.type-warning.place-right:after{border-right-color:#F0AD4E;border-right-style:solid;border-right-width:6px}.__react_component_tooltip.type-warning.border{border:1px solid #fff}.__react_component_tooltip.type-warning.border.place-top:before{border-top:8px solid #fff}.__react_component_tooltip.type-warning.border.place-bottom:before{border-bottom:8px solid #fff}.__react_component_tooltip.type-warning.border.place-left:before{border-left:8px solid #fff}.__react_component_tooltip.type-warning.border.place-right:before{border-right:8px solid #fff}.__react_component_tooltip.type-error{color:#fff;background-color:#BE6464}.__react_component_tooltip.type-error.place-top:after{border-top-color:#BE6464;border-top-style:solid;border-top-width:6px}.__react_component_tooltip.type-error.place-bottom:after{border-bottom-color:#BE6464;border-bottom-style:solid;border-bottom-width:6px}.__react_component_tooltip.type-error.place-left:after{border-left-color:#BE6464;border-left-style:solid;border-left-width:6px}.__react_component_tooltip.type-error.place-right:after{border-right-color:#BE6464;border-right-style:solid;border-right-width:6px}.__react_component_tooltip.type-error.border{border:1px solid #fff}.__react_component_tooltip.type-error.border.place-top:before{border-top:8px solid #fff}.__react_component_tooltip.type-error.border.place-bottom:before{border-bottom:8px solid #fff}.__react_component_tooltip.type-error.border.place-left:before{border-left:8px solid #fff}.__react_component_tooltip.type-error.border.place-right:before{border-right:8px solid #fff}.__react_component_tooltip.type-info{color:#fff;background-color:#337AB7}.__react_component_tooltip.type-info.place-top:after{border-top-color:#337AB7;border-top-style:solid;border-top-width:6px}.__react_component_tooltip.type-info.place-bottom:after{border-bottom-color:#337AB7;border-bottom-style:solid;border-bottom-width:6px}.__react_component_tooltip.type-info.place-left:after{border-left-color:#337AB7;border-left-style:solid;border-left-width:6px}.__react_component_tooltip.type-info.place-right:after{border-right-color:#337AB7;border-right-style:solid;border-right-width:6px}.__react_component_tooltip.type-info.border{border:1px solid #fff}.__react_component_tooltip.type-info.border.place-top:before{border-top:8px solid #fff}.__react_component_tooltip.type-info.border.place-bottom:before{border-bottom:8px solid #fff}.__react_component_tooltip.type-info.border.place-left:before{border-left:8px solid #fff}.__react_component_tooltip.type-info.border.place-right:before{border-right:8px solid #fff}.__react_component_tooltip.type-light{color:#222;background-color:#fff}.__react_component_tooltip.type-light.place-top:after{border-top-color:#fff;border-top-style:solid;border-top-width:6px}.__react_component_tooltip.type-light.place-bottom:after{border-bottom-color:#fff;border-bottom-style:solid;border-bottom-width:6px}.__react_component_tooltip.type-light.place-left:after{border-left-color:#fff;border-left-style:solid;border-left-width:6px}.__react_component_tooltip.type-light.place-right:after{border-right-color:#fff;border-right-style:solid;border-right-width:6px}.__react_component_tooltip.type-light.border{border:1px solid #222}.__react_component_tooltip.type-light.border.place-top:before{border-top:8px solid #222}.__react_component_tooltip.type-light.border.place-bottom:before{border-bottom:8px solid #222}.__react_component_tooltip.type-light.border.place-left:before{border-left:8px solid #222}.__react_component_tooltip.type-light.border.place-right:before{border-right:8px solid #222}.__react_component_tooltip.place-top{margin-top:-10px}.__react_component_tooltip.place-top:before{border-left:10px solid transparent;border-right:10px solid transparent;bottom:-8px;left:50%;margin-left:-10px}.__react_component_tooltip.place-top:after{border-left:8px solid transparent;border-right:8px solid transparent;bottom:-6px;left:50%;margin-left:-8px}.__react_component_tooltip.place-bottom{margin-top:10px}.__react_component_tooltip.place-bottom:before{border-left:10px solid transparent;border-right:10px solid transparent;top:-8px;left:50%;margin-left:-10px}.__react_component_tooltip.place-bottom:after{border-left:8px solid transparent;border-right:8px solid transparent;top:-6px;left:50%;margin-left:-8px}.__react_component_tooltip.place-left{margin-left:-10px}.__react_component_tooltip.place-left:before{border-top:6px solid transparent;border-bottom:6px solid transparent;right:-8px;top:50%;margin-top:-5px}.__react_component_tooltip.place-left:after{border-top:5px solid transparent;border-bottom:5px solid transparent;right:-6px;top:50%;margin-top:-4px}.__react_component_tooltip.place-right{margin-left:10px}.__react_component_tooltip.place-right:before{border-top:6px solid transparent;border-bottom:6px solid transparent;left:-8px;top:50%;margin-top:-5px}.__react_component_tooltip.place-right:after{border-top:5px solid transparent;border-bottom:5px solid transparent;left:-6px;top:50%;margin-top:-4px}.__react_component_tooltip .multi-line{display:block;padding:2px 0px;text-align:center}</style><script type="text/javascript" charset="utf-8" async="" src="./HackerRank_files/hackerrank_r_challenge-6b34b083da29b413f328.js.download"></script><title><!-- react-text: 3 --> <!-- /react-text --><!-- react-text: 4 -->HackerRank<!-- /react-text --><!-- react-text: 5 --> <!-- /react-text --></title><meta property="og:url" content="https://www.hackerrank.com/challenges/java-loops/problem"><meta name="twitter:url" content="https://www.hackerrank.com/challenges/java-loops/problem"><script type="text/javascript" charset="utf-8" async="" src="./HackerRank_files/hackerrank_r_codeshell_lib-9a8f7f0e6c2f1e16494e.js.download"></script><script type="text/javascript" charset="utf-8" async="" src="./HackerRank_files/hackerrank_r_keyboardjs-24d025dbc9a593ec33bb.js.download"></script><script src="./HackerRank_files/codemirror_basic-019522375b017824c3a79637bd031343.js.download" async=""></script><script src="./HackerRank_files/clike-b5cf8fcbc6a9f9d1e313590f025c434b.js.download" async=""></script><title>Solve Introduction Questions | Java | HackerRank</title><meta id="meta-og-title" property="og:title" content="Solve Java Code Challenges"><meta property="og:title" id="meta-og-title" content="HackerRank"><meta name="twitter:title" id="meta-twitter-title" content="HackerRank"></head>
<body id="hr_v2" data-gr-c-s-loaded="true">
<div class="cdn-error-view" style="display:none;">
<div class="error-box-wrap">
<div class="error-icon">
<svg x="0px" y="0px" width="80px" height="80px" viewBox="0 0 367.011 367.01" style="enable-background:new 0 0 367.011 367.01;" xml:space="preserve">
<g>
<g>
<path d="M365.221,329.641L190.943,27.788c-1.542-2.674-4.395-4.318-7.479-4.318c-3.084,0-5.938,1.645-7.48,4.318L1.157,330.584 c-1.543,2.674-1.543,5.965,0,8.639c1.542,2.674,4.395,4.318,7.48,4.318h349.65c0.028,0,0.057,0,0.086,0 c4.77,0,8.638-3.863,8.638-8.639C367.011,332.92,366.342,331.1,365.221,329.641z M23.599,326.266L183.464,49.381l159.864,276.885 H23.599z"></path>
<path d="M174.826,136.801v123.893c0,4.773,3.867,8.638,8.638,8.638c4.77,0,8.637-3.863,8.637-8.638V136.801 c0-4.766-3.867-8.637-8.637-8.637C178.693,128.165,174.826,132.036,174.826,136.801z"></path>
<path d="M183.464,279.393c-5.922,0-10.725,4.8-10.725,10.722s4.803,10.729,10.725,10.729c5.921,0,10.725-4.809,10.725-10.729 C194.189,284.193,189.386,279.393,183.464,279.393z"></path>
</g>
</g>
</svg>
</div>
<h2 class="error-title">Something went wrong!</h2>
<p class="error-message">Some error occured while loading page for you. Please try again.</p>
<div class="btn-wrap">
<a href="https://www.hackerrank.com/challenges/java-loops/problem#" onclick="window.location.reload(true);"><button class="btn-reload">Reload</button></a>
</div>
</div>
</div>
<script>
if(typeof cdnLoaded !== 'undefined' && cdnLoaded === false){
document.querySelector('.cdn-error-view').style.display = 'block';
}
</script>
<div class="cdn-error-view" style="display:none;">
<div class="error-box-wrap">
<div class="error-icon">
<svg x="0px" y="0px" width="80px" height="80px" viewBox="0 0 367.011 367.01" style="enable-background:new 0 0 367.011 367.01;" xml:space="preserve">
<g>
<g>
<path d="M365.221,329.641L190.943,27.788c-1.542-2.674-4.395-4.318-7.479-4.318c-3.084,0-5.938,1.645-7.48,4.318L1.157,330.584 c-1.543,2.674-1.543,5.965,0,8.639c1.542,2.674,4.395,4.318,7.48,4.318h349.65c0.028,0,0.057,0,0.086,0 c4.77,0,8.638-3.863,8.638-8.639C367.011,332.92,366.342,331.1,365.221,329.641z M23.599,326.266L183.464,49.381l159.864,276.885 H23.599z"></path>
<path d="M174.826,136.801v123.893c0,4.773,3.867,8.638,8.638,8.638c4.77,0,8.637-3.863,8.637-8.638V136.801 c0-4.766-3.867-8.637-8.637-8.637C178.693,128.165,174.826,132.036,174.826,136.801z"></path>
<path d="M183.464,279.393c-5.922,0-10.725,4.8-10.725,10.722s4.803,10.729,10.725,10.729c5.921,0,10.725-4.809,10.725-10.729 C194.189,284.193,189.386,279.393,183.464,279.393z"></path>
</g>
</g>
</svg>
</div>
<h2 class="error-title">Something went wrong!</h2>
<p class="error-message">Some error occured while loading page for you. Please try again.</p>
<div class="btn-wrap">
<a href="https://www.hackerrank.com/challenges/java-loops/problem#" onclick="window.location.reload(true);"><button class="btn-reload">Reload</button></a>
</div>
</div>
</div>
<script>
if(typeof cdnLoaded !== 'undefined' && cdnLoaded === false){
document.querySelector('.cdn-error-view').style.display = 'block';
}
</script>
<div id="fb-root"></div>
<div id="content" onclick="void(0);"><div class="body-wrap community-page challenges-page problem-page" data-reactroot="" data-reactid="1" data-react-checksum="-278842994" style=""><!-- react-empty: 2 --><div class="component-wrapper"><!-- react-empty: 1849 --><div><div class="page-header-wrapper"><nav class="page-header"><div class="container"><div class="nav-links header-nav-links"><ul class="pull-left nav-links-active"><li><a class="nav_link backbone logo_mark js_logo_mark" data-analytics="NavBarLogo" href="https://www.hackerrank.com/dashboard"><img id="feed-intro" src="./HackerRank_files/h_mark_sm-2b74ffcaf85d7091a6301c30d6c411c5.svg" alt=""></a></li><li><a class="nav_link backbone domains" data-analytics="NavBarDomains" href="https://www.hackerrank.com/dashboard"><i class="icon-home"></i><span>Practice</span></a></li><li><a class="nav_link backbone contests" data-analytics="NavBarContests" href="https://www.hackerrank.com/contests"><i class="icon-clock"></i><span>Compete</span></a></li><li><a class="nav_link backbone" data-analytics="NavBarJobs" href="https://www.hackerrank.com/jobs"><i class="icon-briefcase"></i><span>Jobs</span><i class="icon-circle js-jobs-notification navigation-highlight-icon hidden"></i></a></li><li><a class="nav_link backbone" data-analytics="NavBarMyRank" id="myrank-nav-link" href="https://www.hackerrank.com/rank"><i class="icon-award"></i><span>Rank</span></a></li><li><a class="nav_link backbone" data-analytics="NavBarLeaderboard" id="leaderboard-nav-link" href="https://www.hackerrank.com/leaderboard"><i class="icon-trophy"></i><span>Leaderboard</span></a></li></ul></div><div class="nav-buttons"><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"><div class="hide-in-private-contest search-input input-icon"><div class="search-query asyn-autocomplete autocomplete"><div class="ac-input-wrap cf"><input autocomplete="off" class="ac-input " value=""></div></div><i class="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 notify_dropdown dropdown"><a class="cursor backbone nav_link hr_nav_messages_link js-dropdown-toggle js-link" data-analytics="NavBarMessageIcon"><i class="icon-chat icon--single"></i></a><div class="dropdown-menu large"><header class="psT psB text-center"><strong>Messages</strong></header><div id="notify_messages" class="dropdown-body"><div class="hr_nav_messages_list"><div class="no-propagation text-center txt-navy" style="padding: 30px 0px; font-size: 16px;">You have no unread messages.</div></div></div><footer class="final text-center"><a class="btn backbone" href="https://www.hackerrank.com/inbox" data-analytics="NavBarMessageShowAll">Show All</a></footer></div></div></li><li class="button-item"><div class="dropdown dropdown notify_dropdown"><a class="cursor backbone nav_link hr_nav_notifications_link js-dropdown-toggle js-link" data-toggle="dropdown" data-analytics="NavBarNotificationsIcon"><i class="icon-megaphone icon--single"></i></a><div class="dropdown-menu large" id="notify_broadcasts"><header class="psA"><strong>Notifications</strong><a class="hr_archive_all pull-right js-link" data-analytics="NavBarNotificationsArchiveAll"><i class="icon-folder-open"></i><!-- react-text: 1911 -->Archive All<!-- /react-text --></a></header><div class="clearfix dropdown-body"><div class="hr_nav_notifications_list"><ul><li class="notify_item" data-id="32257610" data-category="contest-announcements" data-url="/adobe-codhers?h_r=ipn"><div class="notification-icon"><img src="./HackerRank_files/notifymarker.png"></div><div class="notification-subject pmT"><div class="psA"><div>Adobe invites women to join Adobe Codhers CodeSprint</div><small class="meta"><time datetime="2016-11-12T02:48:30.000Z" title="2016-11-12 02:48">11 months ago</time></small></div></div></li><li class="notify_item" data-id="30083486" data-category="contest-announcements" data-url="/sears-dots-arrows"><div class="notification-icon"><img src="./HackerRank_files/notifymarker.png"></div><div class="notification-subject pmT"><div class="psA"><div>Sign Up for Sears CodeSprint - 10L+ Cash Prizes & Career Opportunities</div><small class="meta"><time datetime="2016-10-20T11:58:24.000Z" title="2016-10-20 11:58">11 months ago</time></small></div></div></li><li class="notify_item" data-id="22889206" data-category="new-challenge" data-url="/domains/java/java-introduction"><div class="notification-icon"><img src="./HackerRank_files/notifymarker.png"></div><div class="notification-subject pmT"><div class="psA"><div>New challenges added to Java <i class="icon-right-open mmL"></i> Introduction</div><small class="meta"><time datetime="2016-08-01T08:23:40.000Z" title="2016-08-01 08:23">1 year ago</time></small></div></div></li><li class="notify_item" data-id="12158613" data-category="contest-announcements" data-url="/womens-codesprint"><div class="notification-icon"><img src="./HackerRank_files/notifymarker.png"></div><div class="notification-subject pmT"><div class="psA"><div>Do you know any women who love to code?</div><small class="meta"><time datetime="2016-04-12T14:51:19.000Z" title="2016-04-12 14:51">1 year ago</time></small></div></div></li><li class="notify_item" data-id="10844592" data-category="special-announcement" data-url="/changes-to-tos-and-email-preferences"><div class="notification-icon"><img src="./HackerRank_files/notifymarker.png"></div><div class="notification-subject pmT"><div class="psA"><div>We recently updated our Terms of Service and Email Preferences options</div><small class="meta"><time datetime="2016-03-05T02:29:19.000Z" title="2016-03-05 02:29">2 years ago</time></small></div></div></li><li class="notify_item" data-id="9077505" data-category="contest-announcements" data-url="/juniper-codesprint"><div class="notification-icon"><img src="./HackerRank_files/notifymarker.png"></div><div class="notification-subject pmT"><div class="psA"><div>Sign up for Juniper Coding Challenge</div><small class="meta"><time datetime="2016-02-10T11:31:15.000Z" title="2016-02-10 11:31">2 years ago</time></small></div></div></li><li class="notify_item" data-id="6765273" data-category="new-challenge" data-url="/domains/regex/re-repetitions"><div class="notification-icon"><img src="./HackerRank_files/notifymarker.png"></div><div class="notification-subject pmT"><div class="psA"><div>New challenges added to Regex <i class="icon-right-open mmL"></i> Repetitions</div><small class="meta"><time datetime="2015-12-16T18:16:36.000Z" title="2015-12-16 18:16">2 years ago</time></small></div></div></li><li class="notify_item" data-id="4113544" data-category="new-challenge" data-url="/domains/java/java-introduction"><div class="notification-icon"><img src="./HackerRank_files/notifymarker.png"></div><div class="notification-subject pmT"><div class="psA"><div>New challenges added to Java <i class="icon-right-open mmL"></i> Introduction</div><small class="meta"><time datetime="2015-11-24T17:27:48.000Z" title="2015-11-24 17:27">2 years ago</time></small></div></div></li><li class="notify_item" data-id="2952482" data-category="new-challenge" data-url="/domains/java/java-introduction"><div class="notification-icon"><img src="./HackerRank_files/notifymarker.png"></div><div class="notification-subject pmT"><div class="psA"><div>New challenges added to Java <i class="icon-right-open mmL"></i> Introduction</div><small class="meta"><time datetime="2015-11-03T18:58:50.000Z" title="2015-11-03 18:58">2 years ago</time></small></div></div></li></ul></div></div><footer class="final"><a class="btn backbone" href="https://www.hackerrank.com/notifications" data-analytics="NavBarNotificationsShowAll">Show All</a></footer></div></div></li><li class="button-item"><div class="dropdown dropdown dropdown-auth profile-menu"><a class="backbone nav_link js-dropdown-toggle js-link" href="https://www.hackerrank.com/challenges/java-loops/problem" data-analytics="NavBarProfileDropDown"><img src="./HackerRank_files/gravatar.jpg" alt="" class="avatar"><span class="mmR username text-ellipsis">vKING</span><i class="icon-down-open"></i></a><div class="dropdown-menu drop-list pull-right"><ul><li class="hide-in-private-contest"><a class="navigation_hackos backbone" href="https://www.hackerrank.com/vKING/hackos" data-analytics="NavBarProfileDropDownHackos"><!-- react-text: 1999 -->Hackos: <!-- /react-text --><span class="navigation_hackos-count">135</span></a></li><li class="hide-in-private-contest"><a class="backbone" rel="tooltip" data-placement="left" data-analytics="NavBarProfileDropDownProfile" href="https://www.hackerrank.com/vKING"><!-- react-text: 2003 -->Profile<!-- /react-text --><span class="progress-wrapper"><span class="progress-bar" style="width: 30%;"></span></span></a></li><li class="hide-in-private-contest"><a class="backbone" href="https://www.hackerrank.com/settings" data-analytics="NavBarProfileDropDownSettings">Settings</a></li><li class="hide-in-private-contest"><a class="backbone" href="https://www.hackerrank.com/network" data-analytics="NavBarProfileDropDownNetwork">Network</a></li><li class="hide-in-private-contest"><a class="backbone" href="https://www.hackerrank.com/submissions" data-analytics="NavBarProfileDropDownSubmissions">Submissions</a></li><li class="hide-in-private-contest"><a class="backbone" href="https://www.hackerrank.com/administration" data-analytics="NavBarProfileDropDownAdministration">Administration</a></li><li><a class="logout-button js-link" data-analytics="NavBarProfileDropDownLogout">Logout</a></li></ul></div></div></li></ul></div></div></nav></div><!-- react-empty: 2016 --><div id="breadcrumb"><div class="content-header b4"><div class="container pjL"><div class="clearfix"><ol itemtype="http://schema.org/BreadcrumbList" class="pull-left mdT msB pjT bcrumb"><li itemprop="itemListElement" itemtype="http://schema.org/ListItem"><a itemprop="item" class="backbone" data-analytics="Breadcrumb" data-attr1="Dashboard" data-attr2="global" data-attr7="1" href="https://www.hackerrank.com/dashboard"><span itemprop="name">Dashboard</span></a><meta itemprop="position" content="1"></li><li itemprop="itemListElement" itemtype="http://schema.org/ListItem"><i class="icon-right-open mmL"></i><a itemprop="item" class="backbone" data-analytics="Breadcrumb" data-attr1="Java" data-attr2="global" data-attr7="1" href="https://www.hackerrank.com/domains/java"><span itemprop="name">Java</span></a><meta itemprop="position" content="1"></li><li itemprop="itemListElement" itemtype="http://schema.org/ListItem"><i class="icon-right-open mmL"></i><a itemprop="item" class="backbone" data-analytics="Breadcrumb" data-attr1="Introduction" data-attr2="global" data-attr7="1" href="https://www.hackerrank.com/domains/java/java-introduction"><span itemprop="name">Introduction</span></a><meta itemprop="position" content="1"></li><li itemprop="itemListElement" itemtype="http://schema.org/ListItem"><i class="icon-right-open mmL"></i><a itemprop="item" class="backbone" data-analytics="Breadcrumb" data-attr1="Java Loops II" data-attr2="global" data-attr7="1" href="https://www.hackerrank.com/challenges/java-loops"><span itemprop="name">Java Loops II</span></a><meta itemprop="position" content="1"></li></ol><div class="social-share-view-wrap social-buttons mjT pull-right"><a class="social-btn cursor facebook-share-btn txt-white"><i class="icon-facebook"></i></a><a class="social-btn cursor twitter-share-btn txt-white txt-white"><i class="icon-twitter"></i></a><a class="social-btn cursor linkedin-share-btn txt-white"><i class="icon-linkedin"></i></a></div></div></div></div></div><div class="container"></div><div class="challenge-view"><div class="challenge-header"><div class="submission-status-banner submission-status-view"><div class="submission-model-panel"><p class="container"><span class="text-center"><span>Your Java Loops II submission got 10.00 points.</span><span><!-- react-text: 2590 --> <!-- /react-text --><iframe src="./HackerRank_files/share_button.html" scrolling="no" frameborder="0" class="share-btn" allowtransparency="true"></iframe><!-- react-text: 2592 --> <!-- /react-text --><iframe src="./HackerRank_files/tweet_button.html" scrolling="no" frameborder="0" class="share-btn" allowtransparency="true"></iframe><br><span><a class="backbone close-success" href="https://www.hackerrank.com/challenges/java-datatypes">Try the Next Challenge</a><span class="seperator">|</span><a class="hr_tour-leaderboard close-success backbone" href="https://www.hackerrank.com/challenges/java-datatypes">Try a Random Challenge</a></span></span></span></p><a class="close">×</a></div></div><div class="container"><div class="mdT mmB span10"><div class="clearfix"><h2 class="hr_tour-challenge-name pull-left mlT"><!-- react-text: 2064 -->Java Loops II<!-- /react-text --><i class="icon-bookmark js-bookmark xxsmall txt-grey"></i></h2></div><div class="clearfix mlB mmT"><img src="./HackerRank_files/150x150.png" height="25" width="25" class="avatar pull-left"><span class="small bold"><!-- react-text: 2069 -->by <!-- /react-text --><a class="backbone color-blue" href="https://www.hackerrank.com/Shafaet" data-analytics="ChallengeViewHeaderAuthor" data-attr1="java-loops" data-attr2="Shafaet">Shafaet</a></span></div></div></div><div class="container"><ul class="nav-tabs nav mlT"><li id="problemTab" class="active"><a class="hr-problem-link" data-analytics="ChallengeViewTab" data-attr1="/challenges/java-loops/problem" data-attr2="Problem" href="https://www.hackerrank.com/challenges/java-loops/problem">Problem</a></li><li id="submissionsTab" class=""><a class="hr-submissions-link" data-analytics="ChallengeViewTab" data-attr1="/challenges/java-loops/submissions" data-attr2="Submissions" href="https://www.hackerrank.com/challenges/java-loops/submissions">Submissions</a></li><li id="leaderboardTab" class=""><a class="hr-leaderboard-link" data-analytics="ChallengeViewTab" data-attr1="/challenges/java-loops/leaderboard" data-attr2="Leaderboard" href="https://www.hackerrank.com/challenges/java-loops/leaderboard">Leaderboard</a></li><li id="forumTab" class=""><a class="hr-forum-link" data-analytics="ChallengeViewTab" data-attr1="/challenges/java-loops/forum" data-attr2="Discussions" href="https://www.hackerrank.com/challenges/java-loops/forum">Discussions</a></li><li id="editorialTab" class=""><a class="hr-editorial-link" data-analytics="ChallengeViewTab" data-attr1="/challenges/java-loops/editorial" data-attr2="Editorial" href="https://www.hackerrank.com/challenges/java-loops/editorial"><!-- react-text: 2083 -->Editorial <!-- /react-text --><i class="icon-lock"></i></a></li></ul></div></div><section class="challenge-interface challenge-problem"><div class="challenge-body"><div class="challenge-body-elements-problem challenge-container-element"><div class="challenge-split split-wrap"><div class="left-pane split"><div class="challenge-content"><div class="container fs-container"><div class="row"><div class="span-sm-11 hr_tour-problem-statement problem-statement have-external-links"><div class="content-text challenge-text mlB"><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}
</style><svg style="display: none;"><defs id="MathJax_SVG_glyphs"></defs></svg><p>We use the integers <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-1-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1.23ex" height="1.676ex" style="vertical-align: -0.338ex;" viewBox="0 -576.1 529.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="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></svg></span>, <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-2-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="0.998ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 429.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="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path></g></svg></span>, and <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-3-Frame"><svg xmlns: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> to create the following series:</p>
<p></p><div class="MathJax_SVG_Display" style="text-align: center;"><span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-4-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="69.56ex" height="3.176ex" style="vertical-align: -0.838ex;" viewBox="0 -1006.6 29949.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="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path><g transform="translate(389,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(1141,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(2141,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 transform="translate(500,412)"><path stroke-width="1" transform="scale(0.707)" 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></g><g transform="translate(3318,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(3819,0)"><path stroke-width="1" d="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path></g><g transform="translate(4248,0)"><path stroke-width="1" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path></g><g transform="translate(4638,0)"><path stroke-width="1" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path></g><g transform="translate(5083,0)"><path stroke-width="1" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path></g><g transform="translate(5472,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(6224,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(7225,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 transform="translate(500,412)"><path stroke-width="1" transform="scale(0.707)" 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></g><g transform="translate(8402,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(8902,0)"><path stroke-width="1" d="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path></g><g transform="translate(9554,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(10555,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 transform="translate(500,412)"><path stroke-width="1" transform="scale(0.707)" 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></g><g transform="translate(11731,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(12232,0)"><path stroke-width="1" d="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path></g><g transform="translate(12662,0)"><path stroke-width="1" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path></g><g transform="translate(13051,0)"><path stroke-width="1" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path></g><g transform="translate(13496,0)"><path stroke-width="1" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60ZM525 60Q525 84 542 102T585 120Q609 120 627 104T646 61Q646 36 629 18T586 0T543 17T525 60ZM972 60Q972 84 989 102T1032 120Q1056 120 1074 104T1093 61Q1093 36 1076 18T1033 0T990 17T972 60Z"></path></g><g transform="translate(14835,0)"><path stroke-width="1" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path></g><g transform="translate(15281,0)"><path stroke-width="1" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path></g><g transform="translate(15670,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(16422,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(17422,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 transform="translate(500,412)"><path stroke-width="1" transform="scale(0.707)" 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></g><g transform="translate(18599,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(19100,0)"><path stroke-width="1" d="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path></g><g transform="translate(19752,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(20752,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 transform="translate(500,412)"><path stroke-width="1" transform="scale(0.707)" 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></g><g transform="translate(21929,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(22430,0)"><path stroke-width="1" d="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path></g><g transform="translate(23081,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(24082,0)"><path stroke-width="1" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60ZM525 60Q525 84 542 102T585 120Q609 120 627 104T646 61Q646 36 629 18T586 0T543 17T525 60ZM972 60Q972 84 989 102T1032 120Q1056 120 1074 104T1093 61Q1093 36 1076 18T1033 0T990 17T972 60Z"></path></g><g transform="translate(25477,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(26478,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 transform="translate(500,412)"><path stroke-width="1" transform="scale(0.707)" 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 transform="translate(424,0)"><path stroke-width="1" transform="scale(0.707)" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path></g><g transform="translate(975,0)"><path stroke-width="1" transform="scale(0.707)" 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></g></g><g transform="translate(28629,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(29130,0)"><path stroke-width="1" d="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path></g><g transform="translate(29559,0)"><path stroke-width="1" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path></g></g></svg></span></div><p></p>
<p>You are given <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-5-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1.07ex" height="2.009ex" style="vertical-align: -0.671ex;" viewBox="0 -576.1 460.5 865.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="M33 157Q33 258 109 349T280 441Q340 441 372 389Q373 390 377 395T388 406T404 418Q438 442 450 442Q454 442 457 439T460 434Q460 425 391 149Q320 -135 320 -139Q320 -147 365 -148H390Q396 -156 396 -157T393 -175Q389 -188 383 -194H370Q339 -192 262 -192Q234 -192 211 -192T174 -192T157 -193Q143 -193 143 -185Q143 -182 145 -170Q149 -154 152 -151T172 -148Q220 -148 230 -141Q238 -136 258 -53T279 32Q279 33 272 29Q224 -10 172 -10Q117 -10 75 30T33 157ZM352 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></svg></span> queries in the form of <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-6-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1.23ex" height="1.676ex" style="vertical-align: -0.338ex;" viewBox="0 -576.1 529.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="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></svg></span>, <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-7-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="0.998ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 429.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="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path></g></svg></span>, and <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-8-Frame"><svg xmlns: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>. For each query, print the series corresponding to the given <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-9-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1.23ex" height="1.676ex" style="vertical-align: -0.338ex;" viewBox="0 -576.1 529.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="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></svg></span>, <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-10-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="0.998ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 429.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="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path></g></svg></span>, and <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-11-Frame"><svg xmlns: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> values as a single line of <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-12-Frame"><svg xmlns: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. </p></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}
</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 xmlns:xlink="http://www.w3.org/1999/xlink" width="1.07ex" height="2.009ex" style="vertical-align: -0.671ex;" viewBox="0 -576.1 460.5 865.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="M33 157Q33 258 109 349T280 441Q340 441 372 389Q373 390 377 395T388 406T404 418Q438 442 450 442Q454 442 457 439T460 434Q460 425 391 149Q320 -135 320 -139Q320 -147 365 -148H390Q396 -156 396 -157T393 -175Q389 -188 383 -194H370Q339 -192 262 -192Q234 -192 211 -192T174 -192T157 -193Q143 -193 143 -185Q143 -182 145 -170Q149 -154 152 -151T172 -148Q220 -148 230 -141Q238 -136 258 -53T279 32Q279 33 272 29Q224 -10 172 -10Q117 -10 75 30T33 157ZM352 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></svg></span>, denoting the number of queries. <br>
Each line <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-2-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="0.802ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 345.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="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></svg></span> of the <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-3-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1.07ex" height="2.009ex" style="vertical-align: -0.671ex;" viewBox="0 -576.1 460.5 865.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="M33 157Q33 258 109 349T280 441Q340 441 372 389Q373 390 377 395T388 406T404 418Q438 442 450 442Q454 442 457 439T460 434Q460 425 391 149Q320 -135 320 -139Q320 -147 365 -148H390Q396 -156 396 -157T393 -175Q389 -188 383 -194H370Q339 -192 262 -192Q234 -192 211 -192T174 -192T157 -193Q143 -193 143 -185Q143 -182 145 -170Q149 -154 152 -151T172 -148Q220 -148 230 -141Q238 -136 258 -53T279 32Q279 33 272 29Q224 -10 172 -10Q117 -10 75 30T33 157ZM352 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></svg></span> subsequent lines contains three space-separated integers describing the respective <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-4-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="2.029ex" height="2.009ex" style="vertical-align: -0.671ex;" viewBox="0 -576.1 873.8 865.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="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,-150)"><path stroke-width="1" transform="scale(0.707)" 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></svg></span>, <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-5-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1.797ex" height="2.509ex" style="vertical-align: -0.671ex;" viewBox="0 -791.3 773.8 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="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path><g transform="translate(429,-150)"><path stroke-width="1" transform="scale(0.707)" 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></svg></span>, and <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-6-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="2.194ex" height="2.009ex" style="vertical-align: -0.671ex;" viewBox="0 -576.1 944.8 865.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="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 transform="translate(600,-150)"><path stroke-width="1" transform="scale(0.707)" 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></svg></span> values for that query. </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}
</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 xmlns:xlink="http://www.w3.org/1999/xlink" width="11.916ex" height="2.509ex" style="vertical-align: -0.671ex;" viewBox="0 -791.3 5130.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="M33 157Q33 258 109 349T280 441Q340 441 372 389Q373 390 377 395T388 406T404 418Q438 442 450 442Q454 442 457 439T460 434Q460 425 391 149Q320 -135 320 -139Q320 -147 365 -148H390Q396 -156 396 -157T393 -175Q389 -188 383 -194H370Q339 -192 262 -192Q234 -192 211 -192T174 -192T157 -193Q143 -193 143 -185Q143 -182 145 -170Q149 -154 152 -151T172 -148Q220 -148 230 -141Q238 -136 258 -53T279 32Q279 33 272 29Q224 -10 172 -10Q117 -10 75 30T33 157ZM352 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 transform="translate(2572,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(3629,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><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-2-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="12.946ex" height="2.509ex" style="vertical-align: -0.671ex;" viewBox="0 -791.3 5573.8 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="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="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path></g><g transform="translate(2809,0)"><path stroke-width="1" d="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path></g><g transform="translate(3516,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(4572,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></g></svg></span></li>
<li><span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-3-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="11.079ex" height="2.343ex" style="vertical-align: -0.505ex;" viewBox="0 -791.3 4770.1 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="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="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></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}
</style><svg style="display: none;"><defs id="MathJax_SVG_glyphs"></defs></svg><p>For each query, print the corresponding series on a new line. Each series must be printed in order as a single line of <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-1-Frame"><svg xmlns: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.</p></div></div></div><div class="challenge_sample_input"><div class="msB challenge_sample_input_title"><p><strong>Sample Input</strong></p></div><div class="msB challenge_sample_input_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}
</style><svg style="display: none;"><defs id="MathJax_SVG_glyphs"></defs></svg><pre><code>2
0 2 10
5 3 5
</code></pre></div></div></div><div class="challenge_sample_output"><div class="msB challenge_sample_output_title"><p><strong>Sample Output</strong></p></div><div class="msB challenge_sample_output_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}
</style><svg style="display: none;"><defs id="MathJax_SVG_glyphs"></defs></svg><pre><code>2 6 14 30 62 126 254 510 1022 2046
8 14 26 50 98
</code></pre></div></div></div><div class="challenge_explanation"><div class="msB challenge_explanation_title"><p><strong>Explanation</strong></p></div><div class="msB challenge_explanation_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}
</style><svg style="display: none;"><defs id="MathJax_SVG_glyphs"></defs></svg><p>We have two queries:</p>
<ol>
<li><p>We use <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-1-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="5.491ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 2364.1 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(807,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(1863,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></g></svg></span>, <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-2-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="5.258ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 2264.1 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="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path><g transform="translate(707,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(1763,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></svg></span>, and <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-3-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="6.818ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 2935.6 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="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 transform="translate(878,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(1934,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></g></svg></span> to produce some series <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-4-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="14.911ex" height="2.009ex" style="vertical-align: -0.671ex;" viewBox="0 -576.1 6420 865.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="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,-150)"><path stroke-width="1" transform="scale(0.707)" 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><g transform="translate(923,0)"><path stroke-width="1" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path></g><g transform="translate(1368,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,-150)"><path stroke-width="1" transform="scale(0.707)" 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></g><g transform="translate(2291,0)"><path stroke-width="1" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path></g><g transform="translate(2737,0)"><path stroke-width="1" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60ZM525 60Q525 84 542 102T585 120Q609 120 627 104T646 61Q646 36 629 18T586 0T543 17T525 60ZM972 60Q972 84 989 102T1032 120Q1056 120 1074 104T1093 61Q1093 36 1076 18T1033 0T990 17T972 60Z"></path></g><g transform="translate(4076,0)"><path stroke-width="1" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path></g><g transform="translate(4521,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,-150)"><path stroke-width="1" transform="scale(0.707)" 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 transform="translate(424,0)"><path stroke-width="1" transform="scale(0.707)" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path></g><g transform="translate(975,0)"><path stroke-width="1" transform="scale(0.707)" 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></g></g></g></svg></span>:</p>
<ul><li><span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-5-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="17.511ex" height="2.509ex" style="vertical-align: -0.671ex;" viewBox="0 -791.3 7539.4 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="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,-150)"><path stroke-width="1" transform="scale(0.707)" 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><g transform="translate(1201,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(2257,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><g transform="translate(2980,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(3980,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><g transform="translate(4703,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(5204,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(5982,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(7038,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></svg></span></li>
<li><span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-6-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="24.355ex" height="2.509ex" style="vertical-align: -0.671ex;" viewBox="0 -791.3 10486.3 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="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,-150)"><path stroke-width="1" transform="scale(0.707)" 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><g transform="translate(1201,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(2257,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><g transform="translate(2980,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(3980,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><g transform="translate(4703,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(5204,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(5927,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(6927,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(7650,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(8151,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(8929,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(9985,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></g></svg></span></li>
<li><span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-7-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="32.362ex" height="2.509ex" style="vertical-align: -0.671ex;" viewBox="0 -791.3 13933.7 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="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,-150)"><path stroke-width="1" transform="scale(0.707)" 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(1201,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(2257,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><g transform="translate(2980,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(3980,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><g transform="translate(4703,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(5204,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(5927,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(6927,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(7650,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(8151,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(8873,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(9874,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><g transform="translate(10597,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(11098,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(11876,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(12932,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="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" transform="translate(500,0)"></path></g></g></svg></span> </li></ul>
<p>... and so on.</p>
<p>Once we hit <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-8-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="6.818ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 2935.6 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="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 transform="translate(878,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(1934,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></g></svg></span>, we print the first ten terms as a single line of space-separated integers.</p></li>
<li><p>We use <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-9-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="5.491ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 2364.1 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(807,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(1863,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></g></svg></span>, <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-10-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="5.258ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 2264.1 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="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path><g transform="translate(707,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(1763,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></g></svg></span>, and <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-11-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="5.656ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 2435.1 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="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 transform="translate(878,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(1934,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></g></svg></span> to produce some series <span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-12-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="14.911ex" height="2.009ex" style="vertical-align: -0.671ex;" viewBox="0 -576.1 6420 865.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="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,-150)"><path stroke-width="1" transform="scale(0.707)" 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><g transform="translate(923,0)"><path stroke-width="1" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path></g><g transform="translate(1368,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,-150)"><path stroke-width="1" transform="scale(0.707)" 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></g><g transform="translate(2291,0)"><path stroke-width="1" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path></g><g transform="translate(2737,0)"><path stroke-width="1" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60ZM525 60Q525 84 542 102T585 120Q609 120 627 104T646 61Q646 36 629 18T586 0T543 17T525 60ZM972 60Q972 84 989 102T1032 120Q1056 120 1074 104T1093 61Q1093 36 1076 18T1033 0T990 17T972 60Z"></path></g><g transform="translate(4076,0)"><path stroke-width="1" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path></g><g transform="translate(4521,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,-150)"><path stroke-width="1" transform="scale(0.707)" 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 transform="translate(424,0)"><path stroke-width="1" transform="scale(0.707)" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path></g><g transform="translate(975,0)"><path stroke-width="1" transform="scale(0.707)" 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></g></g></g></svg></span>:</p>
<ul><li><span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-13-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="17.511ex" height="2.509ex" style="vertical-align: -0.671ex;" viewBox="0 -791.3 7539.4 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="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,-150)"><path stroke-width="1" transform="scale(0.707)" 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><g transform="translate(1201,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(2257,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><g transform="translate(2980,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(3980,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><g transform="translate(4703,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(5204,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><g transform="translate(5982,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(7038,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></g></g></svg></span></li>
<li><span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-14-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="25.518ex" height="2.509ex" style="vertical-align: -0.671ex;" viewBox="0 -791.3 10986.8 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="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,-150)"><path stroke-width="1" transform="scale(0.707)" 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><g transform="translate(1201,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(2257,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><g transform="translate(2980,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(3980,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><g transform="translate(4703,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(5204,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><g transform="translate(5927,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(6927,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(7650,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(8151,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><g transform="translate(8929,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(9985,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="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" transform="translate(500,0)"></path></g></g></svg></span></li>
<li><span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-15-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="32.362ex" height="2.509ex" style="vertical-align: -0.671ex;" viewBox="0 -791.3 13933.7 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="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,-150)"><path stroke-width="1" transform="scale(0.707)" 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(1201,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(2257,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><g transform="translate(2980,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(3980,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><g transform="translate(4703,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(5204,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><g transform="translate(5927,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(6927,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(7650,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(8151,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><g transform="translate(8873,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(9874,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><g transform="translate(10597,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(11098,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><g transform="translate(11876,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(12932,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="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" transform="translate(500,0)"></path></g></g></svg></span></li>
<li><span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-16-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="39.207ex" height="2.509ex" style="vertical-align: -0.671ex;" viewBox="0 -791.3 16880.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="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,-150)"><path stroke-width="1" transform="scale(0.707)" 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><g transform="translate(1201,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(2257,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><g transform="translate(2980,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(3980,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><g transform="translate(4703,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(5204,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><g transform="translate(5927,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(6927,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(7650,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(8151,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><g transform="translate(8873,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(9874,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><g transform="translate(10597,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(11098,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><g transform="translate(11820,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(12821,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></g><g transform="translate(13544,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(14045,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><g transform="translate(14823,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(15879,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></g></svg></span></li>
<li><span style="font-size: 100%; display: inline-block;" class="MathJax_SVG" id="MathJax-Element-17-Frame"><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="47.214ex" height="2.509ex" style="vertical-align: -0.671ex;" viewBox="0 -791.3 20328 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="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,-150)"><path stroke-width="1" transform="scale(0.707)" 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><g transform="translate(1201,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(2257,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><g transform="translate(2980,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(3980,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><g transform="translate(4703,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(5204,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><g transform="translate(5927,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(6927,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(7650,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(8151,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><g transform="translate(8873,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(9874,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><g transform="translate(10597,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(11098,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><g transform="translate(11820,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(12821,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></g><g transform="translate(13544,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(14045,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><g transform="translate(14767,0)"><path stroke-width="1" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path></g><g transform="translate(15768,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="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" transform="translate(500,0)"></path></g><g transform="translate(16991,0)"><path stroke-width="1" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path></g><g transform="translate(17492,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><g transform="translate(18270,0)"><path stroke-width="1" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path></g><g transform="translate(19326,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="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" transform="translate(500,0)"></path></g></g></svg></span> </li></ul>
<p>We then print each element of our series as a single line of space-separated values.</p></li>
</ol></div></div></div></div></div><aside class="span-sm-4 pull-right fullscreen-hide challenge-sidebar"><div class="challenge-sidebar-container"><div class="social-share-wrap-2"><div class="clearfix"><div class="social-share-view-wrap social-buttons mjT pull-left"><a class="social-btn cursor facebook-share-btn txt-white"><i class="icon-facebook"></i></a><a class="social-btn cursor twitter-share-btn txt-white txt-white"><i class="icon-twitter"></i></a><a class="social-btn cursor linkedin-share-btn txt-white"><i class="icon-linkedin"></i></a></div></div></div><div class="sidebar_problem_difficulty"><div><p class="bold zeta">Submissions:</p><a class="btn btn-text backbone" data-analytics="ChallengeViewHackerCount" data-attr1="java-loops" href="https://www.hackerrank.com/challenges/java-loops/leaderboard">90431</a></div><div><p class="bold zeta">Max Score:</p><p class="sidebar_att">10</p></div><div><p class="bold zeta">Difficulty: </p><p class="sidebar_att">Easy</p></div></div><div class="challenge-rating rating"><p class="bold zeta">Rate This Challenge: </p><div class="rating"><i class="icon cursor icon-star-empty" data-analytics="RatedChallenge" data-attr7="1"></i><i class="icon cursor icon-star-empty" data-analytics="RatedChallenge" data-attr7="2"></i><i class="icon cursor icon-star-empty" data-analytics="RatedChallenge" data-attr7="3"></i><i class="icon cursor icon-star-empty" data-analytics="RatedChallenge" data-attr7="4"></i><i class="icon cursor icon-star-empty" data-analytics="RatedChallenge" data-attr7="5"></i></div></div><div><div id="sidebar-more-options" class="hide"><div class="mlB mlT"><a class="challenge-sidebar-anchor pointer link-gray" target="_blank" id="pdf-link" data-analytics="ChallengeViewSidebarPDF" data-attr1="java-loops" href="https://www.hackerrank.com/rest/contests/master/challenges/java-loops/download_pdf?language=Englishdownload_pdf?language=English"><i class="icon-download"></i><!-- react-text: 2129 -->Download problem statement<!-- /react-text --></a></div><div class="mlB"><a class="challenge-sidebar-anchor pointer link-gray" target="_blank" id="test-cases-link" data-analytics="ChallengeViewSidebarTestCases" data-attr1="java-loops" href="https://www.hackerrank.com/rest/contests/master/challenges/java-loops/download_pdf?language=English/download_testcases"><i class="icon-download"></i><!-- react-text: 2133 -->Download sample test cases<!-- /react-text --></a></div><div class="fullscreen-hide"><a class="challenge-sidebar-anchor link link-gray" data-analytics="ChallengeViewSuggestEdit" data-attr1="java-loops"><div><i class="icon-edit"></i></div><!-- react-text: 2138 -->Suggest Edits<!-- /react-text --></a></div><div class="language-selector pmT"><div class="psT hide small color-alt-grey" id="preference-msg"><a class="language-preference btn btn-small msB">Set as default</a><br><p class="mjB">You can always change back later.</p></div></div></div><div class="msB"><a id="sidebar-more-button" class="challenge-sidebar-anchor pointer">More</a></div></div></div></aside></div></div></div></div><div class="right-pane split"><div class="challenge-request"><div class="challenge-input codeeditor-wrapper container fs-container mlB"><div class="codeeditor-view"><div id="codeshell-wrapper">
<div class="clearfix grey-header fixed-hand0 cap plL plR psT psB" style="position: relative;">
<div class="msT pull-left"><em id="status-text"></em></div>
<div class="fork-dialog cs-dialog hide">
<div class="header">Fork <span class="version-seq"></span>
<i data-analytics="CodeShellForkCode" data-attr1="Cancel" class="icon--single icon-cancel-small close-fork-dialog cursor-pointer pull-right psR"></i>
</div>
<div class="body">
<p class="grey-msg">past buffers are marked read only, you wont be able to edit your current buffer without forking it</p>
<div class="m msT">
<button data-analytics="CodeShellForkCode" data-attr1="ForkCurrentBuffer" class="btn btn-primary fork-version" data-action="fork">Fork <span class="version-seq"></span></button>
<button data-analytics="CodeShellForkCode" data-attr1="CreateNewBuffer" class="btn btn-primary fork-version" data-action="orphan">Create New Buffer</button>
</div>
</div>
</div>
<div class="fork-limit-reached-dialog cs-dialog hide">
<div class="header">Fork Limit Reached</div>
<div class="body">
<p class="grey-msg">You can’t create more than 20 buffers, please delete one of your old bufferes to create a new buffer.</p>
<div class="m msT">
<button class="btn close-fork-limit-reached-dialog">OK</button>
</div>
</div>
</div>
<div class="delete-version-dialog cs-dialog hide">
<div class="header">Delete <span class="version-seq"></span></div>
<div class="body">
<p class="grey-msg">Are you sure you want to delete <strong><span class="version-seq"></span></strong>? This action can’t be undone.</p>
<div class="m msT">
<button class="btn delete-version-button">Yes</button>
</div>
</div>
</div>
<div class="pull-left no-select">
<p style="padding-top: 8px;">
<strong class="version-name">Current Buffer</strong>
<span class="gray-text version-meta">(saved locally, editable)</span>
<a data-analytics="CodeShellShowForkOptions" class="fork-this-version"><i class="icon--grey cursor icon-flow-branch"></i></a>
<a data-analytics="CodeShellShowVersionTimeline" class="show-version-timeline"><i class="icon--grey cursor icon-back-in-time"></i></a>
<a class="delete-active-version hide"><i class="icon--grey cursor icon-trash"></i></a>
</p>
</div>
<div class="pull-right">
<div class="inline large lines inverse pull-right msT msL">
<a class="restorefullscreen force-hide active-link no-select">
<i class="icon-resize-small-alt icon--grey no-select"></i></a>
<a class="fullscreen active-link no-select" data-analytics="Switch to fullscreen"><i class="icon-resize-full-alt icon--grey no-select"></i></a>
<a class="hide" style="display:none;"></a>
<div style="position:relative; margin-left: 0px;">
<a class="cursor no-select" data-analytics="CodeShellShowPreferences" id="show-preferences"><i class="icon-cog icon--grey no-select"></i></a>
<div id="pref-pane" style="position: absolute;right: -0.5em;top: 2em;z-index: 9;background: #fff;border: 1px solid #ddd;border-radius: 5px;padding: 10px; width: 20em; display: none;">
<div style="position: absolute;width: 0;right: 0.8em;height: 0;border-left: 7px solid transparent;border-right: 7px solid transparent;border-bottom: 7px solid #ddd;top: -0.4em;"></div>
<div class="formgroup horizontal">
<label class="span5">Editor Mode</label>
<div class="inline">
<div class="btn-group no-select">
<a data-analytics="CodeShellEditorMode" data-attr1="Emacs" class="cursor emacs btn btn-small btn-white editor-mode-button no-select" data-editor="emacs">Emacs</a>
<a data-analytics="CodeShellEditorMode" data-attr1="Normal" class="cursor default btn btn-small btn-white editor-mode-button no-select btn-primary" data-editor="default">Normal</a>
<a data-analytics="CodeShellEditorMode" data-attr1="Vim" class="cursor vim btn btn-small btn-white editor-mode-button no-select" data-editor="vim">Vim</a>
</div>
</div>
</div>
<div class="formgroup horizontal">
<label class="span5">Editor Theme</label>
<div class="inline">
<div class="btn-group no-select">
<a data-analytics="CodeShellEditorTheme" data-attr1="Light" class="cursor light btn btn-small btn-white editor-theme-button no-select btn-primary" data-editor="light">Light</a>
<a data-analytics="CodeShellEditorTheme" data-attr1="Dark" class="cursor dark btn btn-small btn-white editor-theme-button no-select" data-editor="dark">Dark</a>
</div>
</div>
</div>
<div class="formgroup horizontal">
<label class="span5">Tab Spaces</label>
<div class="inline">
<div class="btn-group no-select">
<a data-analytics="CodeShellEditorSpace" data-attr1="2" class="cursor 2space btn btn-small btn-white editor-tabspace-button no-select" data-editor="2">2 spaces</a>
<a data-analytics="CodeShellEditorSpace" data-attr1="4" class="cursor 4space btn btn-small btn-white editor-tabspace-button no-select btn-primary" data-editor="4">4 spaces</a>
<a data-analytics="CodeShellEditorSpace" data-attr1="8" class="cursor 8space btn btn-small btn-white editor-tabspace-button no-select" data-editor="8">8 spaces</a>
</div>
</div>
</div>
<div class="formgroup horizontal">
<label class="span5">Intellisense</label>
<div class="inline">
<div class="btn-group no-select">
<a data-analytics="CodeShellAutoComplete" data-attr1="Enable" class="cursor emacs btn btn-small btn-white editor-autocomplete-button no-select btn-primary" data-editor="true">Enable</a>
<a data-analytics="CodeShellAutoComplete" data-attr1="Disable" class="cursor default btn btn-small btn-white editor-autocomplete-button no-select" data-editor="false">Disable</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pull-right">
<div class="dummy-lang-container hide"></div>
<div class="select2-container" id="s2id_select-lang"><a href="javascript:void(0)" onclick="return false;" class="select2-choice" tabindex="-1"> <span>Java 8</span><abbr class="select2-search-choice-close"></abbr> <div><b></b></div></a><input class="select2-focusser select2-offscreen" type="text" id="s2id_autogen2"></div><input type="hidden" id="select-lang" tabindex="-1" class="select2-offscreen" value="java8">
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="version-timeline">
<div class="version-timeline-inner">
<div class="cross-line"></div>
<div class="start-slab pull-left"></div>
<div class="current-version-ball green-bkg pull-left cursor"></div>
</div>
</div>
<div class="hr_tour-code-solution movable-hand flex-row" style="display: flex;">
<div class="code-checker">
<div id="notification-message" class="clearfix grey-header cap hidden "> </div>
<div class="code-editors" style="max-height: 580px;">
<div class="loading-mode" style="display: none;">Loading Editor... </div>
<div class="code-body" style="display: block;">
<textarea id="codeview" style="width: 100%; display: none;"></textarea><div class="CodeMirror cm-s-default CodeMirror-wrap CodeMirror-focused"><div style="overflow: hidden; position: relative; width: 3px; height: 0px; top: 345px; left: 344px;"><textarea autocorrect="off" autocapitalize="off" spellcheck="false" tabindex="0" style="position: absolute; bottom: -1em; padding: 0px; width: 1000px; height: 1em; outline: none;"></textarea></div><div class="CodeMirror-vscrollbar" cm-not-content="true" style="bottom: 0px;"><div style="min-width: 1px; height: 0px;"></div></div><div class="CodeMirror-hscrollbar" cm-not-content="true"><div style="height: 100%; min-height: 1px; width: 0px;"></div></div><div class="CodeMirror-scrollbar-filler" cm-not-content="true"></div><div class="CodeMirror-gutter-filler" cm-not-content="true"></div><div class="CodeMirror-scroll" tabindex="-1"><div class="CodeMirror-sizer" style="margin-left: 39px; margin-bottom: -17px; border-right-width: 13px; min-height: 468px; padding-right: 0px; padding-bottom: 0px;"><div style="position: relative; top: 0px;"><div class="CodeMirror-lines" role="presentation"><div role="presentation" style="position: relative; outline: none;"><div class="CodeMirror-measure"><pre>x</pre></div><div class="CodeMirror-measure"></div><div style="position: relative; z-index: 1;"></div><div class="CodeMirror-cursors" style="visibility: hidden;"><div class="CodeMirror-cursor" style="left: 304px; top: 340px; height: 20px;"> </div></div><div class="CodeMirror-code" role="presentation" style=""><div class="" style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">1</div><div class="CodeMirror-gutter-elt" style="left: 29px; width: 9px;"><div class="CodeMirror-foldgutter-open CodeMirror-guttermarker-subtle"></div></div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"><span class="cm-keyword">import</span> <span class="cm-variable">java</span>.<span class="cm-variable">util</span>.<span class="cm-operator">*</span>;</span></pre></div><div class="" style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">2</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"><span class="cm-keyword">import</span> <span class="cm-variable">java</span>.<span class="cm-variable">io</span>.<span class="cm-operator">*</span>;</span></pre></div><div class="" style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">3</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"><span cm-text=""></span></span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">4</div><div class="CodeMirror-gutter-elt" style="left: 29px; width: 9px;"><div class="CodeMirror-foldgutter-open CodeMirror-guttermarker-subtle"></div></div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"><span class="cm-keyword">class</span> <span class="cm-def">Solution</span>{</span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">5</div><div class="CodeMirror-gutter-elt" style="left: 29px; width: 9px;"><div class="CodeMirror-foldgutter-open CodeMirror-guttermarker-subtle"></div></div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> <span class="cm-keyword">public</span> <span class="cm-keyword">static</span> <span class="cm-variable-3">void</span> <span class="cm-variable">main</span>(<span class="cm-variable-3">String</span> []<span class="cm-variable">argh</span>){</span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">6</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> <span class="cm-variable">Scanner</span> <span class="cm-variable">in</span> <span class="cm-operator">=</span> <span class="cm-keyword">new</span> <span class="cm-variable">Scanner</span>(<span class="cm-variable">System</span>.<span class="cm-variable">in</span>);</span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">7</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> <span class="cm-variable-3">int</span> <span class="cm-variable">t</span><span class="cm-operator">=</span><span class="cm-variable">in</span>.<span class="cm-variable">nextInt</span>();</span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">8</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> </span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">9</div><div class="CodeMirror-gutter-elt" style="left: 29px; width: 9px;"><div class="CodeMirror-foldgutter-open CodeMirror-guttermarker-subtle"></div></div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> <span class="cm-keyword">for</span>(<span class="cm-variable-3">int</span> <span class="cm-variable">i</span><span class="cm-operator">=</span><span class="cm-number">0</span>;<span class="cm-variable">i</span><span class="cm-operator"><</span><span class="cm-variable">t</span>;<span class="cm-variable">i</span><span class="cm-operator">++</span>){</span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">10</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> <span class="cm-variable-3">int</span> <span class="cm-variable">a</span> <span class="cm-operator">=</span> <span class="cm-variable">in</span>.<span class="cm-variable">nextInt</span>();</span></pre></div><div class="" style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">11</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> <span class="cm-variable-3">int</span> <span class="cm-variable">b</span> <span class="cm-operator">=</span> <span class="cm-variable">in</span>.<span class="cm-variable">nextInt</span>();</span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">12</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> <span class="cm-variable-3">int</span> <span class="cm-variable">n</span> <span class="cm-operator">=</span> <span class="cm-variable">in</span>.<span class="cm-variable">nextInt</span>();</span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">13</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> </span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">14</div><div class="CodeMirror-gutter-elt" style="left: 29px; width: 9px;"><div class="CodeMirror-foldgutter-open CodeMirror-guttermarker-subtle"></div></div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> <span class="cm-keyword">for</span>(<span class="cm-variable-3">int</span> <span class="cm-variable">j</span> <span class="cm-operator">=</span> <span class="cm-number">0</span>; <span class="cm-variable">j</span> <span class="cm-operator"><</span> <span class="cm-variable">n</span>; <span class="cm-variable">j</span><span class="cm-operator">++</span>){</span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">15</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> <span class="cm-variable">a</span> <span class="cm-operator">=</span> <span class="cm-variable">a</span> <span class="cm-operator">+</span> (<span class="cm-variable-3">int</span>)<span class="cm-variable">Math</span>.<span class="cm-variable">pow</span>(<span class="cm-number">2</span>,<span class="cm-variable">j</span>)<span class="cm-operator">*</span><span class="cm-variable">b</span>;</span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">16</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> <span class="cm-variable">System</span>.<span class="cm-variable">out</span>.<span class="cm-variable">print</span>(<span class="cm-variable">a</span> <span class="cm-operator">+</span> <span class="cm-string">" "</span>);</span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">17</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> }</span></pre></div><div class="CodeMirror-activeline" style="position: relative;"><div class="CodeMirror-activeline-background CodeMirror-linebackground"></div><div class="CodeMirror-gutter-background CodeMirror-activeline-gutter" style="left: -39px; width: 39px;"></div><div class="CodeMirror-gutter-wrapper CodeMirror-activeline-gutter" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">18</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> <span class="cm-variable">System</span>.<span class="cm-variable">out</span>.<span class="cm-variable">println</span>(<span class="cm-string">""</span>);</span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">19</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> }</span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">20</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> <span class="cm-variable">in</span>.<span class="cm-variable">close</span>();</span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">21</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"><span cm-text=""></span></span></pre></div><div style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">22</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;"> }</span></pre></div><div class="" style="position: relative;"><div class="CodeMirror-gutter-wrapper" style="left: -39px;"><div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">23</div></div><pre class=" CodeMirror-line " role="presentation"><span role="presentation" style="padding-right: 0.1px;">}</span></pre></div></div></div></div></div></div><div style="position: absolute; height: 13px; width: 1px; border-bottom: 0px solid transparent; top: 468px;"></div><div class="CodeMirror-gutters" style="height: 481px; left: 0px;"><div class="CodeMirror-gutter CodeMirror-linenumbers" style="width: 29px;"></div><div class="CodeMirror-gutter CodeMirror-foldgutter"></div></div></div></div>
</div>
<div class="clearfix"></div>
</div>
<div id="codeeditor-statusbar" class="clearfix psA codeeditor_statusbar">
<span id="statusbar-mode"></span>
<div class="pull-right">
<span id="statusbar-line">Line: 18</span>
<span id="statusbar-col">Col: 36</span>
<span id="statusbar-count"></span>
</div>
</div>
</div>
</div><div class="clearfix pmR pmL pmB plT fixed-hand1 codeshell-footer">
<div class="pull-right">
<button class="btn bb-compile msR " data-analytics="Compile and Test">Run Code</button>
<button class="btn btn-primary bb-submit ans-submit" data-analytics="Submit Code">Submit Code</button>
</div>
<div class="pull-left inline">
<button class="btn btn-text upload_file mlR" data-analytics="Upload File" type="button"><i class="icon-upload"></i>Upload Code as File</button>
<div class="mmT">
<label for="customtestcase"><div class="custom-checkbox-v3"><input type="checkbox" id="customtestcase"><span></span></div><span class="lmT msL">Test against custom input</span></label>
<textarea rows="5" id="custominput" style="display:none"></textarea>
</div>
</div>
</div></div><div id="submission-message"></div><!-- react-empty: 2154 --><!-- react-empty: 2155 --><!-- react-empty: 2156 --><!-- react-empty: 2157 --><div class="__react_component_tooltip place-top type-dark " data-id="tooltip"></div></div></div></div><div class="challenge-response container fs-container"><div class="output-area-wrap"><div class="output-area mlT psT" id="output-area"><div class="submission-status"><div id="submission-stats-content" class="submission-stats2-content"><div class="light-wrap plA mlT clearfix challenge-submisson"><div class="row"><span class="status-message block-center text-center bold large psR color-green">Congrats, you solved this challenge!</span><div class="block-center text-center msT"><!-- react-text: 2582 -->Challenge your friends:<!-- /react-text --><div class="social-share-view-wrap social-buttons inline-block msL text-center"><a class="social-btn cursor facebook-share-btn txt-white"><i class="icon-facebook"></i></a><a class="social-btn cursor twitter-share-btn txt-white txt-white"><i class="icon-twitter"></i></a><a class="social-btn cursor linkedin-share-btn txt-white"><i class="icon-linkedin"></i></a></div></div></div><div><div class="submission_testcases-results ab-testcase clearfix"><div class="testcase-card-wrap"><div class="testcase-card"><div class="testcase-icon-wrap"><i class="testcase-icon icon-ok success"></i></div><span class="testcase-num"><!-- react-text: 2514 -->Test Case #<!-- /react-text --><!-- react-text: 2515 -->0<!-- /react-text --></span><div class="testcase-message-wrap align-center m"><div class="testcase-message"><div class="type">Sample</div><div class="message-text">Success</div><a class="js-download-test-case download cursor" data-analytics="TestCase Purchase"><!-- react-text: 2521 -->Download<!-- /react-text --><i class="pmL icon-download"></i></a></div></div></div></div><div class="testcase-card-wrap"><div class="testcase-card"><div class="testcase-icon-wrap"><i class="testcase-icon icon-ok success"></i></div><span class="testcase-num"><!-- react-text: 2528 -->Test Case #<!-- /react-text --><!-- react-text: 2529 -->1<!-- /react-text --></span><div class="testcase-message-wrap align-center m"><div class="testcase-message"><div class="type">Sample</div><div class="message-text">Success</div><a class="js-download-test-case download cursor" data-analytics="TestCase Purchase"><!-- react-text: 2535 -->Download<!-- /react-text --><i class="pmL icon-download"></i></a></div></div></div></div><div class="testcase-card-wrap"><div class="testcase-card"><div class="testcase-icon-wrap"><i class="testcase-icon icon-ok success"></i></div><span class="testcase-num"><!-- react-text: 2542 -->Test Case #<!-- /react-text --><!-- react-text: 2543 -->2<!-- /react-text --></span><div class="testcase-message-wrap align-center m"><div class="testcase-message"><div class="message-text">Success</div><a class="js-download-test-case download cursor" data-analytics="TestCase Purchase"><!-- react-text: 2548 -->Download<!-- /react-text --><i class="pmL icon-download"></i></a></div></div></div></div><div class="testcase-card-wrap"><div class="testcase-card"><div class="testcase-icon-wrap"><i class="testcase-icon icon-ok success"></i></div><span class="testcase-num"><!-- react-text: 2555 -->Test Case #<!-- /react-text --><!-- react-text: 2556 -->3<!-- /react-text --></span><div class="testcase-message-wrap align-center m"><div class="testcase-message"><div class="message-text">Success</div><a class="js-download-test-case download cursor" data-analytics="TestCase Purchase"><!-- react-text: 2561 -->Download<!-- /react-text --><i class="pmL icon-download"></i></a></div></div></div></div><div class="testcase-card-wrap"><div class="testcase-card"><div class="testcase-icon-wrap"><i class="testcase-icon icon-ok success"></i></div><span class="testcase-num"><!-- react-text: 2568 -->Test Case #<!-- /react-text --><!-- react-text: 2569 -->4<!-- /react-text --></span><div class="testcase-message-wrap align-center m"><div class="testcase-message"><div class="message-text">Success</div><a class="js-download-test-case download cursor" data-analytics="TestCase Purchase"><!-- react-text: 2574 -->Download<!-- /react-text --><i class="pmL icon-download"></i></a></div></div></div></div></div><div class="stats-card-footer"><div><a class="mlL btn btn-large btn-primary pull-right backbone js-next-challenge" href="https://www.hackerrank.com/challenges/java-datatypes?h_r=next-challenge&h_v=zen">Next Challenge</a><span class="pull-right pdT small bold earned-score">You've earned 10.00 points!</span></div></div></div></div></div><!-- react-empty: 2577 --></div></div></div></div></div></div></div></div></section></div><footer class="page_footer"><div><div class="text-center"><!-- react-text: 2163 -->Join us on IRC at <!-- /react-text --><a target="_blank" class="page_footer-IRC" href="http://webchat.freenode.net/?channels=hackerrank" data-analytics="FooterLinkIRC">#hackerrank</a><!-- react-text: 2165 --> on freenode for hugs or bugs.<!-- /react-text --><br><p style="font-size: 14px; margin-top: 5px; margin-bottom: 0px;"><span class="internal-links"><a target="_blank" href="https://www.hackerrank.com/calendar" class="calendar" data-analytics="FooterLinkCalendar">Contest Calendar</a><span> | </span><a target="_blank" href="https://blog.hackerrank.com/" class="blog" data-analytics="FooterLinkBlog">Blog</a><span> | </span><a target="_blank" href="https://www.hackerrank.com/scoring" class="scoring" data-analytics="FooterLinkScoring">Scoring</a><span> | </span><a target="_blank" href="https://www.hackerrank.com/environment" class="environment" data-analytics="FooterLinkEnvironment">Environment</a><span> | </span><a target="_blank" href="https://www.hackerrank.com/faq" class="faq" data-analytics="FooterLinkFAQ">FAQ</a><span> | </span></span><a target="_blank" href="https://www.hackerrank.com/aboutus" data-analytics="FooterLinkAboutUs">About Us</a><span> | </span><a target="_blank" href="https://www.hackerrank.com/support" data-analytics="FooterLinkSupport">Support</a><span> | </span><a target="_blank" href="https://www.hackerrank.com/careers" data-analytics="FooterLinkCareers">Careers</a><span> | </span><a target="_blank" href="https://www.hackerrank.com/terms-of-service" data-analytics="FooterLinkTermsOfService">Terms Of Service</a><span> | </span><a target="_blank" href="https://www.hackerrank.com/privacy" data-analytics="FooterLinkPrivacyPolicy">Privacy Policy</a><span> | </span><a href="https://www.hackerrank.com/support/feature" target="_blank" class="featureRequestButton" data-analytics="FooterLinkFeatureRequest">Request a Feature</a></p></div></div></footer><!-- react-empty: 2190 --></div></div></div></div><!--Required to handle event bubbling of click in ios safari -->
<script>
/*** webpack menifest data ***/
var webpackChunkManifest = {"0":"hackerrank_r_community-5aef6f073801fb78a894.js","1":"hackerrank_r_work-dab61ca913ca986c3887.js","2":"hackerrank_r_uikit-46fc158c7e3d45498155.js","3":"hackerrank_r_app-c47dfd0cef5902409c3b.js","4":"hackerrank_r_jobs-721e58241291f1946e64.js","5":"hackerrank_r_charts-708405324d3ee59ed01d.js","6":"hackerrank_r_calendar-6cb0815f7f4588037c2f.js","7":"hackerrank_r_testsettings-0a7a6e214a3c79f93777.js","8":"hackerrank_r_testinsights-e0b325473b9e54764d87.js","9":"hackerrank_r_testquestions-9cfc64d98ee9d9a26e15.js","10":"hackerrank_r_testinvite-cea24d999da9672820e4.js","11":"hackerrank_r_challenge-6b34b083da29b413f328.js","12":"hackerrank_r_profile-417d6d77714c1a8dde48.js","13":"hackerrank_r_singletest-7422595c8cafe7b5f7af.js","14":"hackerrank_r_keyboardjs-24d025dbc9a593ec33bb.js","15":"hackerrank_r_codeshell_lib-9a8f7f0e6c2f1e16494e.js"};
var webpackManifest = {"hackerrank_r_app.css":"hackerrank_r_app-eeb90c8aef.css","hackerrank_r_community.css":"hackerrank_r_community-fdeea7d00d.css","hackerrank_r_uikit.css":"hackerrank_r_uikit-99776bcc5c.css","hackerrank_r_work.css":"hackerrank_r_work-96b43ebb28.css","hackerrank_r_app.js":"hackerrank_r_app-c47dfd0cef5902409c3b.js","hackerrank_r_calendar.js":"hackerrank_r_calendar-6cb0815f7f4588037c2f.js","hackerrank_r_challenge.js":"hackerrank_r_challenge-6b34b083da29b413f328.js","hackerrank_r_charts.js":"hackerrank_r_charts-708405324d3ee59ed01d.js","hackerrank_r_codeshell_lib.js":"hackerrank_r_codeshell_lib-9a8f7f0e6c2f1e16494e.js","hackerrank_r_common.js":"hackerrank_r_common-e437e2ef7b1f92879a03.js","hackerrank_r_community.js":"hackerrank_r_community-5aef6f073801fb78a894.js","hackerrank_r_jobs.js":"hackerrank_r_jobs-721e58241291f1946e64.js","hackerrank_r_keyboardjs.js":"hackerrank_r_keyboardjs-24d025dbc9a593ec33bb.js","hackerrank_r_profile.js":"hackerrank_r_profile-417d6d77714c1a8dde48.js","hackerrank_r_singletest.js":"hackerrank_r_singletest-7422595c8cafe7b5f7af.js","hackerrank_r_testinsights.js":"hackerrank_r_testinsights-e0b325473b9e54764d87.js","hackerrank_r_testinvite.js":"hackerrank_r_testinvite-cea24d999da9672820e4.js","hackerrank_r_testquestions.js":"hackerrank_r_testquestions-9cfc64d98ee9d9a26e15.js","hackerrank_r_testsettings.js":"hackerrank_r_testsettings-0a7a6e214a3c79f93777.js","hackerrank_r_uikit.js":"hackerrank_r_uikit-46fc158c7e3d45498155.js","hackerrank_r_work.js":"hackerrank_r_work-dab61ca913ca986c3887.js","hackerrank_r_vendor.js":"hackerrank_r_vendor-ccad22f116.js"};
</script>
<script>
//HR namespace
var HR = {};
HR.development = false;
HR.assetPath = 'https://hrcdn.net/hackerrank/assets/';
HR.pageLoadTime = Date.now();
HR.productNamespace = 'hackerrank';
HR.production = true;
</script>
<script src="./HackerRank_files/hackerrank_r_vendor-ccad22f116.js.download"></script>
<script type="application/json" id="initialData">
%7B%22community%22%3A%7B%22globalMessage%22%3A%22%22%2C%22domains%22%3A%7B%22list%22%3A%5B%7B%22id%22%3A24%2C%22name%22%3A%22Tutorials%22%2C%22slug%22%3A%22tutorials%22%2C%22chapters%22%3A%5B%7B%22id%22%3A146%2C%22name%22%3A%2230%20Days%20of%20Code%22%2C%22slug%22%3A%2230-days-of-code%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A149%2C%22name%22%3A%22Cracking%20the%20Coding%20Interview%22%2C%22slug%22%3A%22cracking-the-coding-interview%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A147%2C%22name%22%3A%2210%20Days%20of%20Statistics%22%2C%22slug%22%3A%2210-days-of-statistics%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A148%2C%22name%22%3A%2210%20Days%20of%20Javascript%22%2C%22slug%22%3A%2210-days-of-javascript%22%2C%22hidden%22%3Afalse%7D%5D%7D%2C%7B%22id%22%3A3%2C%22name%22%3A%22Algorithms%22%2C%22slug%22%3A%22algorithms%22%2C%22chapters%22%3A%5B%7B%22id%22%3A43%2C%22name%22%3A%22Warmup%22%2C%22slug%22%3A%22warmup%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A108%2C%22name%22%3A%22Implementation%22%2C%22slug%22%3A%22implementation%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A34%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22strings%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A38%2C%22name%22%3A%22Sorting%22%2C%22slug%22%3A%22arrays-and-sorting%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A36%2C%22name%22%3A%22Search%22%2C%22slug%22%3A%22search%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A33%2C%22name%22%3A%22Graph%20Theory%22%2C%22slug%22%3A%22graph-theory%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A59%2C%22name%22%3A%22Greedy%22%2C%22slug%22%3A%22greedy%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A35%2C%22name%22%3A%22Dynamic%20Programming%22%2C%22slug%22%3A%22dynamic-programming%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A151%2C%22name%22%3A%22Constructive%20Algorithms%22%2C%22slug%22%3A%22constructive-algorithms%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A30%2C%22name%22%3A%22Bit%20Manipulation%22%2C%22slug%22%3A%22bit-manipulation%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A153%2C%22name%22%3A%22Recursion%22%2C%22slug%22%3A%22recursion%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A47%2C%22name%22%3A%22Game%20Theory%22%2C%22slug%22%3A%22game-theory%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A29%2C%22name%22%3A%22NP%20Complete%22%2C%22slug%22%3A%22np-complete-problems%22%2C%22hidden%22%3Afalse%7D%5D%7D%2C%7B%22id%22%3A17%2C%22name%22%3A%22Data%20Structures%22%2C%22slug%22%3A%22data-structures%22%2C%22chapters%22%3A%5B%7B%22id%22%3A134%2C%22name%22%3A%22Arrays%22%2C%22slug%22%3A%22arrays%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A39%2C%22name%22%3A%22Linked%20Lists%22%2C%22slug%22%3A%22linked-lists%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A96%2C%22name%22%3A%22Trees%22%2C%22slug%22%3A%22trees%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A119%2C%22name%22%3A%22Balanced%20Trees%22%2C%22slug%22%3A%22balanced-trees%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A97%2C%22name%22%3A%22Stacks%22%2C%22slug%22%3A%22stacks%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A98%2C%22name%22%3A%22Queues%22%2C%22slug%22%3A%22queues%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A99%2C%22name%22%3A%22Heap%22%2C%22slug%22%3A%22heap%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A100%2C%22name%22%3A%22Disjoint%20Set%22%2C%22slug%22%3A%22disjoint-set%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A113%2C%22name%22%3A%22Multiple%20Choice%22%2C%22slug%22%3A%22multiple-choice%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A118%2C%22name%22%3A%22Trie%22%2C%22slug%22%3A%22trie%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A32%2C%22name%22%3A%22Advanced%22%2C%22slug%22%3A%22data-structures%22%2C%22hidden%22%3Afalse%7D%5D%7D%2C%7B%22id%22%3A22%2C%22name%22%3A%22Mathematics%22%2C%22slug%22%3A%22mathematics%22%2C%22chapters%22%3A%5B%7B%22id%22%3A109%2C%22name%22%3A%22Fundamentals%22%2C%22slug%22%3A%22fundamentals%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A52%2C%22name%22%3A%22Number%20Theory%22%2C%22slug%22%3A%22number-theory%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A51%2C%22name%22%3A%22Combinatorics%22%2C%22slug%22%3A%22combinatorics%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A55%2C%22name%22%3A%22Algebra%22%2C%22slug%22%3A%22algebra%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A54%2C%22name%22%3A%22Geometry%22%2C%22slug%22%3A%22geometry%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A53%2C%22name%22%3A%22Probability%22%2C%22slug%22%3A%22probability%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A128%2C%22name%22%3A%22Linear%20Algebra%20Foundations%22%2C%22slug%22%3A%22linear-algebra-foundations%22%2C%22hidden%22%3Afalse%7D%5D%7D%2C%7B%22id%22%3A2%2C%22name%22%3A%22Artificial%20Intelligence%22%2C%22slug%22%3A%22ai%22%2C%22chapters%22%3A%5B%7B%22id%22%3A8%2C%22name%22%3A%22Bot%20Building%22%2C%22slug%22%3A%22ai-introduction%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A9%2C%22name%22%3A%22A*%20Search%22%2C%22slug%22%3A%22astar-search%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A10%2C%22name%22%3A%22Alpha%20Beta%20Pruning%22%2C%22slug%22%3A%22alpha-beta-pruning%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A14%2C%22name%22%3A%22Combinatorial%20Search%22%2C%22slug%22%3A%22combinatorial-search-theory%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A13%2C%22name%22%3A%22Games%22%2C%22slug%22%3A%22richman-games%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A11%2C%22name%22%3A%22Statistics%20and%20Machine%20Learning%22%2C%22slug%22%3A%22machine-learning%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A44%2C%22name%22%3A%22Digital%20Image%20Analysis%22%2C%22slug%22%3A%22image-analysis%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A49%2C%22name%22%3A%22Natural%20Language%20Processing%22%2C%22slug%22%3A%22nlp%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A129%2C%22name%22%3A%22Probability%20%26%20Statistics%20-%20Foundations%22%2C%22slug%22%3A%22statistics-foundations%22%2C%22hidden%22%3Afalse%7D%5D%7D%2C%7B%22id%22%3A13%2C%22name%22%3A%22C++%22%2C%22slug%22%3A%22cpp%22%2C%22chapters%22%3A%5B%7B%22id%22%3A77%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22cpp-introduction%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A76%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22cpp-strings%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A78%2C%22name%22%3A%22Classes%22%2C%22slug%22%3A%22classes%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A116%2C%22name%22%3A%22STL%22%2C%22slug%22%3A%22stl%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A127%2C%22name%22%3A%22Inheritance%22%2C%22slug%22%3A%22inheritance%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A152%2C%22name%22%3A%22Other%20Concepts%22%2C%22slug%22%3A%22other-concepts%22%2C%22hidden%22%3Afalse%7D%5D%7D%2C%7B%22id%22%3A15%2C%22name%22%3A%22Java%22%2C%22slug%22%3A%22java%22%2C%22chapters%22%3A%5B%7B%22id%22%3A80%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22java-introduction%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A82%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22java-strings%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A83%2C%22name%22%3A%22BigNumber%22%2C%22slug%22%3A%22bignumber%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A84%2C%22name%22%3A%22Data%20Structures%22%2C%22slug%22%3A%22java-data-structure%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A85%2C%22name%22%3A%22Object%20Oriented%20Programming%22%2C%22slug%22%3A%22oop%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A106%2C%22name%22%3A%22Exception%20Handling%22%2C%22slug%22%3A%22handling-exceptions%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A136%2C%22name%22%3A%22Advanced%22%2C%22slug%22%3A%22java-advanced%22%2C%22hidden%22%3Afalse%7D%5D%7D%2C%7B%22id%22%3A12%2C%22name%22%3A%22Python%22%2C%22slug%22%3A%22python%22%2C%22chapters%22%3A%5B%7B%22id%22%3A73%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22py-introduction%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A74%2C%22name%22%3A%22Basic%20Data%20Types%22%2C%22slug%22%3A%22py-basic-data-types%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A75%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22py-strings%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A120%2C%22name%22%3A%22Sets%22%2C%22slug%22%3A%22py-sets%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A121%2C%22name%22%3A%22Math%22%2C%22slug%22%3A%22py-math%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A122%2C%22name%22%3A%22Itertools%22%2C%22slug%22%3A%22py-itertools%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A123%2C%22name%22%3A%22Collections%22%2C%22slug%22%3A%22py-collections%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A124%2C%22name%22%3A%22Date%20and%20Time%22%2C%22slug%22%3A%22py-date-time%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A126%2C%22name%22%3A%22Errors%20and%20Exceptions%22%2C%22slug%22%3A%22errors-exceptions%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A42%2C%22name%22%3A%22Classes%22%2C%22slug%22%3A%22py-classes%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A125%2C%22name%22%3A%22Built-Ins%22%2C%22slug%22%3A%22py-built-ins%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A87%2C%22name%22%3A%22Python%20Functionals%22%2C%22slug%22%3A%22py-functionals%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A88%2C%22name%22%3A%22Regex%20and%20Parsing%22%2C%22slug%22%3A%22py-regex%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A89%2C%22name%22%3A%22XML%22%2C%22slug%22%3A%22xml%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A90%2C%22name%22%3A%22Closures%20and%20Decorators%22%2C%22slug%22%3A%22closures-and-decorators%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A139%2C%22name%22%3A%22Numpy%22%2C%22slug%22%3A%22numpy%22%2C%22hidden%22%3Afalse%7D%5D%7D%2C%7B%22id%22%3A14%2C%22name%22%3A%22Ruby%22%2C%22slug%22%3A%22ruby%22%2C%22chapters%22%3A%5B%7B%22id%22%3A72%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22ruby-tutorials%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A86%2C%22name%22%3A%22Control%20Structures%22%2C%22slug%22%3A%22control-structures%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A79%2C%22name%22%3A%22Arrays%20%26%20Hashes%22%2C%22slug%22%3A%22ruby-arrays%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A107%2C%22name%22%3A%22Enumerables%22%2C%22slug%22%3A%22ruby-enumerables%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A112%2C%22name%22%3A%22Methods%22%2C%22slug%22%3A%22ruby-methods%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A135%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22ruby-strings%22%2C%22hidden%22%3Afalse%7D%5D%7D%2C%7B%22id%22%3A18%2C%22name%22%3A%22SQL%22%2C%22slug%22%3A%22sql%22%2C%22chapters%22%3A%5B%7B%22id%22%3A92%2C%22name%22%3A%22Basic%20Select%22%2C%22slug%22%3A%22select%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A132%2C%22name%22%3A%22Advanced%20Select%22%2C%22slug%22%3A%22advanced-select%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A95%2C%22name%22%3A%22Aggregation%22%2C%22slug%22%3A%22aggregation%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A94%2C%22name%22%3A%22Basic%20Join%22%2C%22slug%22%3A%22join%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A133%2C%22name%22%3A%22Advanced%20Join%22%2C%22slug%22%3A%22advanced-join%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A143%2C%22name%22%3A%22Alternative%20Queries%22%2C%22slug%22%3A%22alternative-queries%22%2C%22hidden%22%3Afalse%7D%5D%7D%2C%7B%22id%22%3A16%2C%22name%22%3A%22Databases%22%2C%22slug%22%3A%22databases%22%2C%22chapters%22%3A%5B%7B%22id%22%3A91%2C%22name%22%3A%22Relational%20Algebra%22%2C%22slug%22%3A%22relational-algebra%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A93%2C%22name%22%3A%22Indexes%22%2C%22slug%22%3A%22indexes%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A117%2C%22name%22%3A%22OLAP%22%2C%22slug%22%3A%22olap%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A101%2C%22name%22%3A%22Set%20and%20Algebra%22%2C%22slug%22%3A%22set-and-algebra%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A130%2C%22name%22%3A%22NoSQL%20-%20XML%2C%20MapReduce%22%2C%22slug%22%3A%22xpath-queries%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A131%2C%22name%22%3A%22Database%20Normalization%22%2C%22slug%22%3A%22database-normalization%22%2C%22hidden%22%3Afalse%7D%5D%7D%2C%7B%22id%22%3A21%2C%22name%22%3A%22Distributed%20Systems%22%2C%22slug%22%3A%22distributed-systems%22%2C%22chapters%22%3A%5B%7B%22id%22%3A103%2C%22name%22%3A%22Multiple%20Choice%22%2C%22slug%22%3A%22distributed-mcq%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A104%2C%22name%22%3A%22Client%20Server%22%2C%22slug%22%3A%22client-server%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A111%2C%22name%22%3A%22MapReduce%20Basics%22%2C%22slug%22%3A%22mapreduce-basics%22%2C%22hidden%22%3Afalse%7D%5D%7D%2C%7B%22id%22%3A6%2C%22name%22%3A%22Linux%20Shell%22%2C%22slug%22%3A%22shell%22%2C%22chapters%22%3A%5B%7B%22id%22%3A56%2C%22name%22%3A%22Bash%22%2C%22slug%22%3A%22bash%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A57%2C%22name%22%3A%22Text%20Processing%22%2C%22slug%22%3A%22textpro%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A114%2C%22name%22%3A%22Arrays%20in%20Bash%22%2C%22slug%22%3A%22arrays-in-bash%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A115%2C%22name%22%3A%22Grep%20Sed%20Awk%22%2C%22slug%22%3A%22grep-sed-awk%22%2C%22hidden%22%3Afalse%7D%5D%7D%2C%7B%22id%22%3A5%2C%22name%22%3A%22Functional%20Programming%22%2C%22slug%22%3A%22fp%22%2C%22chapters%22%3A%5B%7B%22id%22%3A27%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22intro%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A26%2C%22name%22%3A%22Recursion%22%2C%22slug%22%3A%22fp-recursion%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A45%2C%22name%22%3A%22Functional%20Structures%22%2C%22slug%22%3A%22ds%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A40%2C%22name%22%3A%22Memoization%20and%20DP%22%2C%22slug%22%3A%22dp%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A50%2C%22name%22%3A%22Persistent%20Structures%22%2C%22slug%22%3A%22persistent-ds%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A41%2C%22name%22%3A%22Ad%20Hoc%22%2C%22slug%22%3A%22misc%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A46%2C%22name%22%3A%22Parsers%22%2C%22slug%22%3A%22parsers%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A48%2C%22name%22%3A%22Interpreter%20and%20Compilers%22%2C%22slug%22%3A%22compilers%22%2C%22hidden%22%3Afalse%7D%5D%7D%2C%7B%22id%22%3A19%2C%22name%22%3A%22Regex%22%2C%22slug%22%3A%22regex%22%2C%22chapters%22%3A%5B%7B%22id%22%3A137%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22re-introduction%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A141%2C%22name%22%3A%22Character%20Class%22%2C%22slug%22%3A%22re-character-class%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A142%2C%22name%22%3A%22Repetitions%22%2C%22slug%22%3A%22re-repetitions%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A140%2C%22name%22%3A%22Grouping%20and%20Capturing%22%2C%22slug%22%3A%22grouping-and-capturing%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A144%2C%22name%22%3A%22Backreferences%22%2C%22slug%22%3A%22backreferences%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A145%2C%22name%22%3A%22Assertions%22%2C%22slug%22%3A%22assertions%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A138%2C%22name%22%3A%22Applications%22%2C%22slug%22%3A%22re-applications%22%2C%22hidden%22%3Afalse%7D%5D%7D%2C%7B%22id%22%3A26%2C%22name%22%3A%22General%20Programming%22%2C%22slug%22%3A%22general-programming%22%2C%22chapters%22%3A%5B%5D%7D%2C%7B%22id%22%3A20%2C%22name%22%3A%22Security%22%2C%22slug%22%3A%22security%22%2C%22chapters%22%3A%5B%7B%22id%22%3A102%2C%22name%22%3A%22Functions%22%2C%22slug%22%3A%22functions%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A105%2C%22name%22%3A%22Terminology%20and%20Concepts%22%2C%22slug%22%3A%22concepts%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A31%2C%22name%22%3A%22Cryptography%22%2C%22slug%22%3A%22cryptography%22%2C%22hidden%22%3Afalse%7D%5D%7D%5D%2C%22dict%22%3A%7B%22tutorials%22%3A%7B%22id%22%3A24%2C%22name%22%3A%22Tutorials%22%2C%22slug%22%3A%22tutorials%22%2C%22chapters%22%3A%5B%7B%22id%22%3A146%2C%22name%22%3A%2230%20Days%20of%20Code%22%2C%22slug%22%3A%2230-days-of-code%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A149%2C%22name%22%3A%22Cracking%20the%20Coding%20Interview%22%2C%22slug%22%3A%22cracking-the-coding-interview%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A147%2C%22name%22%3A%2210%20Days%20of%20Statistics%22%2C%22slug%22%3A%2210-days-of-statistics%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A148%2C%22name%22%3A%2210%20Days%20of%20Javascript%22%2C%22slug%22%3A%2210-days-of-javascript%22%2C%22hidden%22%3Afalse%7D%5D%2C%22chapterDict%22%3A%7B%2230-days-of-code%22%3A%7B%22id%22%3A146%2C%22name%22%3A%2230%20Days%20of%20Code%22%2C%22slug%22%3A%2230-days-of-code%22%2C%22hidden%22%3Afalse%7D%2C%22cracking-the-coding-interview%22%3A%7B%22id%22%3A149%2C%22name%22%3A%22Cracking%20the%20Coding%20Interview%22%2C%22slug%22%3A%22cracking-the-coding-interview%22%2C%22hidden%22%3Afalse%7D%2C%2210-days-of-statistics%22%3A%7B%22id%22%3A147%2C%22name%22%3A%2210%20Days%20of%20Statistics%22%2C%22slug%22%3A%2210-days-of-statistics%22%2C%22hidden%22%3Afalse%7D%2C%2210-days-of-javascript%22%3A%7B%22id%22%3A148%2C%22name%22%3A%2210%20Days%20of%20Javascript%22%2C%22slug%22%3A%2210-days-of-javascript%22%2C%22hidden%22%3Afalse%7D%7D%7D%2C%22algorithms%22%3A%7B%22id%22%3A3%2C%22name%22%3A%22Algorithms%22%2C%22slug%22%3A%22algorithms%22%2C%22chapters%22%3A%5B%7B%22id%22%3A43%2C%22name%22%3A%22Warmup%22%2C%22slug%22%3A%22warmup%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A108%2C%22name%22%3A%22Implementation%22%2C%22slug%22%3A%22implementation%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A34%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22strings%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A38%2C%22name%22%3A%22Sorting%22%2C%22slug%22%3A%22arrays-and-sorting%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A36%2C%22name%22%3A%22Search%22%2C%22slug%22%3A%22search%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A33%2C%22name%22%3A%22Graph%20Theory%22%2C%22slug%22%3A%22graph-theory%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A59%2C%22name%22%3A%22Greedy%22%2C%22slug%22%3A%22greedy%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A35%2C%22name%22%3A%22Dynamic%20Programming%22%2C%22slug%22%3A%22dynamic-programming%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A151%2C%22name%22%3A%22Constructive%20Algorithms%22%2C%22slug%22%3A%22constructive-algorithms%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A30%2C%22name%22%3A%22Bit%20Manipulation%22%2C%22slug%22%3A%22bit-manipulation%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A153%2C%22name%22%3A%22Recursion%22%2C%22slug%22%3A%22recursion%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A47%2C%22name%22%3A%22Game%20Theory%22%2C%22slug%22%3A%22game-theory%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A29%2C%22name%22%3A%22NP%20Complete%22%2C%22slug%22%3A%22np-complete-problems%22%2C%22hidden%22%3Afalse%7D%5D%2C%22chapterDict%22%3A%7B%22warmup%22%3A%7B%22id%22%3A43%2C%22name%22%3A%22Warmup%22%2C%22slug%22%3A%22warmup%22%2C%22hidden%22%3Afalse%7D%2C%22implementation%22%3A%7B%22id%22%3A108%2C%22name%22%3A%22Implementation%22%2C%22slug%22%3A%22implementation%22%2C%22hidden%22%3Afalse%7D%2C%22strings%22%3A%7B%22id%22%3A34%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22strings%22%2C%22hidden%22%3Afalse%7D%2C%22arrays-and-sorting%22%3A%7B%22id%22%3A38%2C%22name%22%3A%22Sorting%22%2C%22slug%22%3A%22arrays-and-sorting%22%2C%22hidden%22%3Afalse%7D%2C%22search%22%3A%7B%22id%22%3A36%2C%22name%22%3A%22Search%22%2C%22slug%22%3A%22search%22%2C%22hidden%22%3Afalse%7D%2C%22graph-theory%22%3A%7B%22id%22%3A33%2C%22name%22%3A%22Graph%20Theory%22%2C%22slug%22%3A%22graph-theory%22%2C%22hidden%22%3Afalse%7D%2C%22greedy%22%3A%7B%22id%22%3A59%2C%22name%22%3A%22Greedy%22%2C%22slug%22%3A%22greedy%22%2C%22hidden%22%3Afalse%7D%2C%22dynamic-programming%22%3A%7B%22id%22%3A35%2C%22name%22%3A%22Dynamic%20Programming%22%2C%22slug%22%3A%22dynamic-programming%22%2C%22hidden%22%3Afalse%7D%2C%22constructive-algorithms%22%3A%7B%22id%22%3A151%2C%22name%22%3A%22Constructive%20Algorithms%22%2C%22slug%22%3A%22constructive-algorithms%22%2C%22hidden%22%3Afalse%7D%2C%22bit-manipulation%22%3A%7B%22id%22%3A30%2C%22name%22%3A%22Bit%20Manipulation%22%2C%22slug%22%3A%22bit-manipulation%22%2C%22hidden%22%3Afalse%7D%2C%22recursion%22%3A%7B%22id%22%3A153%2C%22name%22%3A%22Recursion%22%2C%22slug%22%3A%22recursion%22%2C%22hidden%22%3Afalse%7D%2C%22game-theory%22%3A%7B%22id%22%3A47%2C%22name%22%3A%22Game%20Theory%22%2C%22slug%22%3A%22game-theory%22%2C%22hidden%22%3Afalse%7D%2C%22np-complete-problems%22%3A%7B%22id%22%3A29%2C%22name%22%3A%22NP%20Complete%22%2C%22slug%22%3A%22np-complete-problems%22%2C%22hidden%22%3Afalse%7D%7D%7D%2C%22data-structures%22%3A%7B%22id%22%3A17%2C%22name%22%3A%22Data%20Structures%22%2C%22slug%22%3A%22data-structures%22%2C%22chapters%22%3A%5B%7B%22id%22%3A134%2C%22name%22%3A%22Arrays%22%2C%22slug%22%3A%22arrays%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A39%2C%22name%22%3A%22Linked%20Lists%22%2C%22slug%22%3A%22linked-lists%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A96%2C%22name%22%3A%22Trees%22%2C%22slug%22%3A%22trees%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A119%2C%22name%22%3A%22Balanced%20Trees%22%2C%22slug%22%3A%22balanced-trees%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A97%2C%22name%22%3A%22Stacks%22%2C%22slug%22%3A%22stacks%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A98%2C%22name%22%3A%22Queues%22%2C%22slug%22%3A%22queues%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A99%2C%22name%22%3A%22Heap%22%2C%22slug%22%3A%22heap%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A100%2C%22name%22%3A%22Disjoint%20Set%22%2C%22slug%22%3A%22disjoint-set%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A113%2C%22name%22%3A%22Multiple%20Choice%22%2C%22slug%22%3A%22multiple-choice%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A118%2C%22name%22%3A%22Trie%22%2C%22slug%22%3A%22trie%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A32%2C%22name%22%3A%22Advanced%22%2C%22slug%22%3A%22data-structures%22%2C%22hidden%22%3Afalse%7D%5D%2C%22chapterDict%22%3A%7B%22arrays%22%3A%7B%22id%22%3A134%2C%22name%22%3A%22Arrays%22%2C%22slug%22%3A%22arrays%22%2C%22hidden%22%3Afalse%7D%2C%22linked-lists%22%3A%7B%22id%22%3A39%2C%22name%22%3A%22Linked%20Lists%22%2C%22slug%22%3A%22linked-lists%22%2C%22hidden%22%3Afalse%7D%2C%22trees%22%3A%7B%22id%22%3A96%2C%22name%22%3A%22Trees%22%2C%22slug%22%3A%22trees%22%2C%22hidden%22%3Afalse%7D%2C%22balanced-trees%22%3A%7B%22id%22%3A119%2C%22name%22%3A%22Balanced%20Trees%22%2C%22slug%22%3A%22balanced-trees%22%2C%22hidden%22%3Afalse%7D%2C%22stacks%22%3A%7B%22id%22%3A97%2C%22name%22%3A%22Stacks%22%2C%22slug%22%3A%22stacks%22%2C%22hidden%22%3Afalse%7D%2C%22queues%22%3A%7B%22id%22%3A98%2C%22name%22%3A%22Queues%22%2C%22slug%22%3A%22queues%22%2C%22hidden%22%3Afalse%7D%2C%22heap%22%3A%7B%22id%22%3A99%2C%22name%22%3A%22Heap%22%2C%22slug%22%3A%22heap%22%2C%22hidden%22%3Afalse%7D%2C%22disjoint-set%22%3A%7B%22id%22%3A100%2C%22name%22%3A%22Disjoint%20Set%22%2C%22slug%22%3A%22disjoint-set%22%2C%22hidden%22%3Afalse%7D%2C%22multiple-choice%22%3A%7B%22id%22%3A113%2C%22name%22%3A%22Multiple%20Choice%22%2C%22slug%22%3A%22multiple-choice%22%2C%22hidden%22%3Afalse%7D%2C%22trie%22%3A%7B%22id%22%3A118%2C%22name%22%3A%22Trie%22%2C%22slug%22%3A%22trie%22%2C%22hidden%22%3Afalse%7D%2C%22data-structures%22%3A%7B%22id%22%3A32%2C%22name%22%3A%22Advanced%22%2C%22slug%22%3A%22data-structures%22%2C%22hidden%22%3Afalse%7D%7D%7D%2C%22mathematics%22%3A%7B%22id%22%3A22%2C%22name%22%3A%22Mathematics%22%2C%22slug%22%3A%22mathematics%22%2C%22chapters%22%3A%5B%7B%22id%22%3A109%2C%22name%22%3A%22Fundamentals%22%2C%22slug%22%3A%22fundamentals%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A52%2C%22name%22%3A%22Number%20Theory%22%2C%22slug%22%3A%22number-theory%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A51%2C%22name%22%3A%22Combinatorics%22%2C%22slug%22%3A%22combinatorics%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A55%2C%22name%22%3A%22Algebra%22%2C%22slug%22%3A%22algebra%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A54%2C%22name%22%3A%22Geometry%22%2C%22slug%22%3A%22geometry%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A53%2C%22name%22%3A%22Probability%22%2C%22slug%22%3A%22probability%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A128%2C%22name%22%3A%22Linear%20Algebra%20Foundations%22%2C%22slug%22%3A%22linear-algebra-foundations%22%2C%22hidden%22%3Afalse%7D%5D%2C%22chapterDict%22%3A%7B%22fundamentals%22%3A%7B%22id%22%3A109%2C%22name%22%3A%22Fundamentals%22%2C%22slug%22%3A%22fundamentals%22%2C%22hidden%22%3Afalse%7D%2C%22number-theory%22%3A%7B%22id%22%3A52%2C%22name%22%3A%22Number%20Theory%22%2C%22slug%22%3A%22number-theory%22%2C%22hidden%22%3Afalse%7D%2C%22combinatorics%22%3A%7B%22id%22%3A51%2C%22name%22%3A%22Combinatorics%22%2C%22slug%22%3A%22combinatorics%22%2C%22hidden%22%3Afalse%7D%2C%22algebra%22%3A%7B%22id%22%3A55%2C%22name%22%3A%22Algebra%22%2C%22slug%22%3A%22algebra%22%2C%22hidden%22%3Afalse%7D%2C%22geometry%22%3A%7B%22id%22%3A54%2C%22name%22%3A%22Geometry%22%2C%22slug%22%3A%22geometry%22%2C%22hidden%22%3Afalse%7D%2C%22probability%22%3A%7B%22id%22%3A53%2C%22name%22%3A%22Probability%22%2C%22slug%22%3A%22probability%22%2C%22hidden%22%3Afalse%7D%2C%22linear-algebra-foundations%22%3A%7B%22id%22%3A128%2C%22name%22%3A%22Linear%20Algebra%20Foundations%22%2C%22slug%22%3A%22linear-algebra-foundations%22%2C%22hidden%22%3Afalse%7D%7D%7D%2C%22ai%22%3A%7B%22id%22%3A2%2C%22name%22%3A%22Artificial%20Intelligence%22%2C%22slug%22%3A%22ai%22%2C%22chapters%22%3A%5B%7B%22id%22%3A8%2C%22name%22%3A%22Bot%20Building%22%2C%22slug%22%3A%22ai-introduction%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A9%2C%22name%22%3A%22A*%20Search%22%2C%22slug%22%3A%22astar-search%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A10%2C%22name%22%3A%22Alpha%20Beta%20Pruning%22%2C%22slug%22%3A%22alpha-beta-pruning%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A14%2C%22name%22%3A%22Combinatorial%20Search%22%2C%22slug%22%3A%22combinatorial-search-theory%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A13%2C%22name%22%3A%22Games%22%2C%22slug%22%3A%22richman-games%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A11%2C%22name%22%3A%22Statistics%20and%20Machine%20Learning%22%2C%22slug%22%3A%22machine-learning%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A44%2C%22name%22%3A%22Digital%20Image%20Analysis%22%2C%22slug%22%3A%22image-analysis%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A49%2C%22name%22%3A%22Natural%20Language%20Processing%22%2C%22slug%22%3A%22nlp%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A129%2C%22name%22%3A%22Probability%20%26%20Statistics%20-%20Foundations%22%2C%22slug%22%3A%22statistics-foundations%22%2C%22hidden%22%3Afalse%7D%5D%2C%22chapterDict%22%3A%7B%22ai-introduction%22%3A%7B%22id%22%3A8%2C%22name%22%3A%22Bot%20Building%22%2C%22slug%22%3A%22ai-introduction%22%2C%22hidden%22%3Afalse%7D%2C%22astar-search%22%3A%7B%22id%22%3A9%2C%22name%22%3A%22A*%20Search%22%2C%22slug%22%3A%22astar-search%22%2C%22hidden%22%3Afalse%7D%2C%22alpha-beta-pruning%22%3A%7B%22id%22%3A10%2C%22name%22%3A%22Alpha%20Beta%20Pruning%22%2C%22slug%22%3A%22alpha-beta-pruning%22%2C%22hidden%22%3Afalse%7D%2C%22combinatorial-search-theory%22%3A%7B%22id%22%3A14%2C%22name%22%3A%22Combinatorial%20Search%22%2C%22slug%22%3A%22combinatorial-search-theory%22%2C%22hidden%22%3Afalse%7D%2C%22richman-games%22%3A%7B%22id%22%3A13%2C%22name%22%3A%22Games%22%2C%22slug%22%3A%22richman-games%22%2C%22hidden%22%3Afalse%7D%2C%22machine-learning%22%3A%7B%22id%22%3A11%2C%22name%22%3A%22Statistics%20and%20Machine%20Learning%22%2C%22slug%22%3A%22machine-learning%22%2C%22hidden%22%3Afalse%7D%2C%22image-analysis%22%3A%7B%22id%22%3A44%2C%22name%22%3A%22Digital%20Image%20Analysis%22%2C%22slug%22%3A%22image-analysis%22%2C%22hidden%22%3Afalse%7D%2C%22nlp%22%3A%7B%22id%22%3A49%2C%22name%22%3A%22Natural%20Language%20Processing%22%2C%22slug%22%3A%22nlp%22%2C%22hidden%22%3Afalse%7D%2C%22statistics-foundations%22%3A%7B%22id%22%3A129%2C%22name%22%3A%22Probability%20%26%20Statistics%20-%20Foundations%22%2C%22slug%22%3A%22statistics-foundations%22%2C%22hidden%22%3Afalse%7D%7D%7D%2C%22cpp%22%3A%7B%22id%22%3A13%2C%22name%22%3A%22C++%22%2C%22slug%22%3A%22cpp%22%2C%22chapters%22%3A%5B%7B%22id%22%3A77%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22cpp-introduction%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A76%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22cpp-strings%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A78%2C%22name%22%3A%22Classes%22%2C%22slug%22%3A%22classes%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A116%2C%22name%22%3A%22STL%22%2C%22slug%22%3A%22stl%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A127%2C%22name%22%3A%22Inheritance%22%2C%22slug%22%3A%22inheritance%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A152%2C%22name%22%3A%22Other%20Concepts%22%2C%22slug%22%3A%22other-concepts%22%2C%22hidden%22%3Afalse%7D%5D%2C%22chapterDict%22%3A%7B%22cpp-introduction%22%3A%7B%22id%22%3A77%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22cpp-introduction%22%2C%22hidden%22%3Afalse%7D%2C%22cpp-strings%22%3A%7B%22id%22%3A76%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22cpp-strings%22%2C%22hidden%22%3Afalse%7D%2C%22classes%22%3A%7B%22id%22%3A78%2C%22name%22%3A%22Classes%22%2C%22slug%22%3A%22classes%22%2C%22hidden%22%3Afalse%7D%2C%22stl%22%3A%7B%22id%22%3A116%2C%22name%22%3A%22STL%22%2C%22slug%22%3A%22stl%22%2C%22hidden%22%3Afalse%7D%2C%22inheritance%22%3A%7B%22id%22%3A127%2C%22name%22%3A%22Inheritance%22%2C%22slug%22%3A%22inheritance%22%2C%22hidden%22%3Afalse%7D%2C%22other-concepts%22%3A%7B%22id%22%3A152%2C%22name%22%3A%22Other%20Concepts%22%2C%22slug%22%3A%22other-concepts%22%2C%22hidden%22%3Afalse%7D%7D%7D%2C%22java%22%3A%7B%22id%22%3A15%2C%22name%22%3A%22Java%22%2C%22slug%22%3A%22java%22%2C%22chapters%22%3A%5B%7B%22id%22%3A80%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22java-introduction%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A82%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22java-strings%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A83%2C%22name%22%3A%22BigNumber%22%2C%22slug%22%3A%22bignumber%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A84%2C%22name%22%3A%22Data%20Structures%22%2C%22slug%22%3A%22java-data-structure%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A85%2C%22name%22%3A%22Object%20Oriented%20Programming%22%2C%22slug%22%3A%22oop%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A106%2C%22name%22%3A%22Exception%20Handling%22%2C%22slug%22%3A%22handling-exceptions%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A136%2C%22name%22%3A%22Advanced%22%2C%22slug%22%3A%22java-advanced%22%2C%22hidden%22%3Afalse%7D%5D%2C%22chapterDict%22%3A%7B%22java-introduction%22%3A%7B%22id%22%3A80%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22java-introduction%22%2C%22hidden%22%3Afalse%2C%22tutorial_signed_up%22%3Atrue%7D%2C%22java-strings%22%3A%7B%22id%22%3A82%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22java-strings%22%2C%22hidden%22%3Afalse%7D%2C%22bignumber%22%3A%7B%22id%22%3A83%2C%22name%22%3A%22BigNumber%22%2C%22slug%22%3A%22bignumber%22%2C%22hidden%22%3Afalse%7D%2C%22java-data-structure%22%3A%7B%22id%22%3A84%2C%22name%22%3A%22Data%20Structures%22%2C%22slug%22%3A%22java-data-structure%22%2C%22hidden%22%3Afalse%7D%2C%22oop%22%3A%7B%22id%22%3A85%2C%22name%22%3A%22Object%20Oriented%20Programming%22%2C%22slug%22%3A%22oop%22%2C%22hidden%22%3Afalse%7D%2C%22handling-exceptions%22%3A%7B%22id%22%3A106%2C%22name%22%3A%22Exception%20Handling%22%2C%22slug%22%3A%22handling-exceptions%22%2C%22hidden%22%3Afalse%7D%2C%22java-advanced%22%3A%7B%22id%22%3A136%2C%22name%22%3A%22Advanced%22%2C%22slug%22%3A%22java-advanced%22%2C%22hidden%22%3Afalse%7D%7D%7D%2C%22python%22%3A%7B%22id%22%3A12%2C%22name%22%3A%22Python%22%2C%22slug%22%3A%22python%22%2C%22chapters%22%3A%5B%7B%22id%22%3A73%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22py-introduction%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A74%2C%22name%22%3A%22Basic%20Data%20Types%22%2C%22slug%22%3A%22py-basic-data-types%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A75%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22py-strings%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A120%2C%22name%22%3A%22Sets%22%2C%22slug%22%3A%22py-sets%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A121%2C%22name%22%3A%22Math%22%2C%22slug%22%3A%22py-math%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A122%2C%22name%22%3A%22Itertools%22%2C%22slug%22%3A%22py-itertools%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A123%2C%22name%22%3A%22Collections%22%2C%22slug%22%3A%22py-collections%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A124%2C%22name%22%3A%22Date%20and%20Time%22%2C%22slug%22%3A%22py-date-time%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A126%2C%22name%22%3A%22Errors%20and%20Exceptions%22%2C%22slug%22%3A%22errors-exceptions%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A42%2C%22name%22%3A%22Classes%22%2C%22slug%22%3A%22py-classes%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A125%2C%22name%22%3A%22Built-Ins%22%2C%22slug%22%3A%22py-built-ins%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A87%2C%22name%22%3A%22Python%20Functionals%22%2C%22slug%22%3A%22py-functionals%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A88%2C%22name%22%3A%22Regex%20and%20Parsing%22%2C%22slug%22%3A%22py-regex%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A89%2C%22name%22%3A%22XML%22%2C%22slug%22%3A%22xml%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A90%2C%22name%22%3A%22Closures%20and%20Decorators%22%2C%22slug%22%3A%22closures-and-decorators%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A139%2C%22name%22%3A%22Numpy%22%2C%22slug%22%3A%22numpy%22%2C%22hidden%22%3Afalse%7D%5D%2C%22chapterDict%22%3A%7B%22py-introduction%22%3A%7B%22id%22%3A73%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22py-introduction%22%2C%22hidden%22%3Afalse%7D%2C%22py-basic-data-types%22%3A%7B%22id%22%3A74%2C%22name%22%3A%22Basic%20Data%20Types%22%2C%22slug%22%3A%22py-basic-data-types%22%2C%22hidden%22%3Afalse%7D%2C%22py-strings%22%3A%7B%22id%22%3A75%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22py-strings%22%2C%22hidden%22%3Afalse%7D%2C%22py-sets%22%3A%7B%22id%22%3A120%2C%22name%22%3A%22Sets%22%2C%22slug%22%3A%22py-sets%22%2C%22hidden%22%3Afalse%7D%2C%22py-math%22%3A%7B%22id%22%3A121%2C%22name%22%3A%22Math%22%2C%22slug%22%3A%22py-math%22%2C%22hidden%22%3Afalse%7D%2C%22py-itertools%22%3A%7B%22id%22%3A122%2C%22name%22%3A%22Itertools%22%2C%22slug%22%3A%22py-itertools%22%2C%22hidden%22%3Afalse%7D%2C%22py-collections%22%3A%7B%22id%22%3A123%2C%22name%22%3A%22Collections%22%2C%22slug%22%3A%22py-collections%22%2C%22hidden%22%3Afalse%7D%2C%22py-date-time%22%3A%7B%22id%22%3A124%2C%22name%22%3A%22Date%20and%20Time%22%2C%22slug%22%3A%22py-date-time%22%2C%22hidden%22%3Afalse%7D%2C%22errors-exceptions%22%3A%7B%22id%22%3A126%2C%22name%22%3A%22Errors%20and%20Exceptions%22%2C%22slug%22%3A%22errors-exceptions%22%2C%22hidden%22%3Afalse%7D%2C%22py-classes%22%3A%7B%22id%22%3A42%2C%22name%22%3A%22Classes%22%2C%22slug%22%3A%22py-classes%22%2C%22hidden%22%3Afalse%7D%2C%22py-built-ins%22%3A%7B%22id%22%3A125%2C%22name%22%3A%22Built-Ins%22%2C%22slug%22%3A%22py-built-ins%22%2C%22hidden%22%3Afalse%7D%2C%22py-functionals%22%3A%7B%22id%22%3A87%2C%22name%22%3A%22Python%20Functionals%22%2C%22slug%22%3A%22py-functionals%22%2C%22hidden%22%3Afalse%7D%2C%22py-regex%22%3A%7B%22id%22%3A88%2C%22name%22%3A%22Regex%20and%20Parsing%22%2C%22slug%22%3A%22py-regex%22%2C%22hidden%22%3Afalse%7D%2C%22xml%22%3A%7B%22id%22%3A89%2C%22name%22%3A%22XML%22%2C%22slug%22%3A%22xml%22%2C%22hidden%22%3Afalse%7D%2C%22closures-and-decorators%22%3A%7B%22id%22%3A90%2C%22name%22%3A%22Closures%20and%20Decorators%22%2C%22slug%22%3A%22closures-and-decorators%22%2C%22hidden%22%3Afalse%7D%2C%22numpy%22%3A%7B%22id%22%3A139%2C%22name%22%3A%22Numpy%22%2C%22slug%22%3A%22numpy%22%2C%22hidden%22%3Afalse%7D%7D%7D%2C%22ruby%22%3A%7B%22id%22%3A14%2C%22name%22%3A%22Ruby%22%2C%22slug%22%3A%22ruby%22%2C%22chapters%22%3A%5B%7B%22id%22%3A72%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22ruby-tutorials%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A86%2C%22name%22%3A%22Control%20Structures%22%2C%22slug%22%3A%22control-structures%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A79%2C%22name%22%3A%22Arrays%20%26%20Hashes%22%2C%22slug%22%3A%22ruby-arrays%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A107%2C%22name%22%3A%22Enumerables%22%2C%22slug%22%3A%22ruby-enumerables%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A112%2C%22name%22%3A%22Methods%22%2C%22slug%22%3A%22ruby-methods%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A135%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22ruby-strings%22%2C%22hidden%22%3Afalse%7D%5D%2C%22chapterDict%22%3A%7B%22ruby-tutorials%22%3A%7B%22id%22%3A72%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22ruby-tutorials%22%2C%22hidden%22%3Afalse%7D%2C%22control-structures%22%3A%7B%22id%22%3A86%2C%22name%22%3A%22Control%20Structures%22%2C%22slug%22%3A%22control-structures%22%2C%22hidden%22%3Afalse%7D%2C%22ruby-arrays%22%3A%7B%22id%22%3A79%2C%22name%22%3A%22Arrays%20%26%20Hashes%22%2C%22slug%22%3A%22ruby-arrays%22%2C%22hidden%22%3Afalse%7D%2C%22ruby-enumerables%22%3A%7B%22id%22%3A107%2C%22name%22%3A%22Enumerables%22%2C%22slug%22%3A%22ruby-enumerables%22%2C%22hidden%22%3Afalse%7D%2C%22ruby-methods%22%3A%7B%22id%22%3A112%2C%22name%22%3A%22Methods%22%2C%22slug%22%3A%22ruby-methods%22%2C%22hidden%22%3Afalse%7D%2C%22ruby-strings%22%3A%7B%22id%22%3A135%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22ruby-strings%22%2C%22hidden%22%3Afalse%7D%7D%7D%2C%22sql%22%3A%7B%22id%22%3A18%2C%22name%22%3A%22SQL%22%2C%22slug%22%3A%22sql%22%2C%22chapters%22%3A%5B%7B%22id%22%3A92%2C%22name%22%3A%22Basic%20Select%22%2C%22slug%22%3A%22select%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A132%2C%22name%22%3A%22Advanced%20Select%22%2C%22slug%22%3A%22advanced-select%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A95%2C%22name%22%3A%22Aggregation%22%2C%22slug%22%3A%22aggregation%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A94%2C%22name%22%3A%22Basic%20Join%22%2C%22slug%22%3A%22join%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A133%2C%22name%22%3A%22Advanced%20Join%22%2C%22slug%22%3A%22advanced-join%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A143%2C%22name%22%3A%22Alternative%20Queries%22%2C%22slug%22%3A%22alternative-queries%22%2C%22hidden%22%3Afalse%7D%5D%2C%22chapterDict%22%3A%7B%22select%22%3A%7B%22id%22%3A92%2C%22name%22%3A%22Basic%20Select%22%2C%22slug%22%3A%22select%22%2C%22hidden%22%3Afalse%7D%2C%22advanced-select%22%3A%7B%22id%22%3A132%2C%22name%22%3A%22Advanced%20Select%22%2C%22slug%22%3A%22advanced-select%22%2C%22hidden%22%3Afalse%7D%2C%22aggregation%22%3A%7B%22id%22%3A95%2C%22name%22%3A%22Aggregation%22%2C%22slug%22%3A%22aggregation%22%2C%22hidden%22%3Afalse%7D%2C%22join%22%3A%7B%22id%22%3A94%2C%22name%22%3A%22Basic%20Join%22%2C%22slug%22%3A%22join%22%2C%22hidden%22%3Afalse%7D%2C%22advanced-join%22%3A%7B%22id%22%3A133%2C%22name%22%3A%22Advanced%20Join%22%2C%22slug%22%3A%22advanced-join%22%2C%22hidden%22%3Afalse%7D%2C%22alternative-queries%22%3A%7B%22id%22%3A143%2C%22name%22%3A%22Alternative%20Queries%22%2C%22slug%22%3A%22alternative-queries%22%2C%22hidden%22%3Afalse%7D%7D%7D%2C%22databases%22%3A%7B%22id%22%3A16%2C%22name%22%3A%22Databases%22%2C%22slug%22%3A%22databases%22%2C%22chapters%22%3A%5B%7B%22id%22%3A91%2C%22name%22%3A%22Relational%20Algebra%22%2C%22slug%22%3A%22relational-algebra%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A93%2C%22name%22%3A%22Indexes%22%2C%22slug%22%3A%22indexes%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A117%2C%22name%22%3A%22OLAP%22%2C%22slug%22%3A%22olap%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A101%2C%22name%22%3A%22Set%20and%20Algebra%22%2C%22slug%22%3A%22set-and-algebra%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A130%2C%22name%22%3A%22NoSQL%20-%20XML%2C%20MapReduce%22%2C%22slug%22%3A%22xpath-queries%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A131%2C%22name%22%3A%22Database%20Normalization%22%2C%22slug%22%3A%22database-normalization%22%2C%22hidden%22%3Afalse%7D%5D%2C%22chapterDict%22%3A%7B%22relational-algebra%22%3A%7B%22id%22%3A91%2C%22name%22%3A%22Relational%20Algebra%22%2C%22slug%22%3A%22relational-algebra%22%2C%22hidden%22%3Afalse%7D%2C%22indexes%22%3A%7B%22id%22%3A93%2C%22name%22%3A%22Indexes%22%2C%22slug%22%3A%22indexes%22%2C%22hidden%22%3Afalse%7D%2C%22olap%22%3A%7B%22id%22%3A117%2C%22name%22%3A%22OLAP%22%2C%22slug%22%3A%22olap%22%2C%22hidden%22%3Afalse%7D%2C%22set-and-algebra%22%3A%7B%22id%22%3A101%2C%22name%22%3A%22Set%20and%20Algebra%22%2C%22slug%22%3A%22set-and-algebra%22%2C%22hidden%22%3Afalse%7D%2C%22xpath-queries%22%3A%7B%22id%22%3A130%2C%22name%22%3A%22NoSQL%20-%20XML%2C%20MapReduce%22%2C%22slug%22%3A%22xpath-queries%22%2C%22hidden%22%3Afalse%7D%2C%22database-normalization%22%3A%7B%22id%22%3A131%2C%22name%22%3A%22Database%20Normalization%22%2C%22slug%22%3A%22database-normalization%22%2C%22hidden%22%3Afalse%7D%7D%7D%2C%22distributed-systems%22%3A%7B%22id%22%3A21%2C%22name%22%3A%22Distributed%20Systems%22%2C%22slug%22%3A%22distributed-systems%22%2C%22chapters%22%3A%5B%7B%22id%22%3A103%2C%22name%22%3A%22Multiple%20Choice%22%2C%22slug%22%3A%22distributed-mcq%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A104%2C%22name%22%3A%22Client%20Server%22%2C%22slug%22%3A%22client-server%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A111%2C%22name%22%3A%22MapReduce%20Basics%22%2C%22slug%22%3A%22mapreduce-basics%22%2C%22hidden%22%3Afalse%7D%5D%2C%22chapterDict%22%3A%7B%22distributed-mcq%22%3A%7B%22id%22%3A103%2C%22name%22%3A%22Multiple%20Choice%22%2C%22slug%22%3A%22distributed-mcq%22%2C%22hidden%22%3Afalse%7D%2C%22client-server%22%3A%7B%22id%22%3A104%2C%22name%22%3A%22Client%20Server%22%2C%22slug%22%3A%22client-server%22%2C%22hidden%22%3Afalse%7D%2C%22mapreduce-basics%22%3A%7B%22id%22%3A111%2C%22name%22%3A%22MapReduce%20Basics%22%2C%22slug%22%3A%22mapreduce-basics%22%2C%22hidden%22%3Afalse%7D%7D%7D%2C%22shell%22%3A%7B%22id%22%3A6%2C%22name%22%3A%22Linux%20Shell%22%2C%22slug%22%3A%22shell%22%2C%22chapters%22%3A%5B%7B%22id%22%3A56%2C%22name%22%3A%22Bash%22%2C%22slug%22%3A%22bash%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A57%2C%22name%22%3A%22Text%20Processing%22%2C%22slug%22%3A%22textpro%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A114%2C%22name%22%3A%22Arrays%20in%20Bash%22%2C%22slug%22%3A%22arrays-in-bash%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A115%2C%22name%22%3A%22Grep%20Sed%20Awk%22%2C%22slug%22%3A%22grep-sed-awk%22%2C%22hidden%22%3Afalse%7D%5D%2C%22chapterDict%22%3A%7B%22bash%22%3A%7B%22id%22%3A56%2C%22name%22%3A%22Bash%22%2C%22slug%22%3A%22bash%22%2C%22hidden%22%3Afalse%7D%2C%22textpro%22%3A%7B%22id%22%3A57%2C%22name%22%3A%22Text%20Processing%22%2C%22slug%22%3A%22textpro%22%2C%22hidden%22%3Afalse%7D%2C%22arrays-in-bash%22%3A%7B%22id%22%3A114%2C%22name%22%3A%22Arrays%20in%20Bash%22%2C%22slug%22%3A%22arrays-in-bash%22%2C%22hidden%22%3Afalse%7D%2C%22grep-sed-awk%22%3A%7B%22id%22%3A115%2C%22name%22%3A%22Grep%20Sed%20Awk%22%2C%22slug%22%3A%22grep-sed-awk%22%2C%22hidden%22%3Afalse%7D%7D%7D%2C%22fp%22%3A%7B%22id%22%3A5%2C%22name%22%3A%22Functional%20Programming%22%2C%22slug%22%3A%22fp%22%2C%22chapters%22%3A%5B%7B%22id%22%3A27%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22intro%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A26%2C%22name%22%3A%22Recursion%22%2C%22slug%22%3A%22fp-recursion%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A45%2C%22name%22%3A%22Functional%20Structures%22%2C%22slug%22%3A%22ds%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A40%2C%22name%22%3A%22Memoization%20and%20DP%22%2C%22slug%22%3A%22dp%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A50%2C%22name%22%3A%22Persistent%20Structures%22%2C%22slug%22%3A%22persistent-ds%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A41%2C%22name%22%3A%22Ad%20Hoc%22%2C%22slug%22%3A%22misc%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A46%2C%22name%22%3A%22Parsers%22%2C%22slug%22%3A%22parsers%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A48%2C%22name%22%3A%22Interpreter%20and%20Compilers%22%2C%22slug%22%3A%22compilers%22%2C%22hidden%22%3Afalse%7D%5D%2C%22chapterDict%22%3A%7B%22intro%22%3A%7B%22id%22%3A27%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22intro%22%2C%22hidden%22%3Afalse%7D%2C%22fp-recursion%22%3A%7B%22id%22%3A26%2C%22name%22%3A%22Recursion%22%2C%22slug%22%3A%22fp-recursion%22%2C%22hidden%22%3Afalse%7D%2C%22ds%22%3A%7B%22id%22%3A45%2C%22name%22%3A%22Functional%20Structures%22%2C%22slug%22%3A%22ds%22%2C%22hidden%22%3Afalse%7D%2C%22dp%22%3A%7B%22id%22%3A40%2C%22name%22%3A%22Memoization%20and%20DP%22%2C%22slug%22%3A%22dp%22%2C%22hidden%22%3Afalse%7D%2C%22persistent-ds%22%3A%7B%22id%22%3A50%2C%22name%22%3A%22Persistent%20Structures%22%2C%22slug%22%3A%22persistent-ds%22%2C%22hidden%22%3Afalse%7D%2C%22misc%22%3A%7B%22id%22%3A41%2C%22name%22%3A%22Ad%20Hoc%22%2C%22slug%22%3A%22misc%22%2C%22hidden%22%3Afalse%7D%2C%22parsers%22%3A%7B%22id%22%3A46%2C%22name%22%3A%22Parsers%22%2C%22slug%22%3A%22parsers%22%2C%22hidden%22%3Afalse%7D%2C%22compilers%22%3A%7B%22id%22%3A48%2C%22name%22%3A%22Interpreter%20and%20Compilers%22%2C%22slug%22%3A%22compilers%22%2C%22hidden%22%3Afalse%7D%7D%7D%2C%22regex%22%3A%7B%22id%22%3A19%2C%22name%22%3A%22Regex%22%2C%22slug%22%3A%22regex%22%2C%22chapters%22%3A%5B%7B%22id%22%3A137%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22re-introduction%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A141%2C%22name%22%3A%22Character%20Class%22%2C%22slug%22%3A%22re-character-class%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A142%2C%22name%22%3A%22Repetitions%22%2C%22slug%22%3A%22re-repetitions%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A140%2C%22name%22%3A%22Grouping%20and%20Capturing%22%2C%22slug%22%3A%22grouping-and-capturing%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A144%2C%22name%22%3A%22Backreferences%22%2C%22slug%22%3A%22backreferences%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A145%2C%22name%22%3A%22Assertions%22%2C%22slug%22%3A%22assertions%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A138%2C%22name%22%3A%22Applications%22%2C%22slug%22%3A%22re-applications%22%2C%22hidden%22%3Afalse%7D%5D%2C%22chapterDict%22%3A%7B%22re-introduction%22%3A%7B%22id%22%3A137%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22re-introduction%22%2C%22hidden%22%3Afalse%7D%2C%22re-character-class%22%3A%7B%22id%22%3A141%2C%22name%22%3A%22Character%20Class%22%2C%22slug%22%3A%22re-character-class%22%2C%22hidden%22%3Afalse%7D%2C%22re-repetitions%22%3A%7B%22id%22%3A142%2C%22name%22%3A%22Repetitions%22%2C%22slug%22%3A%22re-repetitions%22%2C%22hidden%22%3Afalse%7D%2C%22grouping-and-capturing%22%3A%7B%22id%22%3A140%2C%22name%22%3A%22Grouping%20and%20Capturing%22%2C%22slug%22%3A%22grouping-and-capturing%22%2C%22hidden%22%3Afalse%7D%2C%22backreferences%22%3A%7B%22id%22%3A144%2C%22name%22%3A%22Backreferences%22%2C%22slug%22%3A%22backreferences%22%2C%22hidden%22%3Afalse%7D%2C%22assertions%22%3A%7B%22id%22%3A145%2C%22name%22%3A%22Assertions%22%2C%22slug%22%3A%22assertions%22%2C%22hidden%22%3Afalse%7D%2C%22re-applications%22%3A%7B%22id%22%3A138%2C%22name%22%3A%22Applications%22%2C%22slug%22%3A%22re-applications%22%2C%22hidden%22%3Afalse%7D%7D%7D%2C%22general-programming%22%3A%7B%22id%22%3A26%2C%22name%22%3A%22General%20Programming%22%2C%22slug%22%3A%22general-programming%22%2C%22chapters%22%3A%5B%5D%2C%22chapterDict%22%3A%7B%7D%7D%2C%22security%22%3A%7B%22id%22%3A20%2C%22name%22%3A%22Security%22%2C%22slug%22%3A%22security%22%2C%22chapters%22%3A%5B%7B%22id%22%3A102%2C%22name%22%3A%22Functions%22%2C%22slug%22%3A%22functions%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A105%2C%22name%22%3A%22Terminology%20and%20Concepts%22%2C%22slug%22%3A%22concepts%22%2C%22hidden%22%3Afalse%7D%2C%7B%22id%22%3A31%2C%22name%22%3A%22Cryptography%22%2C%22slug%22%3A%22cryptography%22%2C%22hidden%22%3Afalse%7D%5D%2C%22chapterDict%22%3A%7B%22functions%22%3A%7B%22id%22%3A102%2C%22name%22%3A%22Functions%22%2C%22slug%22%3A%22functions%22%2C%22hidden%22%3Afalse%7D%2C%22concepts%22%3A%7B%22id%22%3A105%2C%22name%22%3A%22Terminology%20and%20Concepts%22%2C%22slug%22%3A%22concepts%22%2C%22hidden%22%3Afalse%7D%2C%22cryptography%22%3A%7B%22id%22%3A31%2C%22name%22%3A%22Cryptography%22%2C%22slug%22%3A%22cryptography%22%2C%22hidden%22%3Afalse%7D%7D%7D%7D%2C%22didInvalidate%22%3Afalse%7D%2C%22taxonomy%22%3A%7B%22level0%22%3A%5B%5D%2C%22level1%22%3A%7B%7D%2C%22level2%22%3A%7B%7D%2C%22level3%22%3A%7B%7D%2C%22dict%22%3A%7B%7D%7D%2C%22dashboard%22%3A%7B%22didInvalidate%22%3Afalse%2C%22hasData%22%3Afalse%2C%22showAllTracks%22%3Afalse%2C%22recentTracks%22%3A%5B%5D%2C%22trackGroups%22%3A%5B%5D%2C%22recommendedTracks%22%3A%5B%5D%2C%22recommendedContests%22%3A%5B%5D%2C%22recommendedChallenge%22%3A%7B%7D%7D%2C%22notifications%22%3A%7B%22summary%22%3A%7B%7D%2C%22list%22%3A%5B%5D%7D%2C%22messages%22%3A%7B%22threads%22%3A%5B%5D%7D%2C%22profile%22%3A%7B%22contestHistory%22%3A%7B%22list%22%3A%5B%5D%2C%22total%22%3A0%7D%2C%22badges%22%3A%5B%5D%2C%22scores%22%3A%7B%22ai%22%3A%7B%22track_id%22%3A2%2C%22name%22%3A%22Artificial%20Intelligence%22%2C%22slug%22%3A%22ai%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22badge_progress%22%3A%7B%22total_score%22%3A0%2C%22chapter_scores%22%3A%7B%22Bot%20Building%22%3A0%2C%22Statistics%20and%20Machine%20Learning%22%3A0%7D%2C%22chapter_scores_n%22%3A%7B%228%22%3A0%2C%2211%22%3A0%7D%2C%22min_total_score%22%3A150%2C%22min_chapter_score%22%3A50%7D%2C%22hacker_id%22%3A685431%2C%22score%22%3A0%2C%22rank%22%3A58220%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22algorithms%22%3A%7B%22track_id%22%3A3%2C%22name%22%3A%22Algorithms%22%2C%22slug%22%3A%22algorithms%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22badge_progress%22%3A%7B%22total_score%22%3A0%2C%22chapter_scores%22%3A%7B%22Graph%20Theory%22%3A0%2C%22Dynamic%20Programming%22%3A0%2C%22Sorting%22%3A0%7D%2C%22chapter_scores_n%22%3A%7B%2233%22%3A0%2C%2235%22%3A0%2C%2238%22%3A0%7D%2C%22min_total_score%22%3A150%2C%22min_chapter_score%22%3A20%7D%2C%22hacker_id%22%3A685431%2C%22score%22%3A0%2C%22rank%22%3A947683%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22fp%22%3A%7B%22track_id%22%3A5%2C%22name%22%3A%22Functional%20Programming%22%2C%22slug%22%3A%22fp%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22badge_progress%22%3A%7B%22total_score%22%3A0%2C%22chapter_scores%22%3A%7B%22Recursion%22%3A0%2C%22Introduction%22%3A0%2C%22Ad%20Hoc%22%3A0%7D%2C%22chapter_scores_n%22%3A%7B%2226%22%3A0%2C%2227%22%3A0%2C%2241%22%3A0%7D%2C%22min_total_score%22%3A150%2C%22min_chapter_score%22%3A20%7D%2C%22hacker_id%22%3A685431%2C%22score%22%3A0%2C%22rank%22%3A51970%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22shell%22%3A%7B%22track_id%22%3A6%2C%22name%22%3A%22Linux%20Shell%22%2C%22slug%22%3A%22shell%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22hacker_id%22%3A685431%2C%22score%22%3A0%2C%22rank%22%3A81177%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22python%22%3A%7B%22track_id%22%3A12%2C%22name%22%3A%22Python%22%2C%22slug%22%3A%22python%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22hacker_id%22%3A685431%2C%22score%22%3A0%2C%22rank%22%3A215591%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22cpp%22%3A%7B%22track_id%22%3A13%2C%22name%22%3A%22C++%22%2C%22slug%22%3A%22cpp%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22hacker_id%22%3A685431%2C%22score%22%3A0%2C%22rank%22%3A230272%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22ruby%22%3A%7B%22track_id%22%3A14%2C%22name%22%3A%22Ruby%22%2C%22slug%22%3A%22ruby%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22hacker_id%22%3A685431%2C%22score%22%3A0%2C%22rank%22%3A30532%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22java%22%3A%7B%22track_id%22%3A15%2C%22name%22%3A%22Java%22%2C%22slug%22%3A%22java%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22hacker_id%22%3A685431%2C%22score%22%3A41.33%2C%22rank%22%3A136302%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22databases%22%3A%7B%22track_id%22%3A16%2C%22name%22%3A%22Databases%22%2C%22slug%22%3A%22databases%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22hacker_id%22%3A685431%2C%22score%22%3A0%2C%22rank%22%3A42501%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22data-structures%22%3A%7B%22track_id%22%3A17%2C%22name%22%3A%22Data%20Structures%22%2C%22slug%22%3A%22data-structures%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22hacker_id%22%3A685431%2C%22score%22%3A0%2C%22rank%22%3A314823%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22sql%22%3A%7B%22track_id%22%3A18%2C%22name%22%3A%22SQL%22%2C%22slug%22%3A%22sql%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22hacker_id%22%3A685431%2C%22score%22%3A0%2C%22rank%22%3A204263%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22regex%22%3A%7B%22track_id%22%3A19%2C%22name%22%3A%22Regex%22%2C%22slug%22%3A%22regex%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22hacker_id%22%3A685431%2C%22score%22%3A0%2C%22rank%22%3A36304%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22security%22%3A%7B%22track_id%22%3A20%2C%22name%22%3A%22Security%22%2C%22slug%22%3A%22security%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22hacker_id%22%3A685431%2C%22score%22%3A0%2C%22rank%22%3A23389%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22distributed-systems%22%3A%7B%22track_id%22%3A21%2C%22name%22%3A%22Distributed%20Systems%22%2C%22slug%22%3A%22distributed-systems%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22hacker_id%22%3A685431%2C%22score%22%3A0%2C%22rank%22%3A28596%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22mathematics%22%3A%7B%22track_id%22%3A22%2C%22name%22%3A%22Mathematics%22%2C%22slug%22%3A%22mathematics%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22hacker_id%22%3A685431%2C%22score%22%3A0%2C%22rank%22%3A114008%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22tutorials%22%3A%7B%22track_id%22%3A24%2C%22name%22%3A%22Tutorials%22%2C%22slug%22%3A%22tutorials%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22hacker_id%22%3A685431%2C%22score%22%3A0%2C%22rank%22%3A470460%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22general-programming%22%3A%7B%22track_id%22%3A26%2C%22name%22%3A%22General%20Programming%22%2C%22slug%22%3A%22general-programming%22%2C%22practice%22%3A%7B%22service_status%22%3Atrue%2C%22hacker_id%22%3A685431%2C%22score%22%3A0%2C%22rank%22%3A1%2C%22location_on_leaderboard%22%3A%5B%5D%7D%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3A%7B%22gold%22%3A0%2C%22silver%22%3A0%2C%22bronze%22%3A0%7D%7D%7D%2C%22general%22%3A%7B%22track_id%22%3A0%2C%22name%22%3A%22General%22%2C%22slug%22%3A%22general%22%2C%22contest%22%3A%7B%22score%22%3A0%2C%22rank%22%3A%22N/A%22%2C%22level%22%3A5%2C%22medals%22%3Anull%7D%7D%7D%2C%22rating%22%3A%5B%5D%2C%22submissionHistory%22%3A%7B%7D%2C%22recentChallenges%22%3A%7B%22list%22%3A%5B%5D%2C%22cursor%22%3Anull%2C%22lastPage%22%3Atrue%7D%2C%22recentDiscussions%22%3A%5B%5D%2C%22hackerLevel%22%3A%7B%7D%2C%22threadId%22%3Anull%2C%22hackerLevelProcessed%22%3Afalse%2C%22id%22%3A685431%2C%22username%22%3A%22vKING%22%2C%22country%22%3A%22India%22%2C%22school%22%3Anull%2C%22languages%22%3A%5B%5B%22java%22%2C%2237%22%5D%5D%2C%22created_at%22%3A%222015-09-12T22%3A00%3A48.000Z%22%2C%22level%22%3A1%2C%22email%22%3A%[email protected]%22%2C%22fb_uid%22%3Anull%2C%22gh_uid%22%3Anull%2C%22li_uid%22%3Anull%2C%22is_admin%22%3Afalse%2C%22is_support_admin%22%3Afalse%2C%22avatar%22%3A%22https%3A//d3rpyts3de3lx8.cloudfront.net/hackerrank/assets/gravatar.jpg%22%2C%22website%22%3A%22%22%2C%22short_bio%22%3Anull%2C%22username_change_count%22%3Anull%2C%22name%22%3A%22vijay%20singh%22%2C%22personal_first_name%22%3A%22vijay%22%2C%22personal_last_name%22%3A%22singh%22%2C%22company%22%3Anull%2C%22local_language%22%3Anull%2C%22has_avatar_url%22%3Afalse%2C%22hide_account_checklist%22%3Anull%2C%22spam_user%22%3Anull%2C%22job_title%22%3A%22%22%2C%22hacker_iq%22%3A70%2C%22errors%22%3A%7B%7D%2C%22confirmed%22%3Atrue%2C%22facebook_allow_opengraph%22%3Anull%2C%22tsize%22%3Anull%2C%22is_migrated%22%3Afalse%2C%22facebook_opengraph_access_available%22%3Anull%2C%22promised_login_time%22%3Anull%2C%22last_logout_feedback%22%3Anull%2C%22chat_enabled%22%3Atrue%2C%22tour_done%22%3Atrue%2C%22username_autoset%22%3Anull%2C%22key_prefix%22%3A%22685431-52ab14f7bcb3145b2fed2cc23d08979c5df4b426%22%2C%22notifications_url%22%3A%22https%3A//notify.hackerrank.com/subscribe/685431-85b91b0283c1657af24e602849f9be13bc4db86d%22%2C%22resume_url%22%3Anull%2C%22relocate%22%3Anull%2C%22phone%22%3Anull%2C%22phone_number%22%3Anull%2C%22blog_url%22%3Anull%2C%22github_url%22%3Anull%2C%22linkedin_url%22%3Anull%2C%22college_major%22%3Anull%2C%22college_major_id%22%3Anull%2C%22jobs_consent%22%3Anull%2C%22graduation_year%22%3Anull%2C%22college_year%22%3Anull%2C%22college_majors%22%3Anull%2C%22intro_screen_onboarding_done%22%3Anull%2C%22related_topics_tour_done%22%3Anull%2C%22company_challenge_breadcrumb_tour_done%22%3Anull%2C%22contest_reminders_banner_selected%22%3Anull%2C%22hometown%22%3Anull%2C%22employment_title%22%3Anull%2C%22employment_years%22%3Anull%2C%22college_roll_no%22%3Anull%2C%22college_semester%22%3Anull%2C%22college_course%22%3Anull%2C%22college_cgpa%22%3Anull%2C%22city%22%3A%22Puducherry%22%2C%22state%22%3Anull%2C%22username_change_max%22%3A2%2C%22has_viewed_feed_page%22%3Atrue%2C%22address%22%3Anull%2C%22rewards_alpha_onboarding_done%22%3Anull%2C%22has_verified_phone_number%22%3Afalse%2C%22country_of_residence%22%3Anull%2C%22has_seen_ch_full_screen_intro%22%3Anull%2C%22experience_status%22%3Anull%2C%22address_line2%22%3Anull%2C%22address_city%22%3Anull%2C%22address_state%22%3Anull%2C%22address_zip%22%3Anull%2C%22us_work_eligibility%22%3Anull%2C%22us_work_eligibility_2%22%3Anull%2C%22is_professional%22%3Anull%2C%22years_of_experience%22%3Anull%2C%22us_citizenship%22%3Anull%2C%22us_citizenship_2%22%3Anull%2C%22gender%22%3Anull%2C%22is_campus_rep%22%3Afalse%2C%22hacko_amount%22%3A135%2C%22timezone%22%3A%22Asia/Calcutta%22%2C%22us_work_prefs%22%3Anull%2C%22ca_hide_companies%22%3A%5B%5D%2C%22jobs_joining_date%22%3Anull%2C%22jobs_prefered_roles%22%3Anull%2C%22jobs_top_skills%22%3Anull%2C%22state_id%22%3Anull%2C%22jobs_complete_us_visa%22%3Anull%2C%22jobs_us_visa_other%22%3Anull%2C%22preferred_job_locations%22%3A%5B%5D%2C%22uk_work_eligibility%22%3Anull%2C%22has_attempted_common_app%22%3Afalse%2C%22has_common_app_access%22%3Afalse%2C%22stryker_consent%22%3Anull%2C%22work_ex_reset_flag%22%3Anull%2C%22job_board_consent%22%3Anull%2C%22is_organizer%22%3Anull%2C%22bookmarks_count%22%3A0%2C%22jobs_headline%22%3Anull%2C%22role_number%22%3Anull%2C%22taxonomy_onboarding_done%22%3Anull%2C%22hackerlevel_pd_onboarding_done%22%3Anull%2C%22dashboard_survey_preference%22%3Anull%2C%22has_solved_a_challenge%22%3Atrue%2C%22status_solve_me_first%22%3Anull%2C%22source%22%3Anull%2C%22track_nux_mixpanel%22%3Anull%2C%22registration_custom_data%22%3Anull%2C%22secondary_emails%22%3A%5B%5D%7D%2C%22viewProfile%22%3A%7B%22contestHistory%22%3A%7B%22list%22%3A%5B%5D%2C%22total%22%3A0%7D%2C%22badges%22%3A%5B%5D%2C%22scores%22%3A%7B%7D%2C%22rating%22%3A%5B%5D%2C%22submissionHistory%22%3A%7B%7D%2C%22recentChallenges%22%3A%7B%22list%22%3A%5B%5D%2C%22cursor%22%3Anull%2C%22lastPage%22%3Atrue%7D%2C%22recentDiscussions%22%3A%5B%5D%2C%22hackerLevel%22%3A%7B%7D%2C%22threadId%22%3Anull%2C%22hackerLevelProcessed%22%3Afalse%7D%2C%22calendar%22%3A%7B%22allEvents%22%3A%7B%22events%22%3A%5B%5D%7D%7D%2C%22contests%22%3A%7B%22active%22%3A%7B%22total%22%3A%7B%7D%2C%22track%22%3A%7B%7D%2C%22didInvalidate%22%3Afalse%2C%22partialData%22%3Afalse%2C%22loadedFilter%22%3A%7B%7D%7D%2C%22allContest%22%3A%7B%22contest%22%3A%7B%221%22%3A%7B%22id%22%3A1%2C%22name%22%3A%22Master%22%2C%22slug%22%3A%22master%22%2C%22created_at%22%3A%222012-07-19T17%3A13%3A20.000Z%22%2C%22updated_at%22%3A%222017-05-29T21%3A35%3A51.000Z%22%2C%22starttime%22%3Anull%2C%22endtime%22%3Anull%2C%22timezone%22%3A%22America/Los_Angeles%22%2C%22homepage%22%3A%22%22%2C%22tagline%22%3A%22%22%2C%22description%22%3A%22%22%2C%22homepage_background_color%22%3A%22%22%2C%22notification%22%3Anull%2C%22template_id%22%3A454%2C%22expose_stats%22%3Anull%2C%22public%22%3Afalse%2C%22team_event%22%3Afalse%2C%22rating_category%22%3Anull%2C%22is_rating_updated%22%3Afalse%2C%22leaderboard_backend%22%3Anull%2C%22leaderboard_format%22%3A%22%22%2C%22primary_track_id%22%3Anull%2C%22college_public%22%3Afalse%2C%22rated%22%3Afalse%2C%22is_multi_round%22%3Afalse%2C%22parent_contest_id%22%3Anull%2C%22primary_tag_id%22%3Anull%2C%22started%22%3Atrue%2C%22ended%22%3Afalse%2C%22epoch_endtime%22%3A0%2C%22epoch_starttime%22%3A0%2C%22time_left%22%3Anull%2C%22hide_difficulty%22%3Anull%2C%22has_tracks%22%3Atrue%2C%22archived%22%3Afalse%2C%22leaderboard_type%22%3A%22country%22%2C%22kind%22%3A%22%22%2C%22leaderboard_freeze_time%22%3Anull%2C%22show_penalty%22%3Afalse%2C%22track%22%3Anull%2C%22hide_navigation%22%3Anull%2C%22contest_broadcast%22%3Anull%2C%22hide_leaderboard%22%3Anull%2C%22hide_submissions%22%3Anull%2C%22leaderboard_out_of_sync%22%3Anull%2C%22leaderboard_out_of_sync_message%22%3Anull%2C%22challenges_count%22%3Anull%2C%22show_participants_info%22%3Anull%2C%22custom_leaderboard_column_name%22%3Anull%2C%22disable_forum%22%3Afalse%2C%22disable_fsi%22%3Anull%2C%22has_codesprint_reg_page%22%3Anull%2C%22hidden%22%3Anull%2C%22comment_live_sync%22%3Anull%2C%22company_associated_contest%22%3Anull%2C%22limited_participants%22%3Anull%2C%22leaderboard_broadcast_message%22%3Anull%2C%22qualification_rule_type%22%3Anull%2C%22qualification_rule_value%22%3A0%2C%22qualification_rule_msg%22%3Anull%2C%22migration_status%22%3Anull%2C%22migration_disabled%22%3Anull%2C%22testers_contest%22%3Anull%2C%22time_limited_contest%22%3Afalse%2C%22hacker_timelimit%22%3Anull%2C%22school_leaderboard_enabled%22%3Afalse%2C%22organization_type%22%3Anull%2C%22organization_name%22%3Anull%2C%22categories%22%3A%5B%7B%22id%22%3A24%2C%22name%22%3A%22Tutorials%22%2C%22slug%22%3A%22tutorials%22%2C%22children%22%3A%5B%7B%22id%22%3A%2224-146%22%2C%22name%22%3A%2230%20Days%20of%20Code%22%2C%22slug%22%3A%2230-days-of-code%22%2C%22priority%22%3A10000%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2224-149%22%2C%22name%22%3A%22Cracking%20the%20Coding%20Interview%22%2C%22slug%22%3A%22cracking-the-coding-interview%22%2C%22priority%22%3A100%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3A20%7D%2C%7B%22id%22%3A%2224-147%22%2C%22name%22%3A%2210%20Days%20of%20Statistics%22%2C%22slug%22%3A%2210-days-of-statistics%22%2C%22priority%22%3A1%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2224-148%22%2C%22name%22%3A%2210%20Days%20of%20Javascript%22%2C%22slug%22%3A%2210-days-of-javascript%22%2C%22priority%22%3A1%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2224-150%22%2C%22name%22%3A%22LinkedIn%20Placements%22%2C%22slug%22%3A%22linkedin-placements%22%2C%22priority%22%3A1%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%5D%7D%2C%7B%22id%22%3A3%2C%22name%22%3A%22Algorithms%22%2C%22slug%22%3A%22algorithms%22%2C%22children%22%3A%5B%7B%22id%22%3A%223-43%22%2C%22name%22%3A%22Warmup%22%2C%22slug%22%3A%22warmup%22%2C%22priority%22%3A22%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%223-108%22%2C%22name%22%3A%22Implementation%22%2C%22slug%22%3A%22implementation%22%2C%22priority%22%3A21%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%223-34%22%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22strings%22%2C%22priority%22%3A20%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%223-38%22%2C%22name%22%3A%22Sorting%22%2C%22slug%22%3A%22arrays-and-sorting%22%2C%22priority%22%3A20%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%223-36%22%2C%22name%22%3A%22Search%22%2C%22slug%22%3A%22search%22%2C%22priority%22%3A19%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%223-33%22%2C%22name%22%3A%22Graph%20Theory%22%2C%22slug%22%3A%22graph-theory%22%2C%22priority%22%3A17%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%223-59%22%2C%22name%22%3A%22Greedy%22%2C%22slug%22%3A%22greedy%22%2C%22priority%22%3A16%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%223-35%22%2C%22name%22%3A%22Dynamic%20Programming%22%2C%22slug%22%3A%22dynamic-programming%22%2C%22priority%22%3A15%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%223-151%22%2C%22name%22%3A%22Constructive%20Algorithms%22%2C%22slug%22%3A%22constructive-algorithms%22%2C%22priority%22%3A15%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%223-30%22%2C%22name%22%3A%22Bit%20Manipulation%22%2C%22slug%22%3A%22bit-manipulation%22%2C%22priority%22%3A14%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%223-153%22%2C%22name%22%3A%22Recursion%22%2C%22slug%22%3A%22recursion%22%2C%22priority%22%3A12%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%223-47%22%2C%22name%22%3A%22Game%20Theory%22%2C%22slug%22%3A%22game-theory%22%2C%22priority%22%3A7%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%223-29%22%2C%22name%22%3A%22NP%20Complete%22%2C%22slug%22%3A%22np-complete-problems%22%2C%22priority%22%3A6%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%5D%7D%2C%7B%22id%22%3A17%2C%22name%22%3A%22Data%20Structures%22%2C%22slug%22%3A%22data-structures%22%2C%22children%22%3A%5B%7B%22id%22%3A%2217-134%22%2C%22name%22%3A%22Arrays%22%2C%22slug%22%3A%22arrays%22%2C%22priority%22%3A11%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2217-39%22%2C%22name%22%3A%22Linked%20Lists%22%2C%22slug%22%3A%22linked-lists%22%2C%22priority%22%3A10%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2217-96%22%2C%22name%22%3A%22Trees%22%2C%22slug%22%3A%22trees%22%2C%22priority%22%3A9%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2217-119%22%2C%22name%22%3A%22Balanced%20Trees%22%2C%22slug%22%3A%22balanced-trees%22%2C%22priority%22%3A7%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2217-97%22%2C%22name%22%3A%22Stacks%22%2C%22slug%22%3A%22stacks%22%2C%22priority%22%3A2%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2217-98%22%2C%22name%22%3A%22Queues%22%2C%22slug%22%3A%22queues%22%2C%22priority%22%3A2%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2217-99%22%2C%22name%22%3A%22Heap%22%2C%22slug%22%3A%22heap%22%2C%22priority%22%3A2%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2217-100%22%2C%22name%22%3A%22Disjoint%20Set%22%2C%22slug%22%3A%22disjoint-set%22%2C%22priority%22%3A2%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2217-113%22%2C%22name%22%3A%22Multiple%20Choice%22%2C%22slug%22%3A%22multiple-choice%22%2C%22priority%22%3A1%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2217-118%22%2C%22name%22%3A%22Trie%22%2C%22slug%22%3A%22trie%22%2C%22priority%22%3A1%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2217-32%22%2C%22name%22%3A%22Advanced%22%2C%22slug%22%3A%22data-structures%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%5D%7D%2C%7B%22id%22%3A22%2C%22name%22%3A%22Mathematics%22%2C%22slug%22%3A%22mathematics%22%2C%22children%22%3A%5B%7B%22id%22%3A%2222-109%22%2C%22name%22%3A%22Fundamentals%22%2C%22slug%22%3A%22fundamentals%22%2C%22priority%22%3A21%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2222-52%22%2C%22name%22%3A%22Number%20Theory%22%2C%22slug%22%3A%22number-theory%22%2C%22priority%22%3A12%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2222-51%22%2C%22name%22%3A%22Combinatorics%22%2C%22slug%22%3A%22combinatorics%22%2C%22priority%22%3A11%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2222-55%22%2C%22name%22%3A%22Algebra%22%2C%22slug%22%3A%22algebra%22%2C%22priority%22%3A10%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2222-54%22%2C%22name%22%3A%22Geometry%22%2C%22slug%22%3A%22geometry%22%2C%22priority%22%3A9%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2222-53%22%2C%22name%22%3A%22Probability%22%2C%22slug%22%3A%22probability%22%2C%22priority%22%3A8%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2222-128%22%2C%22name%22%3A%22Linear%20Algebra%20Foundations%22%2C%22slug%22%3A%22linear-algebra-foundations%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%5D%7D%2C%7B%22id%22%3A2%2C%22name%22%3A%22Artificial%20Intelligence%22%2C%22slug%22%3A%22ai%22%2C%22children%22%3A%5B%7B%22id%22%3A%222-8%22%2C%22name%22%3A%22Bot%20Building%22%2C%22slug%22%3A%22ai-introduction%22%2C%22priority%22%3A7%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%222-9%22%2C%22name%22%3A%22A*%20Search%22%2C%22slug%22%3A%22astar-search%22%2C%22priority%22%3A6%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%222-10%22%2C%22name%22%3A%22Alpha%20Beta%20Pruning%22%2C%22slug%22%3A%22alpha-beta-pruning%22%2C%22priority%22%3A5%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%222-14%22%2C%22name%22%3A%22Combinatorial%20Search%22%2C%22slug%22%3A%22combinatorial-search-theory%22%2C%22priority%22%3A4%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%222-13%22%2C%22name%22%3A%22Games%22%2C%22slug%22%3A%22richman-games%22%2C%22priority%22%3A3%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%222-11%22%2C%22name%22%3A%22Statistics%20and%20Machine%20Learning%22%2C%22slug%22%3A%22machine-learning%22%2C%22priority%22%3A1%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%222-44%22%2C%22name%22%3A%22Digital%20Image%20Analysis%22%2C%22slug%22%3A%22image-analysis%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%222-49%22%2C%22name%22%3A%22Natural%20Language%20Processing%22%2C%22slug%22%3A%22nlp%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%222-129%22%2C%22name%22%3A%22Probability%20%26%20Statistics%20-%20Foundations%22%2C%22slug%22%3A%22statistics-foundations%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%5D%7D%2C%7B%22id%22%3A13%2C%22name%22%3A%22C++%22%2C%22slug%22%3A%22cpp%22%2C%22children%22%3A%5B%7B%22id%22%3A%2213-77%22%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22cpp-introduction%22%2C%22priority%22%3A100%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2213-76%22%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22cpp-strings%22%2C%22priority%22%3A99%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2213-78%22%2C%22name%22%3A%22Classes%22%2C%22slug%22%3A%22classes%22%2C%22priority%22%3A98%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2213-116%22%2C%22name%22%3A%22STL%22%2C%22slug%22%3A%22stl%22%2C%22priority%22%3A97%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2213-127%22%2C%22name%22%3A%22Inheritance%22%2C%22slug%22%3A%22inheritance%22%2C%22priority%22%3A96%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2213-152%22%2C%22name%22%3A%22Other%20Concepts%22%2C%22slug%22%3A%22other-concepts%22%2C%22priority%22%3A95%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%5D%7D%2C%7B%22id%22%3A15%2C%22name%22%3A%22Java%22%2C%22slug%22%3A%22java%22%2C%22children%22%3A%5B%7B%22id%22%3A%2215-80%22%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22java-introduction%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2215-82%22%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22java-strings%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2215-83%22%2C%22name%22%3A%22BigNumber%22%2C%22slug%22%3A%22bignumber%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2215-84%22%2C%22name%22%3A%22Data%20Structures%22%2C%22slug%22%3A%22java-data-structure%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2215-85%22%2C%22name%22%3A%22Object%20Oriented%20Programming%22%2C%22slug%22%3A%22oop%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2215-106%22%2C%22name%22%3A%22Exception%20Handling%22%2C%22slug%22%3A%22handling-exceptions%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2215-136%22%2C%22name%22%3A%22Advanced%22%2C%22slug%22%3A%22java-advanced%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%5D%7D%2C%7B%22id%22%3A12%2C%22name%22%3A%22Python%22%2C%22slug%22%3A%22python%22%2C%22children%22%3A%5B%7B%22id%22%3A%2212-73%22%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22py-introduction%22%2C%22priority%22%3A10%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2212-74%22%2C%22name%22%3A%22Basic%20Data%20Types%22%2C%22slug%22%3A%22py-basic-data-types%22%2C%22priority%22%3A9%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2212-75%22%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22py-strings%22%2C%22priority%22%3A8%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2212-120%22%2C%22name%22%3A%22Sets%22%2C%22slug%22%3A%22py-sets%22%2C%22priority%22%3A7%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2212-121%22%2C%22name%22%3A%22Math%22%2C%22slug%22%3A%22py-math%22%2C%22priority%22%3A7%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2212-122%22%2C%22name%22%3A%22Itertools%22%2C%22slug%22%3A%22py-itertools%22%2C%22priority%22%3A7%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2212-123%22%2C%22name%22%3A%22Collections%22%2C%22slug%22%3A%22py-collections%22%2C%22priority%22%3A7%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2212-124%22%2C%22name%22%3A%22Date%20and%20Time%22%2C%22slug%22%3A%22py-date-time%22%2C%22priority%22%3A7%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2212-126%22%2C%22name%22%3A%22Errors%20and%20Exceptions%22%2C%22slug%22%3A%22errors-exceptions%22%2C%22priority%22%3A7%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2212-42%22%2C%22name%22%3A%22Classes%22%2C%22slug%22%3A%22py-classes%22%2C%22priority%22%3A6%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2212-125%22%2C%22name%22%3A%22Built-Ins%22%2C%22slug%22%3A%22py-built-ins%22%2C%22priority%22%3A2%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2212-87%22%2C%22name%22%3A%22Python%20Functionals%22%2C%22slug%22%3A%22py-functionals%22%2C%22priority%22%3A1%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2212-88%22%2C%22name%22%3A%22Regex%20and%20Parsing%22%2C%22slug%22%3A%22py-regex%22%2C%22priority%22%3A1%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2212-89%22%2C%22name%22%3A%22XML%22%2C%22slug%22%3A%22xml%22%2C%22priority%22%3A1%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2212-90%22%2C%22name%22%3A%22Closures%20and%20Decorators%22%2C%22slug%22%3A%22closures-and-decorators%22%2C%22priority%22%3A1%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2212-139%22%2C%22name%22%3A%22Numpy%22%2C%22slug%22%3A%22numpy%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%5D%7D%2C%7B%22id%22%3A14%2C%22name%22%3A%22Ruby%22%2C%22slug%22%3A%22ruby%22%2C%22children%22%3A%5B%7B%22id%22%3A%2214-72%22%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22ruby-tutorials%22%2C%22priority%22%3A10%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2214-86%22%2C%22name%22%3A%22Control%20Structures%22%2C%22slug%22%3A%22control-structures%22%2C%22priority%22%3A9%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2214-79%22%2C%22name%22%3A%22Arrays%20%26%20Hashes%22%2C%22slug%22%3A%22ruby-arrays%22%2C%22priority%22%3A8%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2214-107%22%2C%22name%22%3A%22Enumerables%22%2C%22slug%22%3A%22ruby-enumerables%22%2C%22priority%22%3A7%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2214-112%22%2C%22name%22%3A%22Methods%22%2C%22slug%22%3A%22ruby-methods%22%2C%22priority%22%3A6%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2214-135%22%2C%22name%22%3A%22Strings%22%2C%22slug%22%3A%22ruby-strings%22%2C%22priority%22%3A5%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%5D%7D%2C%7B%22id%22%3A18%2C%22name%22%3A%22SQL%22%2C%22slug%22%3A%22sql%22%2C%22children%22%3A%5B%7B%22id%22%3A%2218-92%22%2C%22name%22%3A%22Basic%20Select%22%2C%22slug%22%3A%22select%22%2C%22priority%22%3A10%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2218-132%22%2C%22name%22%3A%22Advanced%20Select%22%2C%22slug%22%3A%22advanced-select%22%2C%22priority%22%3A9%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2218-95%22%2C%22name%22%3A%22Aggregation%22%2C%22slug%22%3A%22aggregation%22%2C%22priority%22%3A8%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2218-94%22%2C%22name%22%3A%22Basic%20Join%22%2C%22slug%22%3A%22join%22%2C%22priority%22%3A6%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2218-133%22%2C%22name%22%3A%22Advanced%20Join%22%2C%22slug%22%3A%22advanced-join%22%2C%22priority%22%3A4%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2218-143%22%2C%22name%22%3A%22Alternative%20Queries%22%2C%22slug%22%3A%22alternative-queries%22%2C%22priority%22%3A2%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%5D%7D%2C%7B%22id%22%3A16%2C%22name%22%3A%22Databases%22%2C%22slug%22%3A%22databases%22%2C%22children%22%3A%5B%7B%22id%22%3A%2216-91%22%2C%22name%22%3A%22Relational%20Algebra%22%2C%22slug%22%3A%22relational-algebra%22%2C%22priority%22%3A2%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2216-93%22%2C%22name%22%3A%22Indexes%22%2C%22slug%22%3A%22indexes%22%2C%22priority%22%3A1%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2216-117%22%2C%22name%22%3A%22OLAP%22%2C%22slug%22%3A%22olap%22%2C%22priority%22%3A1%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2216-101%22%2C%22name%22%3A%22Set%20and%20Algebra%22%2C%22slug%22%3A%22set-and-algebra%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2216-130%22%2C%22name%22%3A%22NoSQL%20-%20XML%2C%20MapReduce%22%2C%22slug%22%3A%22xpath-queries%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2216-131%22%2C%22name%22%3A%22Database%20Normalization%22%2C%22slug%22%3A%22database-normalization%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%5D%7D%2C%7B%22id%22%3A21%2C%22name%22%3A%22Distributed%20Systems%22%2C%22slug%22%3A%22distributed-systems%22%2C%22children%22%3A%5B%7B%22id%22%3A%2221-103%22%2C%22name%22%3A%22Multiple%20Choice%22%2C%22slug%22%3A%22distributed-mcq%22%2C%22priority%22%3A2%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2221-104%22%2C%22name%22%3A%22Client%20Server%22%2C%22slug%22%3A%22client-server%22%2C%22priority%22%3A1%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2221-111%22%2C%22name%22%3A%22MapReduce%20Basics%22%2C%22slug%22%3A%22mapreduce-basics%22%2C%22priority%22%3A1%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%5D%7D%2C%7B%22id%22%3A6%2C%22name%22%3A%22Linux%20Shell%22%2C%22slug%22%3A%22shell%22%2C%22children%22%3A%5B%7B%22id%22%3A%226-56%22%2C%22name%22%3A%22Bash%22%2C%22slug%22%3A%22bash%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%226-57%22%2C%22name%22%3A%22Text%20Processing%22%2C%22slug%22%3A%22textpro%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%226-114%22%2C%22name%22%3A%22Arrays%20in%20Bash%22%2C%22slug%22%3A%22arrays-in-bash%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%226-115%22%2C%22name%22%3A%22Grep%20Sed%20Awk%22%2C%22slug%22%3A%22grep-sed-awk%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%5D%7D%2C%7B%22id%22%3A5%2C%22name%22%3A%22Functional%20Programming%22%2C%22slug%22%3A%22fp%22%2C%22children%22%3A%5B%7B%22id%22%3A%225-27%22%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22intro%22%2C%22priority%22%3A80%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%225-26%22%2C%22name%22%3A%22Recursion%22%2C%22slug%22%3A%22fp-recursion%22%2C%22priority%22%3A70%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%225-45%22%2C%22name%22%3A%22Functional%20Structures%22%2C%22slug%22%3A%22ds%22%2C%22priority%22%3A60%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%225-40%22%2C%22name%22%3A%22Memoization%20and%20DP%22%2C%22slug%22%3A%22dp%22%2C%22priority%22%3A50%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%225-50%22%2C%22name%22%3A%22Persistent%20Structures%22%2C%22slug%22%3A%22persistent-ds%22%2C%22priority%22%3A40%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%225-41%22%2C%22name%22%3A%22Ad%20Hoc%22%2C%22slug%22%3A%22misc%22%2C%22priority%22%3A30%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%225-46%22%2C%22name%22%3A%22Parsers%22%2C%22slug%22%3A%22parsers%22%2C%22priority%22%3A20%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%225-48%22%2C%22name%22%3A%22Interpreter%20and%20Compilers%22%2C%22slug%22%3A%22compilers%22%2C%22priority%22%3A10%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%5D%7D%2C%7B%22id%22%3A19%2C%22name%22%3A%22Regex%22%2C%22slug%22%3A%22regex%22%2C%22children%22%3A%5B%7B%22id%22%3A%2219-137%22%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22re-introduction%22%2C%22priority%22%3A6%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2219-141%22%2C%22name%22%3A%22Character%20Class%22%2C%22slug%22%3A%22re-character-class%22%2C%22priority%22%3A5%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2219-142%22%2C%22name%22%3A%22Repetitions%22%2C%22slug%22%3A%22re-repetitions%22%2C%22priority%22%3A4%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2219-140%22%2C%22name%22%3A%22Grouping%20and%20Capturing%22%2C%22slug%22%3A%22grouping-and-capturing%22%2C%22priority%22%3A3%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2219-144%22%2C%22name%22%3A%22Backreferences%22%2C%22slug%22%3A%22backreferences%22%2C%22priority%22%3A2%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2219-145%22%2C%22name%22%3A%22Assertions%22%2C%22slug%22%3A%22assertions%22%2C%22priority%22%3A1%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2219-138%22%2C%22name%22%3A%22Applications%22%2C%22slug%22%3A%22re-applications%22%2C%22priority%22%3A0%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%5D%7D%2C%7B%22id%22%3A20%2C%22name%22%3A%22Security%22%2C%22slug%22%3A%22security%22%2C%22children%22%3A%5B%7B%22id%22%3A%2220-102%22%2C%22name%22%3A%22Functions%22%2C%22slug%22%3A%22functions%22%2C%22priority%22%3A100%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2220-105%22%2C%22name%22%3A%22Terminology%20and%20Concepts%22%2C%22slug%22%3A%22concepts%22%2C%22priority%22%3A99%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%2C%7B%22id%22%3A%2220-31%22%2C%22name%22%3A%22Cryptography%22%2C%22slug%22%3A%22cryptography%22%2C%22priority%22%3A5%2C%22order_challenge_by%22%3A1%2C%22challenges_per_page%22%3Anull%7D%5D%7D%2C%7B%22id%22%3A26%2C%22name%22%3A%22General%20Programming%22%2C%22slug%22%3A%22general-programming%22%2C%22children%22%3A%5B%5D%7D%5D%2C%22primary_tags%22%3A%5B%7B%22id%22%3A49%2C%22slug%22%3A%22np-complete-problems%22%2C%22name%22%3A%22NP%20Complete%20problems%22%2C%22is_track%22%3Atrue%2C%22weightage%22%3A12%2C%22ancestry%22%3Anull%2C%22priority%22%3A0%7D%2C%7B%22id%22%3A57%2C%22slug%22%3A%22normal-languages%22%2C%22name%22%3A%22Normal%20Languages%22%2C%22is_track%22%3Afalse%2C%22weightage%22%3A0%2C%22ancestry%22%3Anull%2C%22priority%22%3A0%7D%2C%7B%22id%22%3A8%2C%22slug%22%3A%22combinatorial-search-theory%22%2C%22name%22%3A%22Combinatorial%20Search%20Theory%22%2C%22is_track%22%3Atrue%2C%22weightage%22%3A3%2C%22ancestry%22%3Anull%2C%22priority%22%3A0%7D%2C%7B%22id%22%3A9%2C%22slug%22%3A%22richman-games%22%2C%22name%22%3A%22Richman%20Games%22%2C%22is_track%22%3Atrue%2C%22weightage%22%3A4%2C%22ancestry%22%3Anull%2C%22priority%22%3A0%7D%2C%7B%22id%22%3A14%2C%22slug%22%3A%22bit-manipulation%22%2C%22name%22%3A%22Bit%20Manipulation%22%2C%22is_track%22%3Atrue%2C%22weightage%22%3A10%2C%22ancestry%22%3A%224376/3081/55%22%2C%22priority%22%3A88%7D%2C%7B%22id%22%3A7%2C%22slug%22%3A%22search%22%2C%22name%22%3A%22Search%22%2C%22is_track%22%3Atrue%2C%22weightage%22%3A2%2C%22ancestry%22%3A%224376/3081/55%22%2C%22priority%22%3A98%7D%2C%7B%22id%22%3A6%2C%22slug%22%3A%22sorting%22%2C%22name%22%3A%22Sorting%22%2C%22is_track%22%3Atrue%2C%22weightage%22%3A1%2C%22ancestry%22%3A%224376/3081/55%22%2C%22priority%22%3A100%7D%2C%7B%22id%22%3A10%2C%22slug%22%3A%22dynamic-programming%22%2C%22name%22%3A%22Dynamic%20Programming%22%2C%22is_track%22%3Atrue%2C%22weightage%22%3A6%2C%22ancestry%22%3A%224376/3081/55%22%2C%22priority%22%3A90%7D%2C%7B%22id%22%3A11%2C%22slug%22%3A%22graph-theory%22%2C%22name%22%3A%22Graph%20Theory%22%2C%22is_track%22%3Atrue%2C%22weightage%22%3A7%2C%22ancestry%22%3A%224376/3081/55%22%2C%22priority%22%3A96%7D%2C%7B%22id%22%3A12%2C%22slug%22%3A%22strings%22%2C%22name%22%3A%22Strings%22%2C%22is_track%22%3Atrue%2C%22weightage%22%3A8%2C%22ancestry%22%3A%224376/3081/55%22%2C%22priority%22%3A94%7D%2C%7B%22id%22%3A58%2C%22slug%22%3A%22esoteric-languages%22%2C%22name%22%3A%22Esoteric%20Languages%22%2C%22is_track%22%3Atrue%2C%22weightage%22%3A0%2C%22ancestry%22%3Anull%2C%22priority%22%3A0%7D%2C%7B%22id%22%3A13%2C%22slug%22%3A%22math%22%2C%22name%22%3A%22Math%22%2C%22is_track%22%3Atrue%2C%22weightage%22%3A9%2C%22ancestry%22%3A%224376/3081%22%2C%22priority%22%3A0%7D%5D%2C%22effective_time_left%22%3Anull%2C%22effective_epoch_endtime%22%3Anull%2C%22apiTime%22%3A1506772804758%7D%7D%2C%22didInvalidate%22%3Afalse%7D%2C%22archived%22%3A%7B%22total%22%3A0%2C%22partialData%22%3Afalse%2C%22didInvalidate%22%3Afalse%2C%22page%22%3A%7B%7D%7D%2C%22college%22%3A%7B%22total%22%3A0%2C%22partialData%22%3Afalse%2C%22didInvalidate%22%3Afalse%2C%22page%22%3A%7B%7D%7D%2C%22currentContest%22%3A1%7D%2C%22rank%22%3A%7B%22badges%22%3A%7B%22didInvalidate%22%3Afalse%2C%22list%22%3A%5B%5D%7D%2C%22activities%22%3A%7B%22didInvalidate%22%3Afalse%2C%22total%22%3A0%2C%22submissions%22%3A%5B%5D%7D%2C%22ongoingContests%22%3A%7B%22didInvalidate%22%3Afalse%2C%22total%22%3A0%2C%22contests%22%3A%5B%5D%7D%2C%22recentContests%22%3A%7B%22didInvalidate%22%3Afalse%2C%22total%22%3A0%2C%22contests%22%3A%5B%5D%7D%2C%22upcomingContests%22%3A%7B%22didInvalidate%22%3Afalse%2C%22total%22%3A0%2C%22contests%22%3A%5B%5D%7D%7D%2C%22leaderboard%22%3A%7B%22hacker%22%3A%7B%7D%2C%22others%22%3A%7B%22didInvalidate%22%3Afalse%2C%22list%22%3A%7B%7D%7D%2C%22recommendations%22%3A%7B%22didInvalidate%22%3Afalse%2C%22recommendation%22%3A%7B%7D%7D%7D%2C%22challenges%22%3A%7B%22challengeList%22%3A%7B%22challengePages%22%3A%7B%22java-java-introduction-1-%22%3A%5B%22welcome-to-java%22%2C%22java-stdin-and-stdout-1%22%2C%22java-if-else%22%2C%22java-stdin-stdout%22%2C%22java-output-formatting%22%2C%22java-loops-i%22%2C%22java-loops%22%2C%22java-datatypes%22%2C%22java-end-of-file%22%2C%22java-static-initializer-block%22%5D%2C%22java-java-introduction--total%22%3A13%7D%2C%22current_track%22%3A%7B%22id%22%3A15%2C%22name%22%3A%22Java%22%2C%22slug%22%3A%22java%22%2C%22priority%22%3A9%2C%22descriptions%22%3A%22A%20strictly%20object-oriented%20language%20designed%20to%20write%20industry-standard%20code.%22%2C%22rewards_system_enabled%22%3Anull%7D%2C%22ancestoryId%22%3A%22%22%2C%22chapterSlug%22%3A%22java-introduction%22%2C%22filters%22%3A%22%22%2C%22tutorial_signed_up%22%3Atrue%7D%2C%22chapterList%22%3A%7B%22chapterListObj%22%3A%7B%7D%7D%2C%22challenge%22%3A%7B%22master/welcome-to-java%22%3A%7B%22detail%22%3A%7B%22solved%22%3Atrue%2C%22attempted%22%3Atrue%2C%22can_be_viewed%22%3Atrue%2C%22can_edit%22%3Anull%2C%22bookmarked%22%3Afalse%2C%22dynamic%22%3Afalse%2C%22has_started%22%3Atrue%2C%22has_ended%22%3Afalse%2C%22countdown_time%22%3A0%2C%22requirements_description%22%3Anull%2C%22max_score%22%3A3%2C%22active%22%3Atrue%2C%22epoch_starttime%22%3Anull%2C%22epoch_endtime%22%3Anull%2C%22time_left%22%3Anull%2C%22factor%22%3A3%2C%22expert_solution_status%22%3Afalse%2C%22custom_tabs%22%3Anull%2C%22is_skip_band_challenge%22%3Afalse%2C%22total_count%22%3A311636%2C%22solved_count%22%3A302974%2C%22success_ratio%22%3A0.9722047516974932%2C%22is_editorial_available%22%3Afalse%2C%22is_solution_unlocked%22%3Atrue%2C%22contest_slug%22%3A%22master%22%2C%22topics%22%3A%5B%5D%2C%22user_score%22%3A3%2C%22track%22%3A%7B%22id%22%3A80%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22java-introduction%22%2C%22track_id%22%3A15%2C%22track_name%22%3A%22Java%22%2C%22track_slug%22%3A%22java%22%2C%22rewards_system_enabled%22%3Anull%2C%22taxonomy%22%3A3%7D%2C%22id%22%3A7875%2C%22slug%22%3A%22welcome-to-java%22%2C%22name%22%3A%22Welcome%20to%20Java%21%22%2C%22status%22%3Anull%2C%22created_at%22%3A%222015-04-20T03%3A50%3A48.000Z%22%2C%22updated_at%22%3A%222017-03-02T12%3A12%3A01.000Z%22%2C%22kind%22%3A%22code%22%2C%22preview%22%3A%22Practice%20printing%20to%20stdout.%22%2C%22category%22%3A%22ai%22%2C%22deleted%22%3Afalse%2C%22company_id%22%3Anull%2C%22level%22%3A1%2C%22is_custom%22%3Afalse%2C%22player_count%22%3A2%2C%22custom_checker_language%22%3A%22%22%2C%22checker_program%22%3Anull%2C%22judgebot_language%22%3Anull%2C%22judgebot%22%3Anull%2C%22onboarding%22%3Anull%2C%22compile_and_test%22%3Atrue%2C%22is_text%22%3Afalse%2C%22custom%22%3Afalse%2C%22custom_case%22%3Atrue%2C%22submit_disabled%22%3Afalse%2C%22public_test_cases%22%3Atrue%2C%22public_solutions%22%3Atrue%2C%22can_solve%22%3Atrue%2C%22company%22%3Anull%2C%22difficulty%22%3A0.9%2C%22color%22%3Anull%2C%22solved_score%22%3A0.5%2C%22preview_format%22%3Anull%2C%22difficulty_name%22%3A%22Easy%22%7D%2C%22rating%22%3A%7B%7D%2C%22leaderboard%22%3A%7B%7D%2C%22fileSubmissions%22%3A%5B%5D%2C%22editorial%22%3A%7B%7D%2C%22didInvalidate%22%3Afalse%7D%2C%22master/java-stdin-and-stdout-1%22%3A%7B%22detail%22%3A%7B%22solved%22%3Atrue%2C%22attempted%22%3Atrue%2C%22can_be_viewed%22%3Atrue%2C%22can_edit%22%3Anull%2C%22bookmarked%22%3Afalse%2C%22dynamic%22%3Afalse%2C%22has_started%22%3Atrue%2C%22has_ended%22%3Afalse%2C%22countdown_time%22%3A0%2C%22requirements_description%22%3Anull%2C%22max_score%22%3A5%2C%22active%22%3Atrue%2C%22epoch_starttime%22%3Anull%2C%22epoch_endtime%22%3Anull%2C%22time_left%22%3Anull%2C%22factor%22%3A5%2C%22expert_solution_status%22%3Afalse%2C%22custom_tabs%22%3Anull%2C%22is_skip_band_challenge%22%3Afalse%2C%22total_count%22%3A237172%2C%22solved_count%22%3A231812%2C%22success_ratio%22%3A0.9774003676656604%2C%22is_editorial_available%22%3Atrue%2C%22is_solution_unlocked%22%3Atrue%2C%22contest_slug%22%3A%22master%22%2C%22topics%22%3A%5B%5D%2C%22user_score%22%3A5%2C%22track%22%3A%7B%22id%22%3A80%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22java-introduction%22%2C%22track_id%22%3A15%2C%22track_name%22%3A%22Java%22%2C%22track_slug%22%3A%22java%22%2C%22rewards_system_enabled%22%3Anull%2C%22taxonomy%22%3A3%7D%2C%22id%22%3A9762%2C%22slug%22%3A%22java-stdin-and-stdout-1%22%2C%22name%22%3A%22%20Java%20Stdin%20and%20Stdout%20I%22%2C%22status%22%3Anull%2C%22created_at%22%3A%222015-08-13T06%3A48%3A56.000Z%22%2C%22updated_at%22%3A%222017-03-02T12%3A12%3A17.000Z%22%2C%22kind%22%3A%22code%22%2C%22preview%22%3A%22Get%20started%20with%20standard%20input%20and%20output.%22%2C%22category%22%3A%22ai%22%2C%22deleted%22%3Afalse%2C%22company_id%22%3Anull%2C%22level%22%3A2%2C%22is_custom%22%3Afalse%2C%22player_count%22%3A2%2C%22custom_checker_language%22%3Anull%2C%22checker_program%22%3Anull%2C%22judgebot_language%22%3Anull%2C%22judgebot%22%3Anull%2C%22onboarding%22%3Anull%2C%22compile_and_test%22%3Atrue%2C%22is_text%22%3Afalse%2C%22custom%22%3Afalse%2C%22custom_case%22%3Atrue%2C%22submit_disabled%22%3Afalse%2C%22public_test_cases%22%3Atrue%2C%22public_solutions%22%3Atrue%2C%22can_solve%22%3Atrue%2C%22company%22%3Anull%2C%22difficulty%22%3A0.9%2C%22color%22%3Anull%2C%22solved_score%22%3A0.5%2C%22preview_format%22%3Anull%2C%22difficulty_name%22%3A%22Easy%22%7D%2C%22rating%22%3A%7B%7D%2C%22leaderboard%22%3A%7B%7D%2C%22fileSubmissions%22%3A%5B%5D%2C%22editorial%22%3A%7B%7D%2C%22didInvalidate%22%3Afalse%7D%2C%22master/java-if-else%22%3A%7B%22detail%22%3A%7B%22solved%22%3Afalse%2C%22attempted%22%3Atrue%2C%22can_be_viewed%22%3Atrue%2C%22can_edit%22%3Anull%2C%22bookmarked%22%3Afalse%2C%22dynamic%22%3Afalse%2C%22has_started%22%3Atrue%2C%22has_ended%22%3Afalse%2C%22countdown_time%22%3A0%2C%22requirements_description%22%3Anull%2C%22max_score%22%3A10%2C%22active%22%3Atrue%2C%22epoch_starttime%22%3Anull%2C%22epoch_endtime%22%3Anull%2C%22time_left%22%3Anull%2C%22factor%22%3A10%2C%22expert_solution_status%22%3Afalse%2C%22custom_tabs%22%3Anull%2C%22is_skip_band_challenge%22%3Afalse%2C%22total_count%22%3A197495%2C%22solved_count%22%3A172499%2C%22success_ratio%22%3A0.873434770500519%2C%22is_editorial_available%22%3Atrue%2C%22is_solution_unlocked%22%3Afalse%2C%22contest_slug%22%3A%22master%22%2C%22topics%22%3A%5B%5D%2C%22user_score%22%3A3.33%2C%22track%22%3A%7B%22id%22%3A80%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22java-introduction%22%2C%22track_id%22%3A15%2C%22track_name%22%3A%22Java%22%2C%22track_slug%22%3A%22java%22%2C%22rewards_system_enabled%22%3Anull%2C%22taxonomy%22%3A3%7D%2C%22id%22%3A13689%2C%22slug%22%3A%22java-if-else%22%2C%22name%22%3A%22Java%20If-Else%22%2C%22status%22%3Anull%2C%22created_at%22%3A%222015-10-23T05%3A48%3A54.000Z%22%2C%22updated_at%22%3A%222017-03-02T12%3A12%3A25.000Z%22%2C%22kind%22%3A%22code%22%2C%22preview%22%3A%22Practice%20using%20if-else%20conditional%20statements%21%22%2C%22category%22%3A%22ai%22%2C%22deleted%22%3Afalse%2C%22company_id%22%3Anull%2C%22level%22%3A1%2C%22is_custom%22%3Afalse%2C%22player_count%22%3A2%2C%22custom_checker_language%22%3Anull%2C%22checker_program%22%3Anull%2C%22judgebot_language%22%3Anull%2C%22judgebot%22%3Anull%2C%22onboarding%22%3Anull%2C%22compile_and_test%22%3Atrue%2C%22is_text%22%3Afalse%2C%22custom%22%3Afalse%2C%22custom_case%22%3Atrue%2C%22submit_disabled%22%3Afalse%2C%22public_test_cases%22%3Atrue%2C%22public_solutions%22%3Atrue%2C%22can_solve%22%3Atrue%2C%22company%22%3Anull%2C%22difficulty%22%3A0.9%2C%22color%22%3Anull%2C%22solved_score%22%3A0.5%2C%22preview_format%22%3Anull%2C%22difficulty_name%22%3A%22Easy%22%7D%2C%22rating%22%3A%7B%7D%2C%22leaderboard%22%3A%7B%7D%2C%22fileSubmissions%22%3A%5B%5D%2C%22editorial%22%3A%7B%7D%2C%22didInvalidate%22%3Afalse%7D%2C%22master/java-stdin-stdout%22%3A%7B%22detail%22%3A%7B%22solved%22%3Atrue%2C%22attempted%22%3Atrue%2C%22can_be_viewed%22%3Atrue%2C%22can_edit%22%3Anull%2C%22bookmarked%22%3Afalse%2C%22dynamic%22%3Afalse%2C%22has_started%22%3Atrue%2C%22has_ended%22%3Afalse%2C%22countdown_time%22%3A0%2C%22requirements_description%22%3Anull%2C%22max_score%22%3A10%2C%22active%22%3Atrue%2C%22epoch_starttime%22%3Anull%2C%22epoch_endtime%22%3Anull%2C%22time_left%22%3Anull%2C%22factor%22%3A10%2C%22expert_solution_status%22%3Afalse%2C%22custom_tabs%22%3Anull%2C%22is_skip_band_challenge%22%3Afalse%2C%22total_count%22%3A164099%2C%22solved_count%22%3A146232%2C%22success_ratio%22%3A0.8911206040256187%2C%22is_editorial_available%22%3Atrue%2C%22is_solution_unlocked%22%3Atrue%2C%22contest_slug%22%3A%22master%22%2C%22topics%22%3A%5B%5D%2C%22user_score%22%3A10%2C%22track%22%3A%7B%22id%22%3A80%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22java-introduction%22%2C%22track_id%22%3A15%2C%22track_name%22%3A%22Java%22%2C%22track_slug%22%3A%22java%22%2C%22rewards_system_enabled%22%3Anull%2C%22taxonomy%22%3A3%7D%2C%22id%22%3A9458%2C%22slug%22%3A%22java-stdin-stdout%22%2C%22name%22%3A%22Java%20Stdin%20and%20Stdout%20II%22%2C%22status%22%3Anull%2C%22created_at%22%3A%222015-07-27T04%3A48%3A21.000Z%22%2C%22updated_at%22%3A%222017-03-02T12%3A12%3A34.000Z%22%2C%22kind%22%3A%22code%22%2C%22preview%22%3A%22Familiarize%20yourself%20with%20Standard%20Input/Output.%22%2C%22category%22%3A%22ai%22%2C%22deleted%22%3Afalse%2C%22company_id%22%3Anull%2C%22level%22%3A4%2C%22is_custom%22%3Afalse%2C%22player_count%22%3A2%2C%22custom_checker_language%22%3Anull%2C%22checker_program%22%3Anull%2C%22judgebot_language%22%3Anull%2C%22judgebot%22%3Anull%2C%22onboarding%22%3Anull%2C%22compile_and_test%22%3Atrue%2C%22is_text%22%3Afalse%2C%22custom%22%3Afalse%2C%22custom_case%22%3Atrue%2C%22submit_disabled%22%3Afalse%2C%22public_test_cases%22%3Atrue%2C%22public_solutions%22%3Atrue%2C%22can_solve%22%3Atrue%2C%22company%22%3Anull%2C%22difficulty%22%3A0.9%2C%22color%22%3Anull%2C%22solved_score%22%3A0.5%2C%22preview_format%22%3Anull%2C%22difficulty_name%22%3A%22Easy%22%7D%2C%22rating%22%3A%7B%7D%2C%22leaderboard%22%3A%7B%7D%2C%22fileSubmissions%22%3A%5B%5D%2C%22editorial%22%3A%7B%7D%2C%22didInvalidate%22%3Afalse%7D%2C%22master/java-output-formatting%22%3A%7B%22detail%22%3A%7B%22solved%22%3Atrue%2C%22attempted%22%3Atrue%2C%22can_be_viewed%22%3Atrue%2C%22can_edit%22%3Anull%2C%22bookmarked%22%3Afalse%2C%22dynamic%22%3Afalse%2C%22has_started%22%3Atrue%2C%22has_ended%22%3Afalse%2C%22countdown_time%22%3A0%2C%22requirements_description%22%3Anull%2C%22max_score%22%3A10%2C%22active%22%3Atrue%2C%22epoch_starttime%22%3Anull%2C%22epoch_endtime%22%3Anull%2C%22time_left%22%3Anull%2C%22factor%22%3A10%2C%22expert_solution_status%22%3Afalse%2C%22custom_tabs%22%3Anull%2C%22is_skip_band_challenge%22%3Afalse%2C%22total_count%22%3A119937%2C%22solved_count%22%3A115665%2C%22success_ratio%22%3A0.9643813001825958%2C%22is_editorial_available%22%3Atrue%2C%22is_solution_unlocked%22%3Atrue%2C%22contest_slug%22%3A%22master%22%2C%22topics%22%3A%5B%5D%2C%22user_score%22%3A10%2C%22track%22%3A%7B%22id%22%3A80%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22java-introduction%22%2C%22track_id%22%3A15%2C%22track_name%22%3A%22Java%22%2C%22track_slug%22%3A%22java%22%2C%22rewards_system_enabled%22%3Anull%2C%22taxonomy%22%3A3%7D%2C%22id%22%3A9472%2C%22slug%22%3A%22java-output-formatting%22%2C%22name%22%3A%22Java%20Output%20Formatting%22%2C%22status%22%3Anull%2C%22created_at%22%3A%222015-07-28T03%3A25%3A44.000Z%22%2C%22updated_at%22%3A%222017-03-02T12%3A12%3A38.000Z%22%2C%22kind%22%3A%22code%22%2C%22preview%22%3A%22Format%20a%20string%20using%20printf.%22%2C%22category%22%3A%22ai%22%2C%22deleted%22%3Afalse%2C%22company_id%22%3Anull%2C%22level%22%3A4%2C%22is_custom%22%3Afalse%2C%22player_count%22%3A2%2C%22custom_checker_language%22%3Anull%2C%22checker_program%22%3Anull%2C%22judgebot_language%22%3Anull%2C%22judgebot%22%3Anull%2C%22onboarding%22%3Anull%2C%22compile_and_test%22%3Atrue%2C%22is_text%22%3Afalse%2C%22custom%22%3Afalse%2C%22custom_case%22%3Atrue%2C%22submit_disabled%22%3Afalse%2C%22public_test_cases%22%3Atrue%2C%22public_solutions%22%3Atrue%2C%22can_solve%22%3Atrue%2C%22company%22%3Anull%2C%22difficulty%22%3A0.9%2C%22color%22%3Anull%2C%22solved_score%22%3A0.5%2C%22preview_format%22%3Anull%2C%22difficulty_name%22%3A%22Easy%22%7D%2C%22rating%22%3A%7B%7D%2C%22leaderboard%22%3A%7B%7D%2C%22fileSubmissions%22%3A%5B%5D%2C%22editorial%22%3A%7B%7D%2C%22didInvalidate%22%3Afalse%7D%2C%22master/java-loops-i%22%3A%7B%22detail%22%3A%7B%22solved%22%3Atrue%2C%22attempted%22%3Atrue%2C%22can_be_viewed%22%3Atrue%2C%22can_edit%22%3Anull%2C%22bookmarked%22%3Afalse%2C%22dynamic%22%3Afalse%2C%22has_started%22%3Atrue%2C%22has_ended%22%3Afalse%2C%22countdown_time%22%3A0%2C%22requirements_description%22%3Anull%2C%22max_score%22%3A10%2C%22active%22%3Atrue%2C%22epoch_starttime%22%3Anull%2C%22epoch_endtime%22%3Anull%2C%22time_left%22%3Anull%2C%22factor%22%3A10%2C%22expert_solution_status%22%3Afalse%2C%22custom_tabs%22%3Anull%2C%22is_skip_band_challenge%22%3Afalse%2C%22total_count%22%3A99546%2C%22solved_count%22%3A97281%2C%22success_ratio%22%3A0.9772467000180821%2C%22is_editorial_available%22%3Atrue%2C%22is_solution_unlocked%22%3Atrue%2C%22contest_slug%22%3A%22master%22%2C%22topics%22%3A%5B%5D%2C%22user_score%22%3A10%2C%22track%22%3A%7B%22id%22%3A80%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22java-introduction%22%2C%22track_id%22%3A15%2C%22track_name%22%3A%22Java%22%2C%22track_slug%22%3A%22java%22%2C%22rewards_system_enabled%22%3Anull%2C%22taxonomy%22%3A3%7D%2C%22id%22%3A23447%2C%22slug%22%3A%22java-loops-i%22%2C%22name%22%3A%22Java%20Loops%20I%22%2C%22status%22%3Anull%2C%22created_at%22%3A%222016-08-01T08%3A19%3A29.000Z%22%2C%22updated_at%22%3A%222017-06-02T13%3A37%3A39.000Z%22%2C%22kind%22%3A%22code%22%2C%22preview%22%3A%22Let%27s%20talk%20about%20loops.%22%2C%22category%22%3A%22ai%22%2C%22deleted%22%3Afalse%2C%22company_id%22%3Anull%2C%22level%22%3A10%2C%22is_custom%22%3Afalse%2C%22player_count%22%3A2%2C%22custom_checker_language%22%3Anull%2C%22checker_program%22%3Anull%2C%22judgebot_language%22%3Anull%2C%22judgebot%22%3Anull%2C%22onboarding%22%3Anull%2C%22compile_and_test%22%3Atrue%2C%22is_text%22%3Afalse%2C%22custom%22%3Afalse%2C%22custom_case%22%3Atrue%2C%22submit_disabled%22%3Afalse%2C%22public_test_cases%22%3Atrue%2C%22public_solutions%22%3Atrue%2C%22can_solve%22%3Atrue%2C%22company%22%3Anull%2C%22difficulty%22%3A0.9%2C%22color%22%3Anull%2C%22solved_score%22%3A0.5%2C%22preview_format%22%3Anull%2C%22difficulty_name%22%3A%22Easy%22%7D%2C%22rating%22%3A%7B%7D%2C%22leaderboard%22%3A%7B%7D%2C%22fileSubmissions%22%3A%5B%5D%2C%22editorial%22%3A%7B%7D%2C%22didInvalidate%22%3Afalse%7D%2C%22master/java-loops%22%3A%7B%22detail%22%3A%7B%22solved%22%3Afalse%2C%22attempted%22%3Afalse%2C%22can_be_viewed%22%3Atrue%2C%22can_edit%22%3Anull%2C%22bookmarked%22%3Afalse%2C%22dynamic%22%3Afalse%2C%22has_started%22%3Atrue%2C%22has_ended%22%3Afalse%2C%22countdown_time%22%3A0%2C%22requirements_description%22%3Anull%2C%22max_score%22%3A10%2C%22active%22%3Atrue%2C%22epoch_starttime%22%3Anull%2C%22epoch_endtime%22%3Anull%2C%22time_left%22%3Anull%2C%22factor%22%3A10%2C%22expert_solution_status%22%3Afalse%2C%22custom_tabs%22%3Anull%2C%22is_skip_band_challenge%22%3Afalse%2C%22total_count%22%3A90431%2C%22solved_count%22%3A87410%2C%22success_ratio%22%3A0.9665933142395859%2C%22is_editorial_available%22%3Atrue%2C%22is_solution_unlocked%22%3Afalse%2C%22contest_slug%22%3A%22master%22%2C%22topics%22%3A%5B%5D%2C%22user_score%22%3A0%2C%22track%22%3A%7B%22id%22%3A80%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22java-introduction%22%2C%22track_id%22%3A15%2C%22track_name%22%3A%22Java%22%2C%22track_slug%22%3A%22java%22%2C%22rewards_system_enabled%22%3Anull%2C%22taxonomy%22%3A3%7D%2C%22id%22%3A8018%2C%22slug%22%3A%22java-loops%22%2C%22name%22%3A%22Java%20Loops%20II%22%2C%22status%22%3Anull%2C%22created_at%22%3A%222015-04-26T08%3A26%3A52.000Z%22%2C%22updated_at%22%3A%222017-03-02T12%3A12%3A47.000Z%22%2C%22kind%22%3A%22code%22%2C%22preview%22%3A%22Use%20loops%20to%20find%20sum%20of%20a%20series.%22%2C%22category%22%3A%22ai%22%2C%22deleted%22%3Afalse%2C%22company_id%22%3Anull%2C%22level%22%3A50%2C%22is_custom%22%3Afalse%2C%22player_count%22%3A2%2C%22custom_checker_language%22%3A%22%22%2C%22checker_program%22%3Anull%2C%22judgebot_language%22%3Anull%2C%22judgebot%22%3Anull%2C%22onboarding%22%3Anull%2C%22compile_and_test%22%3Atrue%2C%22is_text%22%3Afalse%2C%22custom%22%3Afalse%2C%22custom_case%22%3Atrue%2C%22submit_disabled%22%3Afalse%2C%22public_test_cases%22%3Atrue%2C%22public_solutions%22%3Atrue%2C%22can_solve%22%3Atrue%2C%22company%22%3Anull%2C%22difficulty%22%3A0.9%2C%22color%22%3Anull%2C%22solved_score%22%3A0.5%2C%22preview_format%22%3Anull%2C%22difficulty_name%22%3A%22Easy%22%7D%2C%22rating%22%3A%7B%7D%2C%22leaderboard%22%3A%7B%7D%2C%22fileSubmissions%22%3A%5B%5D%2C%22editorial%22%3A%7B%7D%2C%22didInvalidate%22%3Afalse%7D%2C%22master/java-datatypes%22%3A%7B%22detail%22%3A%7B%22solved%22%3Afalse%2C%22attempted%22%3Afalse%2C%22can_be_viewed%22%3Atrue%2C%22can_edit%22%3Anull%2C%22bookmarked%22%3Afalse%2C%22dynamic%22%3Afalse%2C%22has_started%22%3Atrue%2C%22has_ended%22%3Afalse%2C%22countdown_time%22%3A0%2C%22requirements_description%22%3Anull%2C%22max_score%22%3A10%2C%22active%22%3Atrue%2C%22epoch_starttime%22%3Anull%2C%22epoch_endtime%22%3Anull%2C%22time_left%22%3Anull%2C%22factor%22%3A10%2C%22expert_solution_status%22%3Afalse%2C%22custom_tabs%22%3Anull%2C%22is_skip_band_challenge%22%3Afalse%2C%22total_count%22%3A79654%2C%22solved_count%22%3A73130%2C%22success_ratio%22%3A0.9180957641800789%2C%22is_editorial_available%22%3Atrue%2C%22is_solution_unlocked%22%3Afalse%2C%22contest_slug%22%3A%22master%22%2C%22topics%22%3A%5B%5D%2C%22user_score%22%3A0%2C%22track%22%3A%7B%22id%22%3A80%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22java-introduction%22%2C%22track_id%22%3A15%2C%22track_name%22%3A%22Java%22%2C%22track_slug%22%3A%22java%22%2C%22rewards_system_enabled%22%3Anull%2C%22taxonomy%22%3A3%7D%2C%22id%22%3A8098%2C%22slug%22%3A%22java-datatypes%22%2C%22name%22%3A%22Java%20Datatypes%22%2C%22status%22%3Anull%2C%22created_at%22%3A%222015-04-30T14%3A25%3A53.000Z%22%2C%22updated_at%22%3A%222017-03-02T12%3A12%3A53.000Z%22%2C%22kind%22%3A%22code%22%2C%22preview%22%3A%22Learn%20about%20different%20Java%20Datatypes.%22%2C%22category%22%3A%22ai%22%2C%22deleted%22%3Afalse%2C%22company_id%22%3Anull%2C%22level%22%3A9%2C%22is_custom%22%3Afalse%2C%22player_count%22%3A2%2C%22custom_checker_language%22%3Anull%2C%22checker_program%22%3Anull%2C%22judgebot_language%22%3Anull%2C%22judgebot%22%3Anull%2C%22onboarding%22%3Anull%2C%22compile_and_test%22%3Atrue%2C%22is_text%22%3Afalse%2C%22custom%22%3Afalse%2C%22custom_case%22%3Atrue%2C%22submit_disabled%22%3Afalse%2C%22public_test_cases%22%3Atrue%2C%22public_solutions%22%3Atrue%2C%22can_solve%22%3Atrue%2C%22company%22%3Anull%2C%22difficulty%22%3A0.9%2C%22color%22%3Anull%2C%22solved_score%22%3A0.5%2C%22preview_format%22%3Anull%2C%22difficulty_name%22%3A%22Easy%22%7D%2C%22rating%22%3A%7B%7D%2C%22leaderboard%22%3A%7B%7D%2C%22fileSubmissions%22%3A%5B%5D%2C%22editorial%22%3A%7B%7D%2C%22didInvalidate%22%3Afalse%7D%2C%22master/java-end-of-file%22%3A%7B%22detail%22%3A%7B%22solved%22%3Afalse%2C%22attempted%22%3Afalse%2C%22can_be_viewed%22%3Atrue%2C%22can_edit%22%3Anull%2C%22bookmarked%22%3Afalse%2C%22dynamic%22%3Afalse%2C%22has_started%22%3Atrue%2C%22has_ended%22%3Afalse%2C%22countdown_time%22%3A0%2C%22requirements_description%22%3Anull%2C%22max_score%22%3A10%2C%22active%22%3Atrue%2C%22epoch_starttime%22%3Anull%2C%22epoch_endtime%22%3Anull%2C%22time_left%22%3Anull%2C%22factor%22%3A10%2C%22expert_solution_status%22%3Afalse%2C%22custom_tabs%22%3Anull%2C%22is_skip_band_challenge%22%3Afalse%2C%22total_count%22%3A76197%2C%22solved_count%22%3A74638%2C%22success_ratio%22%3A0.9795398768980406%2C%22is_editorial_available%22%3Atrue%2C%22is_solution_unlocked%22%3Afalse%2C%22contest_slug%22%3A%22master%22%2C%22topics%22%3A%5B%5D%2C%22user_score%22%3A0%2C%22track%22%3A%7B%22id%22%3A80%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22java-introduction%22%2C%22track_id%22%3A15%2C%22track_name%22%3A%22Java%22%2C%22track_slug%22%3A%22java%22%2C%22rewards_system_enabled%22%3Anull%2C%22taxonomy%22%3A3%7D%2C%22id%22%3A8279%2C%22slug%22%3A%22java-end-of-file%22%2C%22name%22%3A%22Java%20End-of-file%22%2C%22status%22%3Anull%2C%22created_at%22%3A%222015-05-17T06%3A44%3A43.000Z%22%2C%22updated_at%22%3A%222017-03-02T12%3A12%3A58.000Z%22%2C%22kind%22%3A%22code%22%2C%22preview%22%3A%22Learn%20how%20to%20read%20from%20standard%20input%20until%20EOF.%22%2C%22category%22%3A%22ai%22%2C%22deleted%22%3Afalse%2C%22company_id%22%3Anull%2C%22level%22%3A4%2C%22is_custom%22%3Afalse%2C%22player_count%22%3A2%2C%22custom_checker_language%22%3Anull%2C%22checker_program%22%3Anull%2C%22judgebot_language%22%3Anull%2C%22judgebot%22%3Anull%2C%22onboarding%22%3Anull%2C%22compile_and_test%22%3Atrue%2C%22is_text%22%3Afalse%2C%22custom%22%3Afalse%2C%22custom_case%22%3Atrue%2C%22submit_disabled%22%3Afalse%2C%22public_test_cases%22%3Atrue%2C%22public_solutions%22%3Atrue%2C%22can_solve%22%3Atrue%2C%22company%22%3Anull%2C%22difficulty%22%3A0.9%2C%22color%22%3Anull%2C%22solved_score%22%3A0.5%2C%22preview_format%22%3Anull%2C%22difficulty_name%22%3A%22Easy%22%7D%2C%22rating%22%3A%7B%7D%2C%22leaderboard%22%3A%7B%7D%2C%22fileSubmissions%22%3A%5B%5D%2C%22editorial%22%3A%7B%7D%2C%22didInvalidate%22%3Afalse%7D%2C%22master/java-static-initializer-block%22%3A%7B%22detail%22%3A%7B%22can_be_viewed%22%3Atrue%2C%22can_edit%22%3Anull%2C%22bookmarked%22%3Afalse%2C%22dynamic%22%3Afalse%2C%22has_started%22%3Atrue%2C%22has_ended%22%3Afalse%2C%22countdown_time%22%3A0%2C%22requirements_description%22%3Anull%2C%22max_score%22%3A10%2C%22active%22%3Atrue%2C%22epoch_starttime%22%3Anull%2C%22epoch_endtime%22%3Anull%2C%22time_left%22%3Anull%2C%22factor%22%3A10%2C%22expert_solution_status%22%3Afalse%2C%22custom_tabs%22%3Anull%2C%22is_skip_band_challenge%22%3Afalse%2C%22total_count%22%3A60101%2C%22solved_count%22%3A57870%2C%22success_ratio%22%3A0.9628791534250678%2C%22is_editorial_available%22%3Atrue%2C%22is_solution_unlocked%22%3Afalse%2C%22contest_slug%22%3A%22master%22%2C%22topics%22%3A%5B%5D%2C%22user_score%22%3A0%2C%22track%22%3A%7B%22id%22%3A80%2C%22name%22%3A%22Introduction%22%2C%22slug%22%3A%22java-introduction%22%2C%22track_id%22%3A15%2C%22track_name%22%3A%22Java%22%2C%22track_slug%22%3A%22java%22%2C%22rewards_system_enabled%22%3Anull%2C%22taxonomy%22%3A3%7D%2C%22id%22%3A13800%2C%22slug%22%3A%22java-static-initializer-block%22%2C%22name%22%3A%22Java%20Static%20Initializer%20Block%22%2C%22status%22%3Anull%2C%22created_at%22%3A%222015-10-26T14%3A59%3A20.000Z%22%2C%22updated_at%22%3A%222017-03-02T12%3A13%3A01.000Z%22%2C%22kind%22%3A%22code%22%2C%22preview%22%3A%22Initialize%20some%20variables%20using%20Static%20initialization%20blocks%21%22%2C%22category%22%3A%22ai%22%2C%22deleted%22%3Afalse%2C%22company_id%22%3Anull%2C%22level%22%3A5%2C%22is_custom%22%3Afalse%2C%22player_count%22%3A2%2C%22custom_checker_language%22%3Anull%2C%22checker_program%22%3Anull%2C%22judgebot_language%22%3Anull%2C%22judgebot%22%3Anull%2C%22onboarding%22%3Anull%2C%22compile_and_test%22%3Atrue%2C%22is_text%22%3Afalse%2C%22custom%22%3Afalse%2C%22custom_case%22%3Atrue%2C%22submit_disabled%22%3Afalse%2C%22public_test_cases%22%3Atrue%2C%22public_solutions%22%3Atrue%2C%22can_solve%22%3Atrue%2C%22company%22%3Anull%2C%22difficulty%22%3A0.9%2C%22color%22%3Anull%2C%22solved_score%22%3A0.5%2C%22preview_format%22%3Anull%2C%22difficulty_name%22%3A%22Easy%22%7D%2C%22rating%22%3A%7B%7D%2C%22leaderboard%22%3A%7B%7D%2C%22fileSubmissions%22%3A%5B%5D%2C%22editorial%22%3A%7B%7D%2C%22didInvalidate%22%3Afalse%7D%7D%7D%2C%22submissions%22%3A%7B%22allSubmissions%22%3A%7B%7D%2C%22challengeSubmissions%22%3A%7B%7D%2C%22globalStatus%22%3Anull%7D%2C%22hackerlevelLeaderboard%22%3A%7B%22leaderboard%22%3A%7B%22leaders%22%3A%5B%5D%2C%22pageNo%22%3A1%2C%22total%22%3A0%7D%2C%22recommendations%22%3A%7B%7D%7D%2C%22jobs%22%3A%7B%22favoriteJobs%22%3A%5B%5D%2C%22attemptedJobs%22%3A%5B%5D%2C%22currentCompany%22%3A%7B%7D%2C%22currentJob%22%3A%7B%7D%2C%22commonApp%22%3A%7B%22fetched%22%3Afalse%2C%22data%22%3Anull%7D%2C%22search%22%3A%7B%22items%22%3A%5B%5D%2C%22filters%22%3A%7B%7D%2C%22total%22%3A0%2C%22length%22%3A0%2C%22company_limit%22%3A100%2C%22by_company%22%3Atrue%7D%2C%22states%22%3A%7B%7D%2C%22notificationCounts%22%3A%7B%7D%7D%2C%22codeSnippets%22%3A%7B%22codeSnippet%22%3Anull%2C%22codeSnippetList%22%3A%7B%22_revalidate_data%22%3Afalse%2C%22total%22%3Anull%2C%22snippets%22%3A%5B%5D%7D%2C%22forkedSnippets%22%3A%7B%7D%7D%2C%22feed%22%3A%7B%7D%7D%2C%22work%22%3A%7B%7D%2C%22metadata%22%3A%7B%22manifest%22%3A%7B%22hackerrank-core.css%22%3A%22hackerrank-core-e4770600ef9149004a36b432b6223ab3.css%22%2C%22hackerrank_libraries.css%22%3A%22hackerrank_libraries-d884f4ea635439f7418d3c462220f7c4.css%22%2C%22dashboard.css%22%3A%22dashboard-d5be922e6d6b7b974c0fb3de032b0ee8.css%22%2C%22cdnping.js%22%3A%22cdnping-691df18f10507ce98520c220c2ee3e60.js%22%2C%22hackerrank.js%22%3A%22hackerrank-7ebd92b5a354209052a9bce018e8a907.js%22%2C%22base.js%22%3A%22base-9c1fbd41eaf488758b4fbd25af7ffaee.js%22%2C%22hackerrank_libraries.js%22%3A%22hackerrank_libraries-813aa59d90d24615b794a2edc1bfcbc8.js%22%2C%22promise-polyfill/promise.min.js%22%3A%22promise-polyfill/promise.min-6441a8739281da98ea4e511b5e96b7c2.js%22%2C%22ckeditor.js%22%3A%22ckeditor-23116018ed1095c7cf8bac5421aea448.js%22%2C%22hackerrank_r_community.js%22%3A%22hackerrank_r_community-5aef6f073801fb78a894.js%22%2C%22hackerrank_r_work.js%22%3A%22hackerrank_r_work-dab61ca913ca986c3887.js%22%2C%22hackerrank_r_app.js%22%3A%22hackerrank_r_app-c47dfd0cef5902409c3b.js%22%2C%22hackerrank_r_common.js%22%3A%22hackerrank_r_common-e437e2ef7b1f92879a03.js%22%2C%22level_up_beginner.svg%22%3A%22level_up_beginner-371d33f99e55481d22debcae28c8a45e.svg%22%2C%22level_up_intermediate.svg%22%3A%22level_up_intermediate-7c250c7e091aa93d785a95d54e0ed5df.svg%22%2C%22level_up_proficient.svg%22%3A%22level_up_proficient-b3c74052ed6eaf97ac1c90d997875606.svg%22%2C%22level_up_advanced.svg%22%3A%22level_up_advanced-ec5d6513011e24e068c2dd541c79a02f.svg%22%2C%22level_up_expert.svg%22%3A%22level_up_expert-f76c2c48618a59624ea3ec468d227c51.svg%22%2C%22level_up_master.svg%22%3A%22level_up_master-30828a00a77859592d9ecca9ce289708.svg%22%2C%22level_up_grandmaster.svg%22%3A%22level_up_grandmaster-52757855f03f198868f00f30d29c110e.svg%22%2C%22hackerrank_r_challenge.js%22%3A%22hackerrank_r_challenge-6b34b083da29b413f328.js%22%2C%22tutorials/calendar.png%22%3A%22tutorials/calendar-01f686d8cf5c3edf3498f006942f3e40.png%22%2C%22codemirror/mode/cobol/cobol.js%22%3A%22codemirror/mode/cobol/cobol-7db5c2c664a8460d8df9a9e3fac96263.js%22%2C%22codemirror/mode/dockerfile/dockerfile.js%22%3A%22codemirror/mode/dockerfile/dockerfile-8b9cc6548a5741ba14e11af8006403a9.js%22%2C%22codemirror/mode/forth/forth.js%22%3A%22codemirror/mode/forth/forth-5de8c0dfff5542c11b0109c805da318b.js%22%2C%22codemirror/mode/haskell/haskell.js%22%3A%22codemirror/mode/haskell/haskell-eaf655e0ca39ac0e4d1b2141ad13f70d.js%22%2C%22codemirror/mode/livescript/livescript.js%22%3A%22codemirror/mode/livescript/livescript-94af1fed3c518ecccad5b853e4e18865.js%22%2C%22codemirror/mode/mumps/mumps.js%22%3A%22codemirror/mode/mumps/mumps-8a64343bb8ce437fb76f36e0934f7270.js%22%2C%22codemirror/mode/pig/pig.js%22%3A%22codemirror/mode/pig/pig-f9bb56e7c9753e4cd743647fa73cd69c.js%22%2C%22codemirror/mode/rst/rst.js%22%3A%22codemirror/mode/rst/rst-0b6f176ea5c53f7a67795a555157356a.js%22%2C%22codemirror/mode/smarty/smarty.js%22%3A%22codemirror/mode/smarty/smarty-090525a58f2fc5174b902d2dbef26721.js%22%2C%22codemirror/mode/textile/textile.js%22%3A%22codemirror/mode/textile/textile-c785e1bdd521272ebe70eee34885b608.js%22%2C%22codemirror/mode/turtle/turtle.js%22%3A%22codemirror/mode/turtle/turtle-1cfda89984d4d548af4d7f532cc63b0a.js%22%2C%22codemirror/mode/xquery/xquery.js%22%3A%22codemirror/mode/xquery/xquery-1fb77f1d8b474b1e3396f17beedc03da.js%22%2C%22codemirror/mode/coffeescript/coffeescript.js%22%3A%22codemirror/mode/coffeescript/coffeescript-22d5d1e470c7fa9a8392f9f1d4bcf5ef.js%22%2C%22codemirror/mode/dtd/dtd.js%22%3A%22codemirror/mode/dtd/dtd-7afe9a36fa410921301558e00d76753a.js%22%2C%22codemirror/mode/fortran/fortran.js%22%3A%22codemirror/mode/fortran/fortran-db900c4566f1a8693c894b185f7f4540.js%22%2C%22codemirror/mode/haxe/haxe.js%22%3A%22codemirror/mode/haxe/haxe-f5fa8d0ab4f76d69e61b2d17b55b2ddc.js%22%2C%22codemirror/mode/lua/lua.js%22%3A%22codemirror/mode/lua/lua-b06615ad4bdd8dcc28a6e6b7cc4f7056.js%22%2C%22codemirror/mode/nginx/nginx.js%22%3A%22codemirror/mode/nginx/nginx-de2d69447bf29e4f71f790f2dee45d78.js%22%2C%22codemirror/mode/powershell/powershell.js%22%3A%22codemirror/mode/powershell/powershell-d1771c5deba9e5662040ef0f2a6f384d.js%22%2C%22codemirror/mode/ruby/ruby.js%22%3A%22codemirror/mode/ruby/ruby-51e1fcb204b5078416cb5b0b04af6d93.js%22%2C%22codemirror/mode/solr/solr.js%22%3A%22codemirror/mode/solr/solr-0a98ac397c33572f9c8b23c2a5c2fa68.js%22%2C%22codemirror/mode/twig/twig.js%22%3A%22codemirror/mode/twig/twig-ddf1d1fa51df8ac6dc66533a290df49a.js%22%2C%22codemirror/mode/yacas/yacas.js%22%3A%22codemirror/mode/yacas/yacas-93774800561be1ed02725aefbaf65657.js%22%2C%22codemirror/mode/clike/clike.js%22%3A%22codemirror/mode/clike/clike-b5cf8fcbc6a9f9d1e313590f025c434b.js%22%2C%22codemirror/mode/dart/dart.js%22%3A%22codemirror/mode/dart/dart-5fd86caf3883d98ae79be3186ac958ea.js%22%2C%22codemirror/mode/erlang/erlang.js%22%3A%22codemirror/mode/erlang/erlang-54bb3cd496fbb7bd60ea7d3ff6d313cc.js%22%2C%22codemirror/mode/haml/haml.js%22%3A%22codemirror/mode/haml/haml-0b1c03f7783c55f31799161d30fe11b4.js%22%2C%22codemirror/mode/jinja2/jinja2.js%22%3A%22codemirror/mode/jinja2/jinja2-ef6c3f98c1c04fe7aca51290ac8dba53.js%22%2C%22codemirror/mode/mllike/mllike.js%22%3A%22codemirror/mode/mllike/mllike-d84560ae6f82a47522bef459c4ea4678.js%22%2C%22codemirror/mode/pegjs/pegjs.js%22%3A%22codemirror/mode/pegjs/pegjs-359095efdf5d89f460b00e395a62a295.js%22%2C%22codemirror/mode/q/q.js%22%3A%22codemirror/mode/q/q-f79f000c0e18b04eff57b3c65410dd9f.js%22%2C%22codemirror/mode/sieve/sieve.js%22%3A%22codemirror/mode/sieve/sieve-0b29aeb0d500ec1707c6e7fa7c36a991.js%22%2C%22codemirror/mode/stylus/stylus.js%22%3A%22codemirror/mode/stylus/stylus-d019dc7e3777203caef48afa82af4551.js%22%2C%22codemirror/mode/troff/troff.js%22%3A%22codemirror/mode/troff/troff-686c9b63b58574537bd9a076c9efc7e0.js%22%2C%22codemirror/mode/vue/vue.js%22%3A%22codemirror/mode/vue/vue-34595cd7cf1fda86779889001955de00.js%22%2C%22codemirror/mode/apl/apl.js%22%3A%22codemirror/mode/apl/apl-f31a8abc78e7ebc6f2e01d1960cac2e6.js%22%2C%22codemirror/mode/commonlisp/commonlisp.js%22%3A%22codemirror/mode/commonlisp/commonlisp-2a097dbbc0ad09d5f614f5f394a5689c.js%22%2C%22codemirror/mode/dylan/dylan.js%22%3A%22codemirror/mode/dylan/dylan-44f8e09f6118f0cac936af081c6986ea.js%22%2C%22codemirror/mode/gas/gas.js%22%3A%22codemirror/mode/gas/gas-6437611a0c707824d7e78e93348ff32b.js%22%2C%22codemirror/mode/htmlembedded/htmlembedded.js%22%3A%22codemirror/mode/htmlembedded/htmlembedded-2de141bb161aa00fc10a4e86bc567145.js%22%2C%22codemirror/mode/markdown/markdown.js%22%3A%22codemirror/mode/markdown/markdown-d03c0a47bb609edd33b6bd64be93ee4b.js%22%2C%22codemirror/mode/nsis/nsis.js%22%3A%22codemirror/mode/nsis/nsis-1b93385d2d2268a433305022939f35a9.js%22%2C%22codemirror/mode/properties/properties.js%22%3A%22codemirror/mode/properties/properties-5e13ab5c815df2198e1e1926b1c26ef7.js%22%2C%22codemirror/mode/rust/rust.js%22%3A%22codemirror/mode/rust/rust-4172623adb1008b3ac243f4f5328681d.js%22%2C%22codemirror/mode/soy/soy.js%22%3A%22codemirror/mode/soy/soy-b0bdd7edcb2fbc1434eff956007bf7d9.js%22%2C%22codemirror/mode/tiddlywiki/tiddlywiki.js%22%3A%22codemirror/mode/tiddlywiki/tiddlywiki-6373449e1b3dbf19c584e5393ab1d558.js%22%2C%22codemirror/mode/vb/vb.js%22%3A%22codemirror/mode/vb/vb-efeb948c45ea80c422ba146404929428.js%22%2C%22codemirror/mode/yaml-frontmatter/yaml-frontmatter.js%22%3A%22codemirror/mode/yaml-frontmatter/yaml-frontmatter-dfc934f9b5cdbbe760248a37a59f96e9.js%22%2C%22codemirror/mode/brainfuck/brainfuck.js%22%3A%22codemirror/mode/brainfuck/brainfuck-7eaf58febc30bfb38c6502ce0776a177.js%22%2C%22codemirror/mode/d/d.js%22%3A%22codemirror/mode/d/d-6915db5b11d0cb4c1cb29bde7540d2f6.js%22%2C%22codemirror/mode/elm/elm.js%22%3A%22codemirror/mode/elm/elm-de8a2ef92d182cbe675102fdb8270555.js%22%2C%22codemirror/mode/groovy/groovy.js%22%3A%22codemirror/mode/groovy/groovy-674235f87c76db6de69ca3fff4e70222.js%22%2C%22codemirror/mode/javascript/javascript.js%22%3A%22codemirror/mode/javascript/javascript-6f09347bbc137696b3b556e4e53c6144.js%22%2C%22codemirror/mode/mirc/mirc.js%22%3A%22codemirror/mode/mirc/mirc-7c7c548fcb615f3d4bfcb87c70ea6346.js%22%2C%22codemirror/mode/pascal/pascal.js%22%3A%22codemirror/mode/pascal/pascal-db87efcaf109a09aab9bd1d1c9434cf5.js%22%2C%22codemirror/mode/python/python.js%22%3A%22codemirror/mode/python/python-4d6fc07b5617093a16289f73d6a0382f.js%22%2C%22codemirror/mode/shell/shell.js%22%3A%22codemirror/mode/shell/shell-fce9893eff4bfbd50c33c4694122ea31.js%22%2C%22codemirror/mode/stex/stex.js%22%3A%22codemirror/mode/stex/stex-a51b155340fec536d0803511063d0520.js%22%2C%22codemirror/mode/tornado/tornado.js%22%3A%22codemirror/mode/tornado/tornado-cc6814571565e59c1e64eb703e2121a8.js%22%2C%22codemirror/mode/vhdl/vhdl.js%22%3A%22codemirror/mode/vhdl/vhdl-e7a8e6df1e6ff8d589b101f7c4a42402.js%22%2C%22codemirror/mode/asn.1/asn.1.js%22%3A%22codemirror/mode/asn.1/asn.1-ce6aa55455d71203e57645bc567f7cf3.js%22%2C%22codemirror/mode/css/css.js%22%3A%22codemirror/mode/css/css-ac470e40cfacc5a7ace353f2372192a2.js%22%2C%22codemirror/mode/ecl/ecl.js%22%3A%22codemirror/mode/ecl/ecl-01199260abf3b63d47f260545731d62e.js%22%2C%22codemirror/mode/gherkin/gherkin.js%22%3A%22codemirror/mode/gherkin/gherkin-969a969056dd78b384b73f438dac93f7.js%22%2C%22codemirror/mode/http/http.js%22%3A%22codemirror/mode/http/http-701b86826fbacccd2681e84c0423fabe.js%22%2C%22codemirror/mode/mbox/mbox.js%22%3A%22codemirror/mode/mbox/mbox-2d613faddd20283dfa2c9358f061cdef.js%22%2C%22codemirror/mode/octave/octave.js%22%3A%22codemirror/mode/octave/octave-49914c24ccea4eac3ec25d18f0138309.js%22%2C%22codemirror/mode/pug/pug.js%22%3A%22codemirror/mode/pug/pug-f6cbce10e79fafbc3a26869b82b512df.js%22%2C%22codemirror/mode/sass/sass.js%22%3A%22codemirror/mode/sass/sass-947d9c5bfc8264bb36c0af19355eb522.js%22%2C%22codemirror/mode/spreadsheet/spreadsheet.js%22%3A%22codemirror/mode/spreadsheet/spreadsheet-63d435c43f98379738c85e7646082214.js%22%2C%22codemirror/mode/tiki/tiki.js%22%3A%22codemirror/mode/tiki/tiki-f85b719175582df5ca6f66d6a608ed8f.js%22%2C%22codemirror/mode/velocity/velocity.js%22%3A%22codemirror/mode/velocity/velocity-14f3f3c55323a51f5193400b7744064c.js%22%2C%22codemirror/mode/z80/z80.js%22%3A%22codemirror/mode/z80/z80-7cbc8cd6a8ebce638973753cf1f4316d.js%22%2C%22codemirror/mode/asterisk/asterisk.js%22%3A%22codemirror/mode/asterisk/asterisk-0c2dd531603125c81f1f7b611d70940f.js%22%2C%22codemirror/mode/cypher/cypher.js%22%3A%22codemirror/mode/cypher/cypher-6725f2f275a1b2f8edcb10fcd6a9207c.js%22%2C%22codemirror/mode/eiffel/eiffel.js%22%3A%22codemirror/mode/eiffel/eiffel-cacfce33918b5116eecfa15b734e4520.js%22%2C%22codemirror/mode/go/go.js%22%3A%22codemirror/mode/go/go-4ce679db156fa4ebde5bb33ba8171d6a.js%22%2C%22codemirror/mode/idl/idl.js%22%3A%22codemirror/mode/idl/idl-24062aec9cbc7b69b8fd8def990b180b.js%22%2C%22codemirror/mode/meta.js%22%3A%22codemirror/mode/meta-e63379cb8440716a24b04173a971f2b5.js%22%2C%22codemirror/mode/oz/oz.js%22%3A%22codemirror/mode/oz/oz-0fa79ea849e7a0fb2037b0e4b76e31a8.js%22%2C%22codemirror/mode/puppet/puppet.js%22%3A%22codemirror/mode/puppet/puppet-9662ee9b73a92cd1d0957ca297325d3e.js%22%2C%22codemirror/mode/scheme/scheme.js%22%3A%22codemirror/mode/scheme/scheme-9feb85094a266c26a737cd2ac90e48cf.js%22%2C%22codemirror/mode/sql/sql.js%22%3A%22codemirror/mode/sql/sql-f52ff1299da75ba89a13d7df6760c3f2.js%22%2C%22codemirror/mode/toml/toml.js%22%3A%22codemirror/mode/toml/toml-f7021be9d731aaf58f5e3b1c38fff4d9.js%22%2C%22codemirror/mode/verilog/verilog.js%22%3A%22codemirror/mode/verilog/verilog-afd0de5aa77ad86a37c4f9f3206b1de8.js%22%2C%22codemirror/mode/asciiarmor/asciiarmor.js%22%3A%22codemirror/mode/asciiarmor/asciiarmor-72c24093fd4b3dea9f34c39f6c20442b.js%22%2C%22codemirror/mode/crystal/crystal.js%22%3A%22codemirror/mode/crystal/crystal-44f7e99cf58bce720d1f8cd58eaaeebd.js%22%2C%22codemirror/mode/ebnf/ebnf.js%22%3A%22codemirror/mode/ebnf/ebnf-0e3bbdef4c81722f81dfa60f0e6dc9e2.js%22%2C%22codemirror/mode/gfm/gfm.js%22%3A%22codemirror/mode/gfm/gfm-14b5200885ba781f4216bef47127dc66.js%22%2C%22codemirror/mode/htmlmixed/htmlmixed.js%22%3A%22codemirror/mode/htmlmixed/htmlmixed-2e97395e165ae7595235f0470fb2e7dc.js%22%2C%22codemirror/mode/mathematica/mathematica.js%22%3A%22codemirror/mode/mathematica/mathematica-e4a6bd15de1b461e5eaa22779124321c.js%22%2C%22codemirror/mode/ntriples/ntriples.js%22%3A%22codemirror/mode/ntriples/ntriples-15b88fce96411e13977fc314b0e09d3a.js%22%2C%22codemirror/mode/protobuf/protobuf.js%22%3A%22codemirror/mode/protobuf/protobuf-622adbdb1958c7b15b3254be1aadf483.js%22%2C%22codemirror/mode/sas/sas.js%22%3A%22codemirror/mode/sas/sas-367bca64fc7e42491efaa339defc2a77.js%22%2C%22codemirror/mode/sparql/sparql.js%22%3A%22codemirror/mode/sparql/sparql-7d1082438f51b8488d96de3fd9e8a51d.js%22%2C%22codemirror/mode/vbscript/vbscript.js%22%3A%22codemirror/mode/vbscript/vbscript-9087f494ffdb85b63df5aea24929ec0f.js%22%2C%22codemirror/mode/yaml/yaml.js%22%3A%22codemirror/mode/yaml/yaml-0987327057a178d45b544dc058a3f984.js%22%2C%22codemirror/mode/cmake/cmake.js%22%3A%22codemirror/mode/cmake/cmake-31fa3a0686e0926037a83e3a2006bd2f.js%22%2C%22codemirror/mode/django/django.js%22%3A%22codemirror/mode/django/django-52ca88002c4442adc4a5e4166662f61c.js%22%2C%22codemirror/mode/fcl/fcl.js%22%3A%22codemirror/mode/fcl/fcl-4934a52016074c3cb82b721e2f91d7f5.js%22%2C%22codemirror/mode/haskell-literate/haskell-literate.js%22%3A%22codemirror/mode/haskell-literate/haskell-literate-496c21538987f9d194a45c1a7c3b43c6.js%22%2C%22codemirror/mode/julia/julia.js%22%3A%22codemirror/mode/julia/julia-b8e8166bd9529880a7479568e7729e61.js%22%2C%22codemirror/mode/mscgen/mscgen.js%22%3A%22codemirror/mode/mscgen/mscgen-911e2cc3ea63659838143519871c509a.js%22%2C%22codemirror/mode/php/php.js%22%3A%22codemirror/mode/php/php-bf55e20ac7774d42a4ba0def898a6324.js%22%2C%22codemirror/mode/rpm/rpm.js%22%3A%22codemirror/mode/rpm/rpm-fca12efa5cc501678700f950cab1f1e1.js%22%2C%22codemirror/mode/smalltalk/smalltalk.js%22%3A%22codemirror/mode/smalltalk/smalltalk-075a27a5a32411f40526a152ccaad486.js%22%2C%22codemirror/mode/tcl/tcl.js%22%3A%22codemirror/mode/tcl/tcl-d65814e3ce5770ed40c067e71a3f71b7.js%22%2C%22codemirror/mode/ttcn/ttcn.js%22%3A%22codemirror/mode/ttcn/ttcn-063adc436613fc7d797a4f11d12e75d8.js%22%2C%22codemirror/mode/xml/xml.js%22%3A%22codemirror/mode/xml/xml-daac7ad07b4a710b7079b010250e2777.js%22%2C%22codemirror/mode/clojure/clojure.js%22%3A%22codemirror/mode/clojure/clojure-3edc9787c710b5becaf25b7ef8158ed8.js%22%2C%22codemirror/mode/diff/diff.js%22%3A%22codemirror/mode/diff/diff-b58a5d68f580495fc8ace31a99075b6e.js%22%2C%22codemirror/mode/factor/factor.js%22%3A%22codemirror/mode/factor/factor-e966159f53aa98a3809e53ab12a1847b.js%22%2C%22codemirror/mode/handlebars/handlebars.js%22%3A%22codemirror/mode/handlebars/handlebars-2439a45eb11d9dc767f7c6336cf941bb.js%22%2C%22codemirror/mode/jsx/jsx.js%22%3A%22codemirror/mode/jsx/jsx-06b256f4275164ac82d6860d1298b438.js%22%2C%22codemirror/mode/modelica/modelica.js%22%3A%22codemirror/mode/modelica/modelica-2936a373ab327b7e097ec5eb78659086.js%22%2C%22codemirror/mode/perl/perl.js%22%3A%22codemirror/mode/perl/perl-583d6bbf7873d236a659d64914c26f9b.js%22%2C%22codemirror/mode/r/r.js%22%3A%22codemirror/mode/r/r-876933226faee004778db0c2290597f8.js%22%2C%22codemirror/mode/slim/slim.js%22%3A%22codemirror/mode/slim/slim-8e43e389567a501258fa6162fada46d7.js%22%2C%22codemirror/mode/swift/swift.js%22%3A%22codemirror/mode/swift/swift-103dc947428bfaaa0775b97eb531f776.js%22%2C%22codemirror/mode/ttcn-cfg/ttcn-cfg.js%22%3A%22codemirror/mode/ttcn-cfg/ttcn-cfg-2e65cf7fc0644519d67692af43bfe2f6.js%22%2C%22codemirror/mode/webidl/webidl.js%22%3A%22codemirror/mode/webidl/webidl-3264a3db6087323c93cb09fe25eb646c.js%22%2C%22fourohfour.png%22%3A%22fourohfour-ca9c45019ba0fc12e89cbd0cd4828303.png%22%2C%22test-icon.png%22%3A%22test-icon-5a2b614cecbd9a0a0e20ae8595939b06.png%22%2C%22Test_Modal_Icon.svg%22%3A%22Test_Modal_Icon-a589fdf0a87aa5eee8243d209064b634.svg%22%2C%22brand/h_mark_sm.png%22%3A%22brand/h_mark_sm-05bceb881aa02b72d688d21db01df5d8.png%22%2C%22dashboard/survey/student-selection.svg%22%3A%22dashboard/survey/student-selection-3c6660e3df59b866b928127455b54c2f.svg%22%2C%22dashboard/survey/pro-selection.svg%22%3A%22dashboard/survey/pro-selection-0bb15656512b93239c8e1f0ad8bd95a8.svg%22%2C%22dashboard/survey/focus-learn.svg%22%3A%22dashboard/survey/focus-learn-19fad9d02d0985e83bfb5771b838e552.svg%22%2C%22dashboard/survey/focus-practice.svg%22%3A%22dashboard/survey/focus-practice-c72ac111c7e7150d42229201048c6597.svg%22%2C%22dashboard/survey/focus-prep.svg%22%3A%22dashboard/survey/focus-prep-cd03bfd915d99cd3a50c1c8f61c5c71c.svg%22%2C%22dashboard/survey/focus-participate.svg%22%3A%22dashboard/survey/focus-participate-d3e1bbe2b19e9a0058da22ad5c0c2f6c.svg%22%2C%22dashboard/survey/focus-job.svg%22%3A%22dashboard/survey/focus-job-94e8f86f00e747766fb4695362c9405f.svg%22%2C%22dashboard/onboarding/30daysofCode1.svg%22%3A%22dashboard/onboarding/30daysofCode1-dc3f2e7a15b75da8fcb113fbd43701dc.svg%22%2C%22dashboard/onboarding/30daysofCode2.svg%22%3A%22dashboard/onboarding/30daysofCode2-f82c24388127eb6819d38a7cbe14663e.svg%22%2C%22dashboard/onboarding/30daysofCode3.svg%22%3A%22dashboard/onboarding/30daysofCode3-0b2e4befdea7f40ca7a8cdf9eb066d9b.svg%22%2C%22dashboard/onboarding/ctci1.svg%22%3A%22dashboard/onboarding/ctci1-c8438776b7b3b5f99fe07757ae6b2fbb.svg%22%2C%22dashboard/onboarding/ctci2.svg%22%3A%22dashboard/onboarding/ctci2-b51cf0f316fc5bceca1d2a3da4cb8a55.svg%22%2C%22dashboard/onboarding/ctci3.svg%22%3A%22dashboard/onboarding/ctci3-266d5b21bd1027eddd02bf2889d6b025.svg%22%2C%22dashboard/cpp.svg%22%3A%22dashboard/cpp-4644489c8b8e68a81dd0ccfac5097c2e.svg%22%2C%22dashboard/cracking-the-coding-interview.svg%22%3A%22dashboard/cracking-the-coding-interview-a56b2213a9c4f9393bfeb13261449c37.svg%22%2C%22dashboard/ai.svg%22%3A%22dashboard/ai-d4f37930ce7e66fa11f3005967f8a717.svg%22%2C%22dashboard/10-days-of-javascript.svg%22%3A%22dashboard/10-days-of-javascript-bf50d09114e28b603041e791559003b6.svg%22%2C%22dashboard/java.svg%22%3A%22dashboard/java-5a95cc68f65be63c24f5913e29bafb66.svg%22%2C%22dashboard/general-programming.svg%22%3A%22dashboard/general-programming-2459840e93031c3031ad00f8e7dbac9a.svg%22%2C%22dashboard/10-days-of-statistics.svg%22%3A%22dashboard/10-days-of-statistics-f45c998a5d47c9527eb61e620f35f5c0.svg%22%2C%22dashboard/mathematics.svg%22%3A%22dashboard/mathematics-3ec234bd89020880ff0349f9cacdab30.svg%22%2C%22dashboard/databases.svg%22%3A%22dashboard/databases-0ff7fcc96c1e9516abc9ea327c9a0ef9.svg%22%2C%22dashboard/algorithms.svg%22%3A%22dashboard/algorithms-ea9e958ddb5b097c5ebcdd22de4a9766.svg%22%2C%22dashboard/python.svg%22%3A%22dashboard/python-473706315bc214a540c1ca7b57f60854.svg%22%2C%22dashboard/math.svg%22%3A%22dashboard/math-3ec234bd89020880ff0349f9cacdab30.svg%22%2C%22dashboard/fp.svg%22%3A%22dashboard/fp-4adca59ec52674a2bf3a11af30f2b20b.svg%22%2C%22dashboard/distributed-systems.svg%22%3A%22dashboard/distributed-systems-6d49b9ff27f4010caee9b7114619b557.svg%22%2C%22dashboard/ruby.svg%22%3A%22dashboard/ruby-1f006f05093311ee3ce9445672ea5b82.svg%22%2C%22dashboard/data-structures.svg%22%3A%22dashboard/data-structures-e83daf9e8769351037cc25ff131931d1.svg%22%2C%22dashboard/linkedin-placements.svg%22%3A%22dashboard/linkedin-placements-f9b3045938ab286d0ebbb3ec89c2ce2b.svg%22%2C%22dashboard/30-days-of-code.svg%22%3A%22dashboard/30-days-of-code-bf00cb8a1c6f38bf917f45ea7ab2bf6b.svg%22%2C%22dashboard/security.svg%22%3A%22dashboard/security-ee10c8f654e78f4659d5dc6305768a63.svg%22%2C%22dashboard/regex.svg%22%3A%22dashboard/regex-d83b1db79fe03650410202032d3b8afd.svg%22%2C%22dashboard/shell.svg%22%3A%22dashboard/shell-5c42f1aa41f72148347b7e91bf46ae4f.svg%22%2C%22dashboard/sql.svg%22%3A%22dashboard/sql-be1ac821f4358a522d8eba7600e69549.svg%22%2C%22brand/h_mark_sm.svg%22%3A%22brand/h_mark_sm-2b74ffcaf85d7091a6301c30d6c411c5.svg%22%2C%22ajax-view-loader.gif%22%3A%22ajax-view-loader-b39b0f523d38e9b7bbf73e575f14b922.gif%22%2C%22hackerrank_r_jobs.js%22%3A%22hackerrank_r_jobs-721e58241291f1946e64.js%22%2C%22brand/typemark_60x200.svg%22%3A%22brand/typemark_60x200-7663393e8fa881c15057b1a46b8e61e3.svg%22%2C%22badges/star.png%22%3A%22badges/star-f16c5e55373f68cc1936665134bf36a9.png%22%2C%22badges/star-outline.png%22%3A%22badges/star-outline-f83d79fcb1327efc789f18fc8cb0bbb1.png%22%2C%22hackerrank_r_profile.js%22%3A%22hackerrank_r_profile-417d6d77714c1a8dde48.js%22%2C%22hackerrank_r_community.css%22%3A%22hackerrank_r_community-fdeea7d00d.css%22%2C%22codemirror_basic.js%22%3A%22codemirror_basic-019522375b017824c3a79637bd031343.js%22%2C%22icons/party.png%22%3A%22icons/party-11dc97b9cfc10ef94525bd53ed05f24d.png%22%2C%22challenges/sidebar_discuss.png%22%3A%22challenges/sidebar_discuss-29ac47c3aeffee3966a1c29b07b60f2e.png%22%2C%22challenges/sidebar_topscorers.png%22%3A%22challenges/sidebar_topscorers-5a8e7857617b4ef1688f82823c7f90a8.png%22%2C%22challenges/sidebar_tutorial.png%22%3A%22challenges/sidebar_tutorial-f7a2576060e5de5363c050354b3f3768.png%22%2C%22queued.gif%22%3A%22queued-e32b257f7cbf0d2bf5d2afee55610774.gif%22%2C%22fb-share.png%22%3A%22fb-share-b004104b3ff032032c3f04f921641c3b.png%22%2C%22tweet-filler.png%22%3A%22tweet-filler-b21b5772d0a5970f6afa3fc80dfe8308.png%22%2C%22jobs/defaultlogo.png%22%3A%22jobs/defaultlogo-c46e8d3632cf8bc41ead595bdf5dd9a8.png%22%2C%22jobs/lappy.png%22%3A%22jobs/lappy-83d8598ab4217eb088c979b1c19c6b82.png%22%2C%22jobs/defaultcoverimage.jpg%22%3A%22jobs/defaultcoverimage-e29f28b14c343e9e035f329c0addab72.jpg%22%7D%2C%22bundles%22%3A%7B%22hackerrank_r_app.js%22%3Atrue%2C%22hackerrank_r_common.js%22%3Atrue%2C%22hackerrank_r_community.js%22%3Atrue%2C%22hackerrank_r_challenge.js%22%3Atrue%2C%22hackerrank_r_jobs.js%22%3Atrue%7D%2C%22productNamespace%22%3A%22hackerrank%22%2C%22ENV%22%3A%22production%22%2C%22asset_path%22%3A%22https%3A//hrcdn.net/hackerrank/assets%22%2C%22asset_host%22%3A%22https%3A//hrcdn.net%22%2C%22asset_host_path%22%3A%22https%3A//hrcdn.net/hackerrank%22%2C%22filepicker_key%22%3A%22ApehXMbvXTWqWab7OmMr9z%22%2C%22pubsub_host%22%3A%22https%3A//pubsub.hackerrank.com%22%2C%22landing_contest_slug%22%3A%22master%22%2C%22current_contest_namespace%22%3Anull%2C%22using_contest_namespace%22%3Anull%2C%22slugs%22%3A%7B%22master%22%3A%7B%22type%22%3A%22contest%22%7D%2C%22vKING%22%3A%7B%22type%22%3A%22hacker%22%7D%7D%2C%22csrfToken%22%3A%22cM1fOOqqDlSCmEEGoMC4l8btPrhQH5JuUKDKafX+X2iCf9AoOnpolcLv8Fj30KXS6dqNBps7HJQfXHjXGVSPzw%3D%3D%22%2C%22cookieHeaders%22%3A%5B%5D%7D%2C%22abtest%22%3A%7B%22models%22%3A%5B%7B%22id%22%3A26%2C%22name%22%3A%22rewards-system%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A61%2C%22weight%22%3A100%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A62%2C%22weight%22%3A0%2C%22variant%22%3A%22treatment%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22control%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A27%2C%22name%22%3A%22onboarding-1%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A63%2C%22weight%22%3A50%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A64%2C%22weight%22%3A50%2C%22variant%22%3A%22treatment%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22treatment%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A31%2C%22name%22%3A%2230-days-of-code%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A72%2C%22weight%22%3A10%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A73%2C%22weight%22%3A40%2C%22variant%22%3A%22default%22%7D%2C%7B%22id%22%3A74%2C%22weight%22%3A10%2C%22variant%22%3A%22variant-ipn-daily%22%7D%2C%7B%22id%22%3A75%2C%22weight%22%3A10%2C%22variant%22%3A%22variant-one-daily%22%7D%2C%7B%22id%22%3A76%2C%22weight%22%3A10%2C%22variant%22%3A%22variant-feed-daily%22%7D%2C%7B%22id%22%3A77%2C%22weight%22%3A10%2C%22variant%22%3A%22variant-all-daily%22%7D%2C%7B%22id%22%3A78%2C%22weight%22%3A10%2C%22variant%22%3A%22variant-all%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22variant-one-daily%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A35%2C%22name%22%3A%22world-codesprint%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A89%2C%22weight%22%3A10%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A90%2C%22weight%22%3A15%2C%22variant%22%3A%22treatment1-register%22%7D%2C%7B%22id%22%3A91%2C%22weight%22%3A15%2C%22variant%22%3A%22treatment1-landing%22%7D%2C%7B%22id%22%3A92%2C%22weight%22%3A15%2C%22variant%22%3A%22treatment2-register%22%7D%2C%7B%22id%22%3A93%2C%22weight%22%3A15%2C%22variant%22%3A%22treatment2-landing%22%7D%2C%7B%22id%22%3A94%2C%22weight%22%3A15%2C%22variant%22%3A%22treatment3-register%22%7D%2C%7B%22id%22%3A95%2C%22weight%22%3A15%2C%22variant%22%3A%22treatment3-landing%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22treatment3-register%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A38%2C%22name%22%3A%22bypass-login%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A101%2C%22weight%22%3A10%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A102%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment%22%7D%2C%7B%22id%22%3A103%2C%22weight%22%3A80%2C%22variant%22%3A%22default%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22default%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A63%2C%22name%22%3A%22long-term-holdout%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A184%2C%22weight%22%3A5%2C%22variant%22%3A%22campaign_holdout%22%7D%2C%7B%22id%22%3A185%2C%22weight%22%3A5%2C%22variant%22%3A%22contest_holdout%22%7D%2C%7B%22id%22%3A186%2C%22weight%22%3A5%2C%22variant%22%3A%22tutorial_holdout%22%7D%2C%7B%22id%22%3A187%2C%22weight%22%3A80%2C%22variant%22%3A%22default%22%7D%2C%7B%22id%22%3A188%2C%22weight%22%3A5%2C%22variant%22%3A%22control%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22tutorial_holdout%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A82%2C%22name%22%3A%22hacker-iq-v1%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A240%2C%22weight%22%3A10%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A241%2C%22weight%22%3A0%2C%22variant%22%3A%22treatment%22%7D%2C%7B%22id%22%3A242%2C%22weight%22%3A90%2C%22variant%22%3A%22default%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22default%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A85%2C%22name%22%3A%22collection-limit%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A248%2C%22weight%22%3A5%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A249%2C%22weight%22%3A5%2C%22variant%22%3A%22treatment_15%22%7D%2C%7B%22id%22%3A250%2C%22weight%22%3A5%2C%22variant%22%3A%22treatment_20%22%7D%2C%7B%22id%22%3A251%2C%22weight%22%3A85%2C%22variant%22%3A%22default%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22default%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A86%2C%22name%22%3A%22eager-load-assets-v2%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A252%2C%22weight%22%3A5%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A253%2C%22weight%22%3A5%2C%22variant%22%3A%22treatment_2%22%7D%2C%7B%22id%22%3A254%2C%22weight%22%3A5%2C%22variant%22%3A%22treatment_4%22%7D%2C%7B%22id%22%3A255%2C%22weight%22%3A85%2C%22variant%22%3A%22default%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22default%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A89%2C%22name%22%3A%22mail-time-of-day-v2%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A262%2C%22weight%22%3A10%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A263%2C%22weight%22%3A80%2C%22variant%22%3A%22default%22%7D%2C%7B%22id%22%3A264%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22default%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A93%2C%22name%22%3A%22forum-markdown-tool%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A275%2C%22weight%22%3A40%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A276%2C%22weight%22%3A40%2C%22variant%22%3A%22treatment%22%7D%2C%7B%22id%22%3A277%2C%22weight%22%3A10%2C%22variant%22%3A%22default%22%7D%2C%7B%22id%22%3A278%2C%22weight%22%3A10%2C%22variant%22%3A%22holdout%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22control%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A105%2C%22name%22%3A%22campaign-multiday-v5%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A301%2C%22weight%22%3A10%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A302%2C%22weight%22%3A10%2C%22variant%22%3A%22even_more_aggressive%22%7D%2C%7B%22id%22%3A303%2C%22weight%22%3A80%2C%22variant%22%3A%22default%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22even_more_aggressive%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A107%2C%22name%22%3A%22booking-promo%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A309%2C%22weight%22%3A50%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A310%2C%22weight%22%3A50%2C%22variant%22%3A%22treatment%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22treatment%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A111%2C%22name%22%3A%22linkedin_tutorial%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A333%2C%22weight%22%3A100%2C%22variant%22%3A%22control%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22control%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A119%2C%22name%22%3A%22show-support-forum-box%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A360%2C%22weight%22%3A10%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A361%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment%22%7D%2C%7B%22id%22%3A362%2C%22weight%22%3A80%2C%22variant%22%3A%22default%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22default%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A121%2C%22name%22%3A%22hrw_synergy_onboarding%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A368%2C%22weight%22%3A40%2C%22variant%22%3A%22treatment%22%7D%2C%7B%22id%22%3A369%2C%22weight%22%3A40%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A370%2C%22weight%22%3A10%2C%22variant%22%3A%22default%22%7D%2C%7B%22id%22%3A371%2C%22weight%22%3A10%2C%22variant%22%3A%22holdout%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22treatment%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A122%2C%22name%22%3A%22react_migration%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A372%2C%22weight%22%3A0%2C%22variant%22%3A%22trm0%22%7D%2C%7B%22id%22%3A373%2C%22weight%22%3A1%2C%22variant%22%3A%22trm1%22%7D%2C%7B%22id%22%3A374%2C%22weight%22%3A1%2C%22variant%22%3A%22cnt1%22%7D%2C%7B%22id%22%3A375%2C%22weight%22%3A4%2C%22variant%22%3A%22trm2%22%7D%2C%7B%22id%22%3A376%2C%22weight%22%3A4%2C%22variant%22%3A%22cnt2%22%7D%2C%7B%22id%22%3A377%2C%22weight%22%3A5%2C%22variant%22%3A%22trm3%22%7D%2C%7B%22id%22%3A378%2C%22weight%22%3A5%2C%22variant%22%3A%22cnt3%22%7D%2C%7B%22id%22%3A379%2C%22weight%22%3A10%2C%22variant%22%3A%22trm4%22%7D%2C%7B%22id%22%3A380%2C%22weight%22%3A10%2C%22variant%22%3A%22cnt4%22%7D%2C%7B%22id%22%3A381%2C%22weight%22%3A10%2C%22variant%22%3A%22trm5%22%7D%2C%7B%22id%22%3A382%2C%22weight%22%3A10%2C%22variant%22%3A%22cnt5%22%7D%2C%7B%22id%22%3A383%2C%22weight%22%3A20%2C%22variant%22%3A%22trm6%22%7D%2C%7B%22id%22%3A384%2C%22weight%22%3A20%2C%22variant%22%3A%22cnt6%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22trm3%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A133%2C%22name%22%3A%22campaign-email-subject%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A424%2C%22weight%22%3A40%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A425%2C%22weight%22%3A40%2C%22variant%22%3A%22treatment%22%7D%2C%7B%22id%22%3A426%2C%22weight%22%3A40%2C%22variant%22%3A%22treatment_small%22%7D%2C%7B%22id%22%3A427%2C%22weight%22%3A10%2C%22variant%22%3A%22control_small%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22control%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A148%2C%22name%22%3A%22forum-help%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A496%2C%22weight%22%3A50%2C%22variant%22%3A%22treatment%22%7D%2C%7B%22id%22%3A497%2C%22weight%22%3A50%2C%22variant%22%3A%22control%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22treatment%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A151%2C%22name%22%3A%22challenges-filters-v3%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A504%2C%22weight%22%3A40%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A505%2C%22weight%22%3A40%2C%22variant%22%3A%22treatment%22%7D%2C%7B%22id%22%3A506%2C%22weight%22%3A10%2C%22variant%22%3A%22control_small%22%7D%2C%7B%22id%22%3A507%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment_small%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22control%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A153%2C%22name%22%3A%22contest-promo-ipn%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A512%2C%22weight%22%3A50%2C%22variant%22%3A%22treatment%22%7D%2C%7B%22id%22%3A513%2C%22weight%22%3A50%2C%22variant%22%3A%22control%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22treatment%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A154%2C%22name%22%3A%22community-button-styles%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A514%2C%22weight%22%3A40%2C%22variant%22%3A%22treatment%22%7D%2C%7B%22id%22%3A515%2C%22weight%22%3A40%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A516%2C%22weight%22%3A10%2C%22variant%22%3A%22control_small%22%7D%2C%7B%22id%22%3A517%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment_small%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22treatment%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A155%2C%22name%22%3A%22contest-automation-reminder-3%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A518%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment-0%22%7D%2C%7B%22id%22%3A519%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment-1%22%7D%2C%7B%22id%22%3A520%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment-2%22%7D%2C%7B%22id%22%3A521%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment-3%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22treatment-3%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A156%2C%22name%22%3A%22contest-automation-reminder%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A522%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment-0%22%7D%2C%7B%22id%22%3A523%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment-1%22%7D%2C%7B%22id%22%3A524%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment-2%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22treatment-1%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A157%2C%22name%22%3A%22contest-automation-start%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A525%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment-0%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22treatment-0%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A158%2C%22name%22%3A%22contest-automation-mid%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A526%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment-0%22%7D%2C%7B%22id%22%3A527%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment-1%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22treatment-1%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A159%2C%22name%22%3A%22candidate_search_service_v1%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A528%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment_small%22%7D%2C%7B%22id%22%3A529%2C%22weight%22%3A40%2C%22variant%22%3A%22treatment_large%22%7D%2C%7B%22id%22%3A531%2C%22weight%22%3A10%2C%22variant%22%3A%22control_small%22%7D%2C%7B%22id%22%3A532%2C%22weight%22%3A40%2C%22variant%22%3A%22control_large%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22treatment_large%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A160%2C%22name%22%3A%22remove-rank%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A533%2C%22weight%22%3A50%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A534%2C%22weight%22%3A50%2C%22variant%22%3A%22treatment%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22control%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A161%2C%22name%22%3A%22test-competitions%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A535%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment_small%22%7D%2C%7B%22id%22%3A536%2C%22weight%22%3A40%2C%22variant%22%3A%22treatment_large%22%7D%2C%7B%22id%22%3A537%2C%22weight%22%3A10%2C%22variant%22%3A%22control_small%22%7D%2C%7B%22id%22%3A538%2C%22weight%22%3A40%2C%22variant%22%3A%22control_large%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22control_large%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A164%2C%22name%22%3A%22hacker-level-v1%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A548%2C%22weight%22%3A100%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A549%2C%22weight%22%3A0%2C%22variant%22%3A%22treatment%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22control%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A165%2C%22name%22%3A%22hacker-level-new-v1%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A550%2C%22weight%22%3A0%2C%22variant%22%3A%22cnt_norm_0%22%7D%2C%7B%22id%22%3A551%2C%22weight%22%3A0%2C%22variant%22%3A%22trm_norm_0%22%7D%2C%7B%22id%22%3A552%2C%22weight%22%3A0%2C%22variant%22%3A%22trm_adm_0%22%7D%2C%7B%22id%22%3A553%2C%22weight%22%3A1%2C%22variant%22%3A%22trm_norm_1%22%7D%2C%7B%22id%22%3A554%2C%22weight%22%3A1%2C%22variant%22%3A%22cnt_norm_1%22%7D%2C%7B%22id%22%3A555%2C%22weight%22%3A4%2C%22variant%22%3A%22trm_norm_2%22%7D%2C%7B%22id%22%3A556%2C%22weight%22%3A4%2C%22variant%22%3A%22cnt_norm_2%22%7D%2C%7B%22id%22%3A557%2C%22weight%22%3A5%2C%22variant%22%3A%22trm_norm_3%22%7D%2C%7B%22id%22%3A558%2C%22weight%22%3A5%2C%22variant%22%3A%22cnt_norm_3%22%7D%2C%7B%22id%22%3A559%2C%22weight%22%3A10%2C%22variant%22%3A%22trm_norm_4%22%7D%2C%7B%22id%22%3A560%2C%22weight%22%3A10%2C%22variant%22%3A%22cnt_norm_4%22%7D%2C%7B%22id%22%3A561%2C%22weight%22%3A10%2C%22variant%22%3A%22trm_norm_5%22%7D%2C%7B%22id%22%3A562%2C%22weight%22%3A10%2C%22variant%22%3A%22cnt_norm_5%22%7D%2C%7B%22id%22%3A563%2C%22weight%22%3A20%2C%22variant%22%3A%22trm_norm_6%22%7D%2C%7B%22id%22%3A564%2C%22weight%22%3A20%2C%22variant%22%3A%22cnt_norm_6%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22cnt_norm_5%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A174%2C%22name%22%3A%22nux-mails%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A615%2C%22weight%22%3A50%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A616%2C%22weight%22%3A50%2C%22variant%22%3A%22treatment%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22control%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A175%2C%22name%22%3A%22challenge-tour%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A617%2C%22weight%22%3A40%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A618%2C%22weight%22%3A40%2C%22variant%22%3A%22treatment%22%7D%2C%7B%22id%22%3A619%2C%22weight%22%3A10%2C%22variant%22%3A%22control-small%22%7D%2C%7B%22id%22%3A620%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment-small%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22control%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A177%2C%22name%22%3A%22dashboard-survey-new%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A625%2C%22weight%22%3A40%2C%22variant%22%3A%22control-survey1%22%7D%2C%7B%22id%22%3A626%2C%22weight%22%3A40%2C%22variant%22%3A%22treatment%22%7D%2C%7B%22id%22%3A627%2C%22weight%22%3A5%2C%22variant%22%3A%22control-survey2%22%7D%2C%7B%22id%22%3A628%2C%22weight%22%3A5%2C%22variant%22%3A%22control-nosurvey%22%7D%2C%7B%22id%22%3A629%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment-small%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22treatment%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A178%2C%22name%22%3A%22dashboard-feedback%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A630%2C%22weight%22%3A50%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A631%2C%22weight%22%3A50%2C%22variant%22%3A%22treatment%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22treatment%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A179%2C%22name%22%3A%22hrw-showctci%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A632%2C%22weight%22%3A50%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A633%2C%22weight%22%3A50%2C%22variant%22%3A%22treatment%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22control%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A181%2C%22name%22%3A%2230days-tutorial-nav2%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A646%2C%22weight%22%3A20%2C%22variant%22%3A%22cnt%22%7D%2C%7B%22id%22%3A647%2C%22weight%22%3A5%2C%22variant%22%3A%22cnt_small%22%7D%2C%7B%22id%22%3A648%2C%22weight%22%3A20%2C%22variant%22%3A%22trm0%22%7D%2C%7B%22id%22%3A649%2C%22weight%22%3A5%2C%22variant%22%3A%22trm0_small%22%7D%2C%7B%22id%22%3A650%2C%22weight%22%3A20%2C%22variant%22%3A%22trm1%22%7D%2C%7B%22id%22%3A651%2C%22weight%22%3A5%2C%22variant%22%3A%22trm1_small%22%7D%2C%7B%22id%22%3A652%2C%22weight%22%3A20%2C%22variant%22%3A%22trm2%22%7D%2C%7B%22id%22%3A653%2C%22weight%22%3A5%2C%22variant%22%3A%22trm2_small%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22trm1%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A182%2C%22name%22%3A%22ml-ctr-live-v2%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A654%2C%22weight%22%3A10%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A655%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment-open%22%7D%2C%7B%22id%22%3A656%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment-click%22%7D%2C%7B%22id%22%3A657%2C%22weight%22%3A10%2C%22variant%22%3A%22variant1%22%7D%2C%7B%22id%22%3A658%2C%22weight%22%3A10%2C%22variant%22%3A%22variant2%22%7D%2C%7B%22id%22%3A659%2C%22weight%22%3A10%2C%22variant%22%3A%22variant3%22%7D%2C%7B%22id%22%3A660%2C%22weight%22%3A20%2C%22variant%22%3A%22variant4%22%7D%2C%7B%22id%22%3A661%2C%22weight%22%3A20%2C%22variant%22%3A%22variant5%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22treatment-open%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A183%2C%22name%22%3A%22jobs-hybrid-app%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A662%2C%22weight%22%3A0%2C%22variant%22%3A%22trm0%22%7D%2C%7B%22id%22%3A663%2C%22weight%22%3A10%2C%22variant%22%3A%22trm1%22%7D%2C%7B%22id%22%3A664%2C%22weight%22%3A10%2C%22variant%22%3A%22cnt1%22%7D%2C%7B%22id%22%3A665%2C%22weight%22%3A40%2C%22variant%22%3A%22trm2%22%7D%2C%7B%22id%22%3A666%2C%22weight%22%3A40%2C%22variant%22%3A%22cnt2%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22cnt2%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A184%2C%22name%22%3A%2210-days-of-javascript%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A667%2C%22weight%22%3A0%2C%22variant%22%3A%22trm0%22%7D%2C%7B%22id%22%3A668%2C%22weight%22%3A5%2C%22variant%22%3A%22trm1%22%7D%2C%7B%22id%22%3A669%2C%22weight%22%3A5%2C%22variant%22%3A%22cnt1%22%7D%2C%7B%22id%22%3A670%2C%22weight%22%3A10%2C%22variant%22%3A%22trm2%22%7D%2C%7B%22id%22%3A671%2C%22weight%22%3A10%2C%22variant%22%3A%22cnt2%22%7D%2C%7B%22id%22%3A672%2C%22weight%22%3A15%2C%22variant%22%3A%22trm3%22%7D%2C%7B%22id%22%3A673%2C%22weight%22%3A15%2C%22variant%22%3A%22cnt3%22%7D%2C%7B%22id%22%3A674%2C%22weight%22%3A20%2C%22variant%22%3A%22trm4%22%7D%2C%7B%22id%22%3A675%2C%22weight%22%3A20%2C%22variant%22%3A%22cnt4%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22trm1%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A186%2C%22name%22%3A%22email-verify%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A684%2C%22weight%22%3A5%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A685%2C%22weight%22%3A5%2C%22variant%22%3A%22banner_large_verified%22%7D%2C%7B%22id%22%3A686%2C%22weight%22%3A5%2C%22variant%22%3A%22banner_small_all%22%7D%2C%7B%22id%22%3A687%2C%22weight%22%3A5%2C%22variant%22%3A%22banner_small_verified%22%7D%2C%7B%22id%22%3A688%2C%22weight%22%3A5%2C%22variant%22%3A%22var1%22%7D%2C%7B%22id%22%3A689%2C%22weight%22%3A5%2C%22variant%22%3A%22var2%22%7D%2C%7B%22id%22%3A690%2C%22weight%22%3A5%2C%22variant%22%3A%22var3%22%7D%2C%7B%22id%22%3A691%2C%22weight%22%3A5%2C%22variant%22%3A%22var4%22%7D%2C%7B%22id%22%3A692%2C%22weight%22%3A5%2C%22variant%22%3A%22var5%22%7D%2C%7B%22id%22%3A693%2C%22weight%22%3A5%2C%22variant%22%3A%22var6%22%7D%2C%7B%22id%22%3A694%2C%22weight%22%3A50%2C%22variant%22%3A%22default%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22var4%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A187%2C%22name%22%3A%22sidebar-ui%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A695%2C%22weight%22%3A40%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A696%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment_small%22%7D%2C%7B%22id%22%3A697%2C%22weight%22%3A40%2C%22variant%22%3A%22treatment%22%7D%2C%7B%22id%22%3A698%2C%22weight%22%3A10%2C%22variant%22%3A%22control_small%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22control%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A188%2C%22name%22%3A%22unsub-all-link%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A699%2C%22weight%22%3A10%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A700%2C%22weight%22%3A80%2C%22variant%22%3A%22default%22%7D%2C%7B%22id%22%3A701%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22default%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A189%2C%22name%22%3A%22ask-for-help%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A702%2C%22weight%22%3A10%2C%22variant%22%3A%22cnt10%22%7D%2C%7B%22id%22%3A703%2C%22weight%22%3A10%2C%22variant%22%3A%22trm10%22%7D%2C%7B%22id%22%3A704%2C%22weight%22%3A40%2C%22variant%22%3A%22cnt40%22%7D%2C%7B%22id%22%3A705%2C%22weight%22%3A40%2C%22variant%22%3A%22trm40%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22trm10%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A190%2C%22name%22%3A%22forum-search%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A706%2C%22weight%22%3A10%2C%22variant%22%3A%22cnt10%22%7D%2C%7B%22id%22%3A707%2C%22weight%22%3A10%2C%22variant%22%3A%22trm10%22%7D%2C%7B%22id%22%3A708%2C%22weight%22%3A40%2C%22variant%22%3A%22cnt40%22%7D%2C%7B%22id%22%3A709%2C%22weight%22%3A40%2C%22variant%22%3A%22trm40%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22cnt40%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A194%2C%22name%22%3A%22hrc-lb-friends%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A728%2C%22weight%22%3A10%2C%22variant%22%3A%22trm1%22%7D%2C%7B%22id%22%3A729%2C%22weight%22%3A10%2C%22variant%22%3A%22cnt1%22%7D%2C%7B%22id%22%3A730%2C%22weight%22%3A40%2C%22variant%22%3A%22trm2%22%7D%2C%7B%22id%22%3A731%2C%22weight%22%3A40%2C%22variant%22%3A%22cnt2%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22trm1%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A197%2C%22name%22%3A%22hrc-code-snippets%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A740%2C%22weight%22%3A10%2C%22variant%22%3A%22trm1%22%7D%2C%7B%22id%22%3A741%2C%22weight%22%3A10%2C%22variant%22%3A%22cnt1%22%7D%2C%7B%22id%22%3A742%2C%22weight%22%3A40%2C%22variant%22%3A%22trm2%22%7D%2C%7B%22id%22%3A743%2C%22weight%22%3A40%2C%22variant%22%3A%22cnt2%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22trm2%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A199%2C%22name%22%3A%22email-limit-one%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A748%2C%22weight%22%3A10%2C%22variant%22%3A%22control%22%7D%2C%7B%22id%22%3A749%2C%22weight%22%3A80%2C%22variant%22%3A%22default%22%7D%2C%7B%22id%22%3A750%2C%22weight%22%3A10%2C%22variant%22%3A%22treatment%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22default%22%2C%22forced%22%3Afalse%7D%7D%2C%7B%22id%22%3A200%2C%22name%22%3A%22new-signup-cta3%22%2C%22product%22%3A1%2C%22variants%22%3A%5B%7B%22id%22%3A751%2C%22weight%22%3A30%2C%22variant%22%3A%22default_developer%22%7D%2C%7B%22id%22%3A752%2C%22weight%22%3A30%2C%22variant%22%3A%22force_option_select%22%7D%2C%7B%22id%22%3A753%2C%22weight%22%3A30%2C%22variant%22%3A%22control%22%7D%5D%2C%22hacker_variant%22%3A%7B%22variant%22%3A%22force_option_select%22%2C%22forced%22%3Afalse%7D%7D%5D%7D%2C%22app%22%3A%7B%22clientInitialLoading%22%3Afalse%7D%7D
</script>
<script src="./HackerRank_files/hackerrank_r_common-e437e2ef7b1f92879a03.js.download"></script>
<script src="./HackerRank_files/hackerrank_r_app-c47dfd0cef5902409c3b.js.download"></script>
<!-- google analytics tracking -->
<script>
var _gaq = _gaq || [];
_gaq.push(['candidate_company._setAccount', 'UA-45092266-1']);
_gaq.push(['candidate_company._trackPageview']);
_gaq.push(['_setCampSourceKey', 'utm_source']);
_gaq.push(['_setCampMediumKey', 'utm_medium']);
_gaq.push(['_setCampContentKey', 'utm_keyword']);
_gaq.push(['_setCampTermKey', 'utm_keyword']);
_gaq.push(['_setCampNameKey', 'utm_campaign']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- Pending candidate site custom GA code -->
<!-- google analytics tracking end-->
<!-- mixpanel tracking -->
<script type="text/javascript">
(function(e,a){if(!a.__SV){var b=window;try{var c,l,i,j=b.location,g=j.hash;c=function(a,b){return(l=a.match(RegExp(b+"=([^&]*)")))?l[1]:null};g&&c(g,"state")&&(i=JSON.parse(decodeURIComponent(c(g,"state"))),"mpeditor"===i.action&&(b.sessionStorage.setItem("_mpcehash",g),history.replaceState(i.desiredHash||"",e.title,j.pathname+j.search)))}catch(m){}var k,h;window.mixpanel=a;a._i=[];a.init=function(b,c,f){function e(b,a){var c=a.split(".");2==c.length&&(b=b[c[0]],a=c[1]);b[a]=function(){b.push([a].concat(Array.prototype.slice.call(arguments,
0)))}}var d=a;"undefined"!==typeof f?d=a[f]=[]:f="mixpanel";d.people=d.people||[];d.toString=function(b){var a="mixpanel";"mixpanel"!==f&&(a+="."+f);b||(a+=" (stub)");return a};d.people.toString=function(){return d.toString(1)+".people (stub)"};k="disable time_event track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config reset people.set people.set_once people.increment people.append people.union people.track_charge people.clear_charges people.delete_user".split(" ");
for(h=0;h<k.length;h++)e(d,k[h]);a._i.push([b,c,f])};a.__SV=1.2;b=e.createElement("script");b.type="text/javascript";b.async=!0;b.src="undefined"!==typeof MIXPANEL_CUSTOM_LIB_URL?MIXPANEL_CUSTOM_LIB_URL:"file:"===e.location.protocol&&"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js".match(/^\/\//)?"https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js":"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js";c=e.getElementsByTagName("script")[0];c.parentNode.insertBefore(b,c)}})(document,window.mixpanel||[]);
mixpanel.init("bcb75af88bccc92724ac5fd79271e1ff");
mixpanel.init("86cf4681911d3ff600208fdc823c5ff5", {}, "jobs_test");
mixpanel.identify(Cookies.get("hackerrank_mixpanel_token"));
</script>
<!-- mixpanel tracking end-->
<!-- HeapAnalytics tracking start -->
<script type="text/javascript">
var heap = [];
var attrs = ["clearEventProperties","identify","setEventProperties","track","unsetEventProperty"];
for (var attribute in attrs) {
heap[attrs[attribute]] = function () {};
}
</script>
<!-- HeapAnalytics tracking end -->
<!-- Marketo to be added later -->
<!-- Olark start -->
<!-- Olark end -->
<!-- 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'
});
})();
</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
}
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);
hr_metrics.batch_track_record(true);
});
});
</script>
<!-- Facebook SDK -->
<!-- Twitter SDK -->
<!-- track button clicks -->
<script>
$(document).on('click', 'a, button, input, select, i, div, span, h5', null, function(e) {
var src = e.currentTarget, $src = $(e.currentTarget);
if ($src.attr('data-analytics')) {
action = 'Click'; data = $src.attr('data-analytics');
} else {
return;
}
hr_metrics.track(action, data, (function() {
var params={};
for (var _i=1; _i<=12; ++_i){
var _attr = 'data-attr'+_i;
if ($src.attr(_attr)){
params['attribute'+_i] = $src.attr(_attr);
}
}
var attributes = src.attributes, attr_length = src.attributes.length;
for (var i = 0; i < attr_length; i++){
var attribute = attributes[i];
if (attribute.name.indexOf('data-attr-') === 0){
param_name = attribute.name.substr('data-attr-'.length);
if (param_name.length > 0) {
params[param_name] = attribute.value;
}
}
}
return params;
})());
// google analytics
_gaq.push(['_trackEvent', 'Events' , action, data])
});
$(document).on('AnalyticsEvent', function(e) {
action = e.event_type || false;
data = e.event_name || false;
if (!action || !data) {
return;
}
params = {}
params['attribute1'] = e.event_value || ""
if (window.HR && window.HR.current_page) {
params['attribute2'] = window.HR.current_page;
}
if (window.HR && window.HR.current_contest) {
params['attribute3'] = window.HR.current_contest.get('name');
}
hr_metrics.track(action, data, params);
// google analytics
_gaq.push(['_trackEvent', 'Events' , action, data]);
});
</script>
<!-- track button clicks end-->
<!-- errorception tracking -->
<script type="text/javascript">
(function(_,e,rr,s){_errs=[s];var c=_.onerror;_.onerror=function(){var a=arguments;_errs.push(a);
c&&c.apply(this,a)};var b=function(){var c=e.createElement(rr),b=e.getElementsByTagName(rr)[0];
c.src="//beacon.errorception.com/"+s+".js";c.async=!0;b.parentNode.insertBefore(c,b)};
_.addEventListener?_.addEventListener("load",b,!1):_.attachEvent("onload",b)})
(window,document,"script","50b78854cb2e10773a00002d");
_errs.meta = {};