aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-244/clifton-wood/raku/ch-1.raku1
-rw-r--r--challenge-244/clifton-wood/raku/ch-2.raku5
-rw-r--r--challenge-244/oliver-oviedo/README1
-rw-r--r--challenge-244/rcmlz/raku/ch-1.raku29
-rw-r--r--challenge-244/rcmlz/raku/ch-2.raku15
-rw-r--r--members.json1
-rw-r--r--stats/pwc-current.json287
-rw-r--r--stats/pwc-language-breakdown-summary.json60
-rw-r--r--stats/pwc-language-breakdown.json3284
-rw-r--r--stats/pwc-leaders.json738
-rw-r--r--stats/pwc-summary-1-30.json112
-rw-r--r--stats/pwc-summary-121-150.json58
-rw-r--r--stats/pwc-summary-151-180.json48
-rw-r--r--stats/pwc-summary-181-210.json122
-rw-r--r--stats/pwc-summary-211-240.json58
-rw-r--r--stats/pwc-summary-241-270.json118
-rw-r--r--stats/pwc-summary-271-300.json108
-rw-r--r--stats/pwc-summary-301-330.json58
-rw-r--r--stats/pwc-summary-31-60.json48
-rw-r--r--stats/pwc-summary-61-90.json92
-rw-r--r--stats/pwc-summary-91-120.json36
-rw-r--r--stats/pwc-summary.json58
22 files changed, 2761 insertions, 2576 deletions
diff --git a/challenge-244/clifton-wood/raku/ch-1.raku b/challenge-244/clifton-wood/raku/ch-1.raku
new file mode 100644
index 0000000000..5e4b32f927
--- /dev/null
+++ b/challenge-244/clifton-wood/raku/ch-1.raku
@@ -0,0 +1 @@
+my @a = (8, 1, 2, 2, 3); @a.map( -> $i { @a.grep( * < $i ).elems }).gist.say
diff --git a/challenge-244/clifton-wood/raku/ch-2.raku b/challenge-244/clifton-wood/raku/ch-2.raku
new file mode 100644
index 0000000000..443f320e03
--- /dev/null
+++ b/challenge-244/clifton-wood/raku/ch-2.raku
@@ -0,0 +1,5 @@
+my @a = (2, 1, 4); my @b = do gather for 1..@a.elems {
+ take $_ for @a.combinations($_)
+};
+@b .= map({ .min * .max² });
+say "{ @b.gist }:{ @b.sum }"
diff --git a/challenge-244/oliver-oviedo/README b/challenge-244/oliver-oviedo/README
new file mode 100644
index 0000000000..ef00a13300
--- /dev/null
+++ b/challenge-244/oliver-oviedo/README
@@ -0,0 +1 @@
+Solutions by Oliver Oviedo.
diff --git a/challenge-244/rcmlz/raku/ch-1.raku b/challenge-244/rcmlz/raku/ch-1.raku
new file mode 100644
index 0000000000..58827215b6
--- /dev/null
+++ b/challenge-244/rcmlz/raku/ch-1.raku
@@ -0,0 +1,29 @@
+unit module rcmlz::raku::task-one:ver<0.0.1>:auth<github:rcmlz>:api<1>;
+
+# run in terminal: raku --optimize=3 -I challenge-nr244/rcmlz/raku/ -- test/challenge-nr244/raku/task-one.rakutest
+# or raku --optimize=3 -I challenge-nr244 -- test/benchmark-scalability.raku --task=task-one --user=rcmlz --max-run-times=1,3,7 --max-problem=10 --v=True --test-before-benchmark=True --out-folder=/tmp nr244; cat /tmp/nr244_task-one.csv
+
+#|[
+You are given an array of integers.
+- Write a script to calculate the number of integers smaller than the integer at each index.
+
+O(n log(n))
+]
+our sub solution(@input) is export {
+ my @output[@input.elems];
+
+ my @sorted = @input.sort(:k);
+ my %new-old = @sorted.pairs;
+ my %old-new = @sorted.antipairs;
+
+ # we avoid O(n^2) solution by using double mapping of sorted ids of input array
+ for @input.kv -> $k,$v {
+ my $pos = %old-new{$k};
+ while $pos > 0 && @input[%new-old{$pos - 1}] == $v {
+ $pos--;
+ }
+ @output[$k] = $pos;
+
+ }
+ return @output;
+} \ No newline at end of file
diff --git a/challenge-244/rcmlz/raku/ch-2.raku b/challenge-244/rcmlz/raku/ch-2.raku
new file mode 100644
index 0000000000..2bbc58ce4a
--- /dev/null
+++ b/challenge-244/rcmlz/raku/ch-2.raku
@@ -0,0 +1,15 @@
+unit module rcmlz::raku::task-two:ver<0.0.1>:auth<github:rcmlz>:api<1>;
+
+# run in terminal: raku --optimize=3 -I challenge-nr244/rcmlz/raku/ -- test/challenge-nr244/raku/task-two.rakutest
+# or raku --optimize=3 -I challenge-nr244 -- test/benchmark-scalability.raku --task=task-two --user=rcmlz --max-run-times=1,3,7 --max-problem=10 --v=True --test-before-benchmark=True --out-folder=/tmp nr244; cat /tmp/nr244_task-two.csv
+
+#|[
+You are given an array of integers representing the strength.
+- Write a script to return the sum of the powers of all possible combinations;
+- power is defined as the square of the largest number in a sequence, multiplied by the smallest.
+]
+our sub solution(@input) is export {
+ [+] @input.combinations
+ .grep( *.elems )
+ .map( { .min * .max**2 } )
+} \ No newline at end of file
diff --git a/members.json b/members.json
index 78339e432f..b59c617e25 100644
--- a/members.json
+++ b/members.json
@@ -194,6 +194,7 @@
"noud" : "Noud Aldenhoven",
"ohmycloud" : "Chenyf",
"oleksii-tsvietnov" : "Oleksii Tsvietnov",
+ "oliver-oviedo" : "Oliver Oviedo",
"olivier-delouya" : "Olivier Delouya",
"olli-antti" : "Olli-Antti Kivilahti",
"ozzy" : "Ozzy",
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index a27e2a81e2..8c97bcaeae 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,18 +1,18 @@
{
- "title" : {
- "text" : "The Weekly Challenge - 244"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
+ "xAxis" : {
+ "type" : "category"
},
"legend" : {
"enabled" : 0
},
+ "subtitle" : {
+ "text" : "[Champions: 24] Last updated at 2023-11-24 22:24:33 GMT"
+ },
"drilldown" : {
"series" : [
{
+ "name" : "Ali Moradi",
+ "id" : "Ali Moradi",
"data" : [
[
"Perl",
@@ -26,9 +26,31 @@
"Blog",
1
]
+ ]
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
],
- "name" : "Ali Moradi",
- "id" : "Ali Moradi"
+ "id" : "Bob Lied",
+ "name" : "Bob Lied"
+ },
+ {
+ "id" : "Clifton Wood",
+ "data" : [
+ [
+ "Raku",
+ 2
+ ]
+ ],
+ "name" : "Clifton Wood"
},
{
"id" : "Dave Jacoby",
@@ -45,18 +67,18 @@
"name" : "Dave Jacoby"
},
{
- "name" : "David Ferrone",
+ "id" : "David Ferrone",
"data" : [
[
"Perl",
2
]
],
- "id" : "David Ferrone"
+ "name" : "David Ferrone"
},
{
- "id" : "E. Choroba",
"name" : "E. Choroba",
+ "id" : "E. Choroba",
"data" : [
[
"Perl",
@@ -65,17 +87,30 @@
]
},
{
+ "name" : "Humberto Massa",
+ "id" : "Humberto Massa",
"data" : [
[
"Raku",
2
]
+ ]
+ },
+ {
+ "id" : "Jorg Sommrey",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
],
- "name" : "Humberto Massa",
- "id" : "Humberto Massa"
+ "name" : "Jorg Sommrey"
},
{
- "name" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -90,10 +125,29 @@
2
]
],
- "id" : "Laurent Rosenfeld"
+ "id" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld"
+ },
+ {
+ "name" : "Lubos Kolouch",
+ "id" : "Lubos Kolouch",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ]
},
{
- "id" : "Luca Ferrari",
+ "name" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -104,11 +158,11 @@
8
]
],
- "name" : "Luca Ferrari"
+ "id" : "Luca Ferrari"
},
{
- "id" : "Mark Anderson",
"name" : "Mark Anderson",
+ "id" : "Mark Anderson",
"data" : [
[
"Raku",
@@ -117,44 +171,54 @@
]
},
{
- "name" : "Matthew Neleigh",
+ "id" : "Matthew Neleigh",
"data" : [
[
"Perl",
2
]
],
- "id" : "Matthew Neleigh"
+ "name" : "Matthew Neleigh"
},
{
- "name" : "Niels van Dijke",
+ "id" : "Nelo Tovar",
"data" : [
[
"Perl",
2
]
],
- "id" : "Niels van Dijke"
+ "name" : "Nelo Tovar"
},
{
+ "name" : "Niels van Dijke",
+ "id" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
- ],
+ ]
+ },
+ {
"name" : "Paulo Custodio",
- "id" : "Paulo Custodio"
+ "id" : "Paulo Custodio",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ]
},
{
- "id" : "Peter Campbell Smith",
- "name" : "Peter Campbell Smith",
"data" : [
[
"Blog",
2
]
- ]
+ ],
+ "id" : "Peter Campbell Smith",
+ "name" : "Peter Campbell Smith"
},
{
"id" : "Peter Meszaros",
@@ -167,7 +231,32 @@
"name" : "Peter Meszaros"
},
{
+ "name" : "rcmlz",
+ "data" : [
+ [
+ "Raku",
+ 2
+ ]
+ ],
+ "id" : "rcmlz"
+ },
+ {
+ "id" : "Robbie Hatley",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ],
+ "name" : "Robbie Hatley"
+ },
+ {
"name" : "Roger Bell_West",
+ "id" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -177,11 +266,11 @@
"Raku",
2
]
- ],
- "id" : "Roger Bell_West"
+ ]
},
{
"name" : "Thomas Kohler",
+ "id" : "Thomas Kohler",
"data" : [
[
"Perl",
@@ -191,10 +280,10 @@
"Blog",
2
]
- ],
- "id" : "Thomas Kohler"
+ ]
},
{
+ "name" : "Ulrich Rieke",
"id" : "Ulrich Rieke",
"data" : [
[
@@ -205,10 +294,10 @@
"Raku",
2
]
- ],
- "name" : "Ulrich Rieke"
+ ]
},
{
+ "name" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -219,83 +308,88 @@
1
]
],
- "name" : "W. Luis Mochan",
"id" : "W. Luis Mochan"
}
]
},
- "subtitle" : {
- "text" : "[Champions: 17] Last updated at 2023-11-23 10:45:06 GMT"
- },
- "xAxis" : {
- "type" : "category"
- },
"chart" : {
"type" : "column"
},
- "tooltip" : {
- "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
- "followPointer" : 1
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
- }
- },
"series" : [
{
+ "colorByPoint" : 1,
"data" : [
{
"name" : "Ali Moradi",
- "drilldown" : "Ali Moradi",
- "y" : 5
+ "y" : 5,
+ "drilldown" : "Ali Moradi"
},
{
"y" : 3,
+ "name" : "Bob Lied",
+ "drilldown" : "Bob Lied"
+ },
+ {
+ "name" : "Clifton Wood",
+ "y" : 2,
+ "drilldown" : "Clifton Wood"
+ },
+ {
+ "drilldown" : "Dave Jacoby",
"name" : "Dave Jacoby",
- "drilldown" : "Dave Jacoby"
+ "y" : 3
},
{
"y" : 2,
- "drilldown" : "David Ferrone",
- "name" : "David Ferrone"
+ "name" : "David Ferrone",
+ "drilldown" : "David Ferrone"
},
{
"y" : 2,
- "drilldown" : "E. Choroba",
- "name" : "E. Choroba"
+ "name" : "E. Choroba",
+ "drilldown" : "E. Choroba"
},
{
- "drilldown" : "Humberto Massa",
+ "y" : 2,
"name" : "Humberto Massa",
- "y" : 2
+ "drilldown" : "Humberto Massa"
+ },
+ {
+ "drilldown" : "Jorg Sommrey",
+ "name" : "Jorg Sommrey",
+ "y" : 3
},
{
- "y" : 6,
+ "drilldown" : "Laurent Rosenfeld",
"name" : "Laurent Rosenfeld",
- "drilldown" : "Laurent Rosenfeld"
+ "y" : 6
+ },
+ {
+ "drilldown" : "Lubos Kolouch",
+ "name" : "Lubos Kolouch",
+ "y" : 5
},
{
"name" : "Luca Ferrari",
- "drilldown" : "Luca Ferrari",
- "y" : 10
+ "y" : 10,
+ "drilldown" : "Luca Ferrari"
},
{
"y" : 2,
- "drilldown" : "Mark Anderson",
- "name" : "Mark Anderson"
+ "name" : "Mark Anderson",
+ "drilldown" : "Mark Anderson"
},
{
- "y" : 2,
"name" : "Matthew Neleigh",
+ "y" : 2,
"drilldown" : "Matthew Neleigh"
},
{
+ "drilldown" : "Nelo Tovar",
+ "name" : "Nelo Tovar",
+ "y" : 2
+ },
+ {
"y" : 2,
"name" : "Niels van Dijke",
"drilldown" : "Niels van Dijke"
@@ -306,19 +400,29 @@
"drilldown" : "Paulo Custodio"
},
{
- "y" : 2,
"drilldown" : "Peter Campbell Smith",
+ "y" : 2,
"name" : "Peter Campbell Smith"
},
{
"drilldown" : "Peter Meszaros",
- "name" : "Peter Meszaros",
- "y" : 2
+ "y" : 2,
+ "name" : "Peter Meszaros"
},
{
- "drilldown" : "Roger Bell_West",
+ "name" : "rcmlz",
+ "y" : 2,
+ "drilldown" : "rcmlz"
+ },
+ {
+ "drilldown" : "Robbie Hatley",
+ "name" : "Robbie Hatley",
+ "y" : 3
+ },
+ {
+ "y" : 4,
"name" : "Roger Bell_West",
- "y" : 4
+ "drilldown" : "Roger Bell_West"
},
{
"y" : 4,
@@ -326,9 +430,9 @@
"drilldown" : "Thomas Kohler"
},
{
- "name" : "Ulrich Rieke",
"drilldown" : "Ulrich Rieke",
- "y" : 4
+ "y" : 4,
+ "name" : "Ulrich Rieke"
},
{
"y" : 3,
@@ -336,8 +440,29 @@
"drilldown" : "W. Luis Mochan"
}
],
- "name" : "The Weekly Challenge - 244",
- "colorByPoint" : 1
+ "name" : "The Weekly Challenge - 244"
+ }
+ ],
+ "title" : {
+ "text" : "The Weekly Challenge - 244"
+ },
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ }
+ }
+ },
+ "tooltip" : {
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
+ "followPointer" : 1
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
}
- ]
+ }
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index efa084a78f..7b745cc567 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,7 +1,4 @@
{
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
- },
"xAxis" : {
"type" : "category",
"labels" : {
@@ -11,53 +8,56 @@
}
}
},
- "chart" : {
- "type" : "column"
- },
- "subtitle" : {
- "text" : "Last updated at 2023-11-23 10:45:06 GMT"
- },
"legend" : {
"enabled" : "false"
},
- "yAxis" : {
- "min" : 0,
- "title" : {
- "text" : null
- }
- },
- "title" : {
- "text" : "The Weekly Challenge Contributions [2019 - 2023]"
+ "subtitle" : {
+ "text" : "Last updated at 2023-11-24 22:24:33 GMT"
},
"series" : [
{
- "name" : "Contributions",
"data" : [
[
"Blog",
- 4223
+ 4227
],
[
"Perl",
- 12591
+ 12601
],
[
"Raku",
- 7259
+ 7265
]
],
"dataLabels" : {
- "align" : "right",
- "y" : 10,
- "format" : "{point.y:.0f}",
- "enabled" : "true",
- "color" : "#FFFFFF",
"style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
},
+ "color" : "#FFFFFF",
+ "format" : "{point.y:.0f}",
+ "y" : 10,
+ "align" : "right",
+ "enabled" : "true",
"rotation" : -90
- }
+ },
+ "name" : "Contributions"
+ }
+ ],
+ "title" : {
+ "text" : "The Weekly Challenge Contributions [2019 - 2023]"
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
+ },
+ "yAxis" : {
+ "min" : 0,
+ "title" : {
+ "text" : null
}
- ]
+ }
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index 95a53eb028..0547662672 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,4 +1,14 @@
{
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "tooltip" : {
+ "headerFormat" : "<span style=\"font-size:11px\"></span>",
+ "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>",
+ "followPointer" : "true"
+ },
"plotOptions" : {
"series" : {
"dataLabels" : {
@@ -8,1256 +18,11 @@
"borderWidth" : 0
}
},
- "series" : [
- {
- "colorByPoint" : "true",
- "name" : "The Weekly Challenge Languages",
- "data" : [
- {
- "y" : 164,
- "name" : "#001",
- "drilldown" : "001"
- },
- {
- "name" : "#002",
- "drilldown" : "002",
- "y" : 129
- },
- {
- "name" : "#003",
- "drilldown" : "003",
- "y" : 87
- },
- {
- "y" : 103,
- "name" : "#004",
- "drilldown" : "004"
- },
- {
- "drilldown" : "005",
- "name" : "#005",
- "y" : 80
- },
- {
- "y" : 61,
- "drilldown" : "006",
- "name" : "#006"
- },
- {
- "drilldown" : "007",
- "name" : "#007",
- "y" : 69
- },
- {
- "drilldown" : "008",
- "name" : "#008",
- "y" : 82
- },
- {
- "y" : 80,
- "drilldown" : "009",
- "name" : "#009"
- },
- {
- "drilldown" : "010",
- "name" : "#010",
- "y" : 69
- },
- {
- "drilldown" : "011",
- "name" : "#011",
- "y" : 89
- },
- {
- "y" : 92,
- "drilldown" : "012",
- "name" : "#012"
- },
- {
- "drilldown" : "013",
- "name" : "#013",
- "y" : 87
- },
- {
- "y" : 102,
- "name" : "#014",
- "drilldown" : "014"
- },
- {
- "drilldown" : "015",
- "name" : "#015",
- "y" : 101
- },
- {
- "name" : "#016",
- "drilldown" : "016",
- "y" : 75
- },
- {
- "name" : "#017",
- "drilldown" : "017",
- "y" : 86
- },
- {
- "y" : 83,
- "drilldown" : "018",
- "name" : "#018"
- },
- {
- "y" : 105,
- "drilldown" : "019",
- "name" : "#019"
- },
- {
- "y" : 103,
- "drilldown" : "020",
- "name" : "#020"
- },
- {
- "y" : 74,
- "name" : "#021",
- "drilldown" : "021"
- },
- {
- "y" : 72,
- "name" : "#022",
- "drilldown" : "022"
- },
- {
- "y" : 101,
- "name" : "#023",
- "drilldown" : "023"
- },
- {
- "drilldown" : "024",
- "name" : "#024",
- "y" : 77
- },
- {
- "name" : "#025",
- "drilldown" : "025",
- "y" : 62
- },
- {
- "name" : "#026",
- "drilldown" : "026",
- "y" : 76
- },
- {
- "y" : 64,
- "name" : "#027",
- "drilldown" : "027"
- },
- {
- "y" : 82,
- "drilldown" : "028",
- "name" : "#028"
- },
- {
- "drilldown" : "029",
- "name" : "#029",
- "y" : 83
- },
- {
- "y" : 121,
- "name" : "#030",
- "drilldown" : "030"
- },
- {
- "drilldown" : "031",
- "name" : "#031",
- "y" : 93
- },
- {
- "name" : "#032",
- "drilldown" : "032",
- "y" : 98
- },
- {
- "y" : 114,
- "name" : "#033",
- "drilldown" : "033"
- },
- {
- "drilldown" : "034",
- "name" : "#034",
- "y" : 70
- },
- {
- "drilldown" : "035",
- "name" : "#035",
- "y" : 68
- },
- {
- "name" : "#036",
- "drilldown" : "036",
- "y" : 70
- },
- {
- "drilldown" : "037",
- "name" : "#037",
- "y" : 70
- },
- {
- "drilldown" : "038",
- "name" : "#038",
- "y" : 74
- },
- {
- "y" : 68,
- "name" : "#039",
- "drilldown" : "039"
- },
- {
- "y" : 77,
- "name" : "#040",
- "drilldown" : "040"
- },
- {
- "name" : "#041",
- "drilldown" : "041",
- "y" : 80
- },
- {
- "y" : 98,
- "drilldown" : "042",
- "name" : "#042"
- },
- {
- "y" : 72,
- "name" : "#043",
- "drilldown" : "043"
- },
- {
- "y" : 90,
- "drilldown" : "044",
- "name" : "#044"
- },
- {
- "drilldown" : "045",
- "name" : "#045",
- "y" : 102
- },
- {
- "y" : 93,
- "name" : "#046",
- "drilldown" : "046"
- },
- {
- "y" : 88,
- "drilldown" : "047",
- "name" : "#047"
- },
- {
- "name" : "#048",
- "drilldown" : "048",
- "y" : 112
- },
- {
- "y" : 93,
- "name" : "#049",
- "drilldown" : "049"
- },
- {
- "y" : 104,
- "name" : "#050",
- "drilldown" : "050"
- },
- {
- "y" : 95,
- "name" : "#051",
- "drilldown" : "051"
- },
- {
- "y" : 93,
- "drilldown" : "052",
- "name" : "#052"
- },
- {
- "drilldown" : "053",
- "name" : "#053",
- "y" : 105
- },
- {
- "y" : 107,
- "drilldown" : "054",
- "name" : "#054"
- },
- {
- "y" : 92,
- "drilldown" : "055",
- "name" : "#055"
- },
- {
- "y" : 104,
- "name" : "#056",
- "drilldown" : "056"
- },
- {
- "name" : "#057",
- "drilldown" : "057",
- "y" : 86
- },
- {
- "drilldown" : "058",
- "name" : "#058",
- "y" : 71
- },
- {
- "y" : 93,
- "drilldown" : "059",
- "name" : "#059"
- },
- {
- "drilldown" : "060",
- "name" : "#060",
- "y" : 89
- },
- {
-