XML to JSON Sergey Svistunov

Convert 1,000,000 person records from XML to JSON as fast as possible.

Input

XML document on STDIN:

<?xml version="1.0" encoding="UTF-8"?>
<persons>
    <person id="1512376">
        <age>30</age>
        <height>169.1</height>
        <married>true</married>
        <phone code="+6"><number>1283603279</number></phone>
        <phone code="+6"><number>1659964668</number></phone>
    </person>
    ...
</persons>

Output

One JSON object per person to STDOUT, preserving order:

{
    "id": 1512376,
    "age": 30,
    "height": 169.1,
    "married": true,
    "phones": [
        {
            "code": "+6",
            "number": 1283603279
        },
        {
            "code": "+6",
            "number": 1659964668
        }
    ]
}

Constraints

  • Preserve the order of persons
  • Omit the phones field if the phone array is empty
  • Maximum number of phones per person is 3
Back to listMay 26, 2021 06:58Yuriy LyfenkoYuriy LyfenkoScore: 14,233Success
Source Code

Source code access is restricted. Log in to request access.

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1May 26, 2021 06:228,504131,879,99677,383,733094,781,440
2May 26, 2021 06:588,510137,014,82877,441,609094,670,848
3May 26, 2021 06:228,521146,567,72177,544,079094,687,232
4May 26, 2021 06:588,524133,453,47477,572,683094,679,040
5May 26, 2021 06:228,559152,194,19477,885,275094,683,136
6May 26, 2021 06:588,568142,147,20977,969,945094,670,848
7May 26, 2021 06:2214,174156,291,14175,989,00052,992,00094,703,616
8May 26, 2021 06:2214,187151,603,77883,067,00046,037,00094,777,344
9May 26, 2021 06:5814,206153,456,41477,165,00052,112,00094,752,768
10May 26, 2021 06:2214,219153,102,47774,224,00055,166,00094,580,736
11May 26, 2021 06:5814,227160,566,13686,308,00043,154,00094,720,000
12May 26, 2021 06:5814,229160,785,53687,324,00042,156,00094,572,544
13May 26, 2021 06:2214,233154,688,25380,320,00049,196,00094,777,344
14May 26, 2021 06:2214,239159,949,45286,718,00042,860,00094,687,232
15May 26, 2021 06:2214,244156,229,35473,784,00055,837,00094,629,888
16May 26, 2021 06:5814,252157,792,15479,810,00049,881,00094,707,712
17May 26, 2021 06:5814,256157,084,76684,823,00044,906,00094,797,824
18May 26, 2021 06:5814,269150,536,95675,911,00053,937,00093,163,520
19May 26, 2021 06:5814,286153,427,50779,003,00051,002,00094,801,920
20May 26, 2021 06:5814,422153,017,35982,153,00049,091,00093,057,024
21May 26, 2021 06:2214,452158,820,43478,710,00052,806,00093,233,152
22May 26, 2021 06:2214,558157,985,72282,296,00050,180,00093,057,024
23May 26, 2021 06:2214,649156,885,16488,205,00045,105,00093,241,344
24May 26, 2021 06:5814,681162,232,48685,384,00048,217,00093,257,728