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 04:33Yuriy LyfenkoYuriy LyfenkoScore: 13,010Success
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 03:578,554144,304,87677,843,895094,732,288
2May 26, 2021 03:578,559134,507,41777,882,865094,707,712
3May 26, 2021 04:338,569142,708,48077,978,474094,732,288
4May 26, 2021 04:338,586153,038,16678,132,227094,748,672
5May 26, 2021 04:338,615139,093,76878,396,229094,785,536
6May 26, 2021 03:578,654143,050,77978,749,869094,666,752
7May 26, 2021 03:5712,941142,020,87864,868,00052,892,00094,777,344
8May 26, 2021 04:3312,958144,614,56469,951,00047,966,00094,568,448
9May 26, 2021 04:3312,966144,039,79275,997,00041,998,00094,588,928
10May 26, 2021 03:5712,966144,468,31473,995,00043,997,00094,736,384
11May 26, 2021 03:5712,993139,909,70870,140,00048,096,00094,605,312
12May 26, 2021 04:3313,007146,500,32768,212,00050,156,00094,773,248
13May 26, 2021 03:5713,010142,226,99271,237,00047,156,00094,568,448
14May 26, 2021 03:5713,012144,607,45467,232,00051,177,00094,691,328
15May 26, 2021 04:3313,025150,017,67367,299,00051,227,00092,930,048
16May 26, 2021 03:5713,026145,441,90767,738,00050,803,00094,674,944
17May 26, 2021 04:3313,076143,098,97768,997,00049,997,00094,785,536
18May 26, 2021 04:3313,150145,201,79370,802,00048,864,00092,966,912
19May 26, 2021 03:5713,162145,408,01970,867,00048,908,00093,196,288
20May 26, 2021 04:3313,273149,662,41667,877,00052,904,00094,572,544
21May 26, 2021 03:5713,305146,535,70279,050,00042,026,00093,016,064
22May 26, 2021 04:3313,499146,808,71265,916,00056,927,00093,184,000
23May 26, 2021 03:5713,685151,924,79271,305,00053,228,00093,270,016
24May 26, 2021 04:3313,834146,226,14872,937,00052,954,00093,184,000