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 listJul 27, 2024 14:43Joad NacerJoad NacerScore: 3,275Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jul 27, 2024 14:413,16053,936,47718,843,0009,917,00093,220,864
2Jul 27, 2024 14:413,16053,685,48517,848,00010,907,00093,044,736
3Jul 27, 2024 14:433,22851,905,54119,243,00010,128,00093,134,848
4Jul 27, 2024 14:433,22954,764,10220,264,0009,119,00093,061,120
5Jul 27, 2024 14:413,23152,902,62520,279,0009,125,00093,036,544
6Jul 27, 2024 14:413,23251,740,44420,286,0009,128,00092,925,952
7Jul 27, 2024 14:433,23350,655,16620,289,0009,130,00093,163,520
8Jul 27, 2024 14:433,23553,107,43019,290,00010,152,00093,184,000
9Jul 27, 2024 14:413,24350,443,68819,334,00010,176,00093,073,408
10Jul 27, 2024 14:433,25760,472,59220,443,0009,199,00093,052,928
11Jul 27, 2024 14:433,27157,454,92718,849,00010,913,00093,024,256
12Jul 27, 2024 14:433,27254,939,79419,853,0009,926,00092,917,760
13Jul 27, 2024 14:413,27558,072,38619,870,0009,935,00093,138,944
14Jul 27, 2024 14:413,36094,434,71930,578,099094,490,624
15Jul 27, 2024 14:433,36894,274,11230,645,325094,756,864
16Jul 27, 2024 14:413,371108,630,27530,680,246094,498,816
17Jul 27, 2024 14:413,388102,147,17330,834,429094,507,008
18Jul 27, 2024 14:433,391106,912,97730,857,826094,490,624
19Jul 27, 2024 14:433,401100,118,75730,947,653094,498,816
20Jul 27, 2024 14:414,48971,574,91819,926,00020,922,00093,048,832
21Jul 27, 2024 14:435,25874,589,57619,937,00027,912,00093,077,504
22Jul 27, 2024 14:415,47876,247,51123,930,00025,924,00093,224,960
23Jul 27, 2024 14:435,54272,873,65122,192,00028,244,00093,048,832
24Jul 27, 2024 14:415,58579,436,69322,919,00027,902,00093,048,832