aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2022-04-03 18:28:02 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2022-04-03 18:28:02 +0100
commitca99c2fbb53988ba726be364def605c27328dadc (patch)
tree817a69c40ba6322976a4d7cf92dfad3eb879428d
parentd629ae2179384a9f42f2697788b438dab526ea19 (diff)
downloadperlweeklychallenge-club-ca99c2fbb53988ba726be364def605c27328dadc.tar.gz
perlweeklychallenge-club-ca99c2fbb53988ba726be364def605c27328dadc.tar.bz2
perlweeklychallenge-club-ca99c2fbb53988ba726be364def605c27328dadc.zip
- Added solutions by Pete Houston.
-rwxr-xr-xchallenge-158/pete-houston/perl/ch-1.pl24
-rwxr-xr-xchallenge-158/pete-houston/perl/ch-2.pl40
-rw-r--r--stats/pwc-current.json255
-rw-r--r--stats/pwc-language-breakdown-summary.json32
-rw-r--r--stats/pwc-language-breakdown.json1078
-rw-r--r--stats/pwc-leaders.json756
-rw-r--r--stats/pwc-summary-1-30.json108
-rw-r--r--stats/pwc-summary-121-150.json42
-rw-r--r--stats/pwc-summary-151-180.json112
-rw-r--r--stats/pwc-summary-181-210.json106
-rw-r--r--stats/pwc-summary-211-240.json110
-rw-r--r--stats/pwc-summary-241-270.json76
-rw-r--r--stats/pwc-summary-31-60.json26
-rw-r--r--stats/pwc-summary-61-90.json32
-rw-r--r--stats/pwc-summary-91-120.json28
-rw-r--r--stats/pwc-summary.json40
16 files changed, 1472 insertions, 1393 deletions
diff --git a/challenge-158/pete-houston/perl/ch-1.pl b/challenge-158/pete-houston/perl/ch-1.pl
new file mode 100755
index 0000000000..051187433f
--- /dev/null
+++ b/challenge-158/pete-houston/perl/ch-1.pl
@@ -0,0 +1,24 @@
+#!/usr/bin/env perl
+#===============================================================================
+#
+# FILE: 15801.pl
+#
+# USAGE: ./15801.pl
+#
+# DESCRIPTION: Output all Additive Primes <= 100
+#
+# REQUIREMENTS: List::Util, Math::Prime::Util
+# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk
+# ORGANIZATION: Openstrike
+# VERSION: 1.0
+# CREATED: 28/03/22
+#===============================================================================
+
+use strict;
+use warnings;
+use feature 'say';
+
+use List::Util qw/sum/;
+use Math::Prime::Util qw/is_prime primes/;
+
+say join ', ', grep { is_prime (sum split //) } @{primes (100)};
diff --git a/challenge-158/pete-houston/perl/ch-2.pl b/challenge-158/pete-houston/perl/ch-2.pl
new file mode 100755
index 0000000000..384b2dfccb
--- /dev/null
+++ b/challenge-158/pete-houston/perl/ch-2.pl
@@ -0,0 +1,40 @@
+#!/usr/bin/env perl
+#===============================================================================
+#
+# FILE: 15802.pl
+#
+# USAGE: ./15802.pl
+#
+# DESCRIPTION: Output the first series Cuban Primes <= 1000
+#
+# REQUIREMENTS: Math::Prime::Util, perl 5.10.0
+# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk
+# ORGANIZATION: Openstrike
+# VERSION: 1.0
+# CREATED: 28/03/22
+#===============================================================================
+
+use strict;
+use warnings;
+use feature 'state';
+
+use Math::Prime::Util 'is_prime';
+
+my @primes;
+my $cuban = next_cuban ();
+
+while ($cuban <= 1000) {
+ push @primes, $cuban if is_prime ($cuban);
+ $cuban = next_cuban ();
+}
+print "@primes\n";
+
+sub next_cuban {
+ state $cuberoot = 1;
+ state $cube = 1;
+
+ my $next = ++$cuberoot ** 3;
+ my $diff = $next - $cube;
+ $cube = $next;
+ return $diff;
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 58702f738b..71c7a78dcf 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,41 +1,37 @@
{
- "legend" : {
- "enabled" : 0
- },
"drilldown" : {
"series" : [
{
+ "name" : "Alexander Pankoff",
+ "id" : "Alexander Pankoff",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Alexander Pankoff",
- "name" : "Alexander Pankoff"
+ ]
},
{
+ "name" : "Ali Moradi",
"data" : [
[
"Perl",
2
]
],
- "id" : "Ali Moradi",
- "name" : "Ali Moradi"
+ "id" : "Ali Moradi"
},
{
- "name" : "Andrezgz",
"id" : "Andrezgz",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Andrezgz"
},
{
- "id" : "Arne Sommer",
"name" : "Arne Sommer",
"data" : [
[
@@ -50,7 +46,8 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Arne Sommer"
},
{
"data" : [
@@ -67,16 +64,17 @@
"name" : "Athanasius"
},
{
- "name" : "Colin Crain",
- "id" : "Colin Crain",
"data" : [
[
"Blog",
2
]
- ]
+ ],
+ "id" : "Colin Crain",
+ "name" : "Colin Crain"
},
{
+ "name" : "Dave Jacoby",
"data" : [
[
"Perl",
@@ -87,22 +85,19 @@
1
]
],
- "id" : "Dave Jacoby",
- "name" : "Dave Jacoby"
+ "id" : "Dave Jacoby"
},
{
- "id" : "E. Choroba",
"name" : "E. Choroba",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "E. Choroba"
},
{
- "id" : "Flavio Poletti",
- "name" : "Flavio Poletti",
"data" : [
[
"Perl",
@@ -116,11 +111,11 @@
"Blog",
2
]
- ]
+ ],
+ "id" : "Flavio Poletti",
+ "name" : "Flavio Poletti"
},
{
- "name" : "James Smith",
- "id" : "James Smith",
"data" : [
[
"Perl",
@@ -130,31 +125,32 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "James Smith",
+ "name" : "James Smith"
},
{
- "id" : "Jan Krnavek",
- "name" : "Jan Krnavek",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Jan Krnavek",
+ "name" : "Jan Krnavek"
},
{
+ "name" : "Jorg Sommrey",
"data" : [
[
"Perl",
2
]
],
- "id" : "Jorg Sommrey",
- "name" : "Jorg Sommrey"
+ "id" : "Jorg Sommrey"
},
{
"name" : "Laurent Rosenfeld",
- "id" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -168,7 +164,8 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Laurent Rosenfeld"
},
{
"data" : [
@@ -177,12 +174,12 @@
2
]
],
- "name" : "Lubos Kolouch",
- "id" : "Lubos Kolouch"
+ "id" : "Lubos Kolouch",
+ "name" : "Lubos Kolouch"
},
{
- "id" : "Luca Ferrari",
"name" : "Luca Ferrari",
+ "id" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -195,38 +192,37 @@
]
},
{
- "name" : "Mark Anderson",
"id" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "name" : "Mark Anderson"
},
{
- "name" : "Marton Polgar",
- "id" : "Marton Polgar",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Marton Polgar",
+ "name" : "Marton Polgar"
},
{
"name" : "Matthew Neleigh",
- "id" : "Matthew Neleigh",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Matthew Neleigh"
},
{
"id" : "Mohammad S Anwar",
- "name" : "Mohammad S Anwar",
"data" : [
[
"Perl",
@@ -236,21 +232,32 @@
"Raku",
1
]
- ]
+ ],
+ "name" : "Mohammad S Anwar"
},
{
- "id" : "Niels van Dijke",
- "name" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Niels van Dijke",
+ "name" : "Niels van Dijke"
},
{
- "name" : "Paulo Custodio",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ],
"id" : "Paulo Custodio",
+ "name" : "Paulo Custodio"
+ },
+ {
+ "name" : "Pete Houston",
+ "id" : "Pete Houston",
"data" : [
[
"Perl",
@@ -269,20 +276,21 @@
1
]
],
- "name" : "Peter Campbell Smith",
- "id" : "Peter Campbell Smith"
+ "id" : "Peter Campbell Smith",
+ "name" : "Peter Campbell Smith"
},
{
"name" : "PokGoPun",
- "id" : "PokGoPun",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "PokGoPun"
},
{
+ "name" : "Robert DiCicco",
"data" : [
[
"Perl",
@@ -293,20 +301,20 @@
2
]
],
- "id" : "Robert DiCicco",
- "name" : "Robert DiCicco"
+ "id" : "Robert DiCicco"
},
{
+ "id" : "Robert Ransbottom",
"data" : [
[
"Raku",
2
]
],
- "id" : "Robert Ransbottom",
"name" : "Robert Ransbottom"
},
{
+ "id" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -321,12 +329,9 @@
1
]
],
- "name" : "Roger Bell_West",
- "id" : "Roger Bell_West"
+ "name" : "Roger Bell_West"
},
{
- "id" : "Simon Green",
- "name" : "Simon Green",
"data" : [
[
"Perl",
@@ -336,11 +341,13 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Simon Green",
+ "name" : "Simon Green"
},
{
- "id" : "Ulrich Rieke",
"name" : "Ulrich Rieke",
+ "id" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -353,6 +360,8 @@
]
},
{
+ "name" : "W. Luis Mochan",
+ "id" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -362,29 +371,43 @@
"Blog",
1
]
- ],
- "id" : "W. Luis Mochan",
- "name" : "W. Luis Mochan"
+ ]
}
]
},
- "subtitle" : {
- "text" : "[Champions: 29] Last updated at 2022-04-03 17:17:02 GMT"
+ "chart" : {
+ "type" : "column"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "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
+ },
+ "title" : {
+ "text" : "The Weekly Challenge - 158"
},
"series" : [
{
- "name" : "The Weekly Challenge - 158",
"colorByPoint" : 1,
+ "name" : "The Weekly Challenge - 158",
"data" : [
{
- "drilldown" : "Alexander Pankoff",
+ "name" : "Alexander Pankoff",
"y" : 2,
- "name" : "Alexander Pankoff"
+ "drilldown" : "Alexander Pankoff"
},
{
- "y" : 2,
+ "name" : "Ali Moradi",
"drilldown" : "Ali Moradi",
- "name" : "Ali Moradi"
+ "y" : 2
},
{
"name" : "Andrezgz",
@@ -392,19 +415,19 @@
"drilldown" : "Andrezgz"
},
{
- "name" : "Arne Sommer",
"y" : 5,
- "drilldown" : "Arne Sommer"
+ "drilldown" : "Arne Sommer",
+ "name" : "Arne Sommer"
},
{
"name" : "Athanasius",
- "y" : 4,
- "drilldown" : "Athanasius"
+ "drilldown" : "Athanasius",
+ "y" : 4
},
{
+ "name" : "Colin Crain",
"drilldown" : "Colin Crain",
- "y" : 2,
- "name" : "Colin Crain"
+ "y" : 2
},
{
"name" : "Dave Jacoby",
@@ -412,9 +435,9 @@
"y" : 3
},
{
- "name" : "E. Choroba",
"y" : 2,
- "drilldown" : "E. Choroba"
+ "drilldown" : "E. Choroba",
+ "name" : "E. Choroba"
},
{
"name" : "Flavio Poletti",
@@ -422,9 +445,9 @@
"drilldown" : "Flavio Poletti"
},
{
- "y" : 3,
+ "name" : "James Smith",
"drilldown" : "James Smith",
- "name" : "James Smith"
+ "y" : 3
},
{
"name" : "Jan Krnavek",
@@ -432,23 +455,23 @@
"drilldown" : "Jan Krnavek"
},
{
- "name" : "Jorg Sommrey",
"y" : 2,
- "drilldown" : "Jorg Sommrey"
+ "drilldown" : "Jorg Sommrey",
+ "name" : "Jorg Sommrey"
},
{
"name" : "Laurent Rosenfeld",
- "y" : 5,
- "drilldown" : "Laurent Rosenfeld"
+ "drilldown" : "Laurent Rosenfeld",
+ "y" : 5
},
{
- "y" : 2,
"drilldown" : "Lubos Kolouch",
+ "y" : 2,
"name" : "Lubos Kolouch"
},
{
- "drilldown" : "Luca Ferrari",
"y" : 8,
+ "drilldown" : "Luca Ferrari",
"name" : "Luca Ferrari"
},
{
@@ -462,18 +485,18 @@
"name" : "Marton Polgar"
},
{
- "drilldown" : "Matthew Neleigh",
+ "name" : "Matthew Neleigh",
"y" : 2,
- "name" : "Matthew Neleigh"
+ "drilldown" : "Matthew Neleigh"
},
{
+ "name" : "Mohammad S Anwar",
"y" : 2,
- "drilldown" : "Mohammad S Anwar",
- "name" : "Mohammad S Anwar"
+ "drilldown" : "Mohammad S Anwar"
},
{
- "drilldown" : "Niels van Dijke",
"y" : 2,
+ "drilldown" : "Niels van Dijke",
"name" : "Niels van Dijke"
},
{
@@ -482,19 +505,24 @@
"name" : "Paulo Custodio"
},
{
- "name" : "Peter Campbell Smith",
+ "name" : "Pete Houston",
+ "drilldown" : "Pete Houston",
+ "y" : 2
+ },
+ {
+ "y" : 3,
"drilldown" : "Peter Campbell Smith",
- "y" : 3
+ "name" : "Peter Campbell Smith"
},
{
- "y" : 2,
+ "name" : "PokGoPun",
"drilldown" : "PokGoPun",
- "name" : "PokGoPun"
+ "y" : 2
},
{
- "name" : "Robert DiCicco",
"drilldown" : "Robert DiCicco",
- "y" : 4
+ "y" : 4,
+ "name" : "Robert DiCicco"
},
{
"y" : 2,
@@ -517,39 +545,26 @@
"drilldown" : "Ulrich Rieke"
},
{
- "drilldown" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan",
"y" : 3,
- "name" : "W. Luis Mochan"
+ "drilldown" : "W. Luis Mochan"
}
]
}
],
+ "legend" : {
+ "enabled" : 0
+ },
"plotOptions" : {
"series" : {
"dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
+ "enabled" : 1,
+ "format" : "{point.y}"
},
"borderWidth" : 0
}
},
- "tooltip" : {
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
- "followPointer" : 1,
- "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>"
- },
- "title" : {
- "text" : "The Weekly Challenge - 158"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "xAxis" : {
- "type" : "category"
- },
- "chart" : {
- "type" : "column"
+ "subtitle" : {
+ "text" : "[Champions: 30] Last updated at 2022-04-03 17:26:19 GMT"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 76420f437f..ceb1344336 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,13 +1,9 @@
{
- "legend" : {
- "enabled" : "false"
- },
- "subtitle" : {
- "text" : "Last updated at 2022-04-03 17:17:02 GMT"
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
},
"series" : [
{
- "name" : "Contributions",
"data" : [
[
"Blog",
@@ -15,47 +11,51 @@
],
[
"Perl",
- 7637
+ 7639
],
[
"Raku",
4573
]
],
+ "name" : "Contributions",
"dataLabels" : {
"align" : "right",
"rotation" : -90,
"format" : "{point.y:.0f}",
"color" : "#FFFFFF",
- "enabled" : "true",
"style" : {
"fontSize" : "13px",
"fontFamily" : "Verdana, sans-serif"
},
+ "enabled" : "true",
"y" : 10
}
}
],
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
- },
"title" : {
"text" : "The Weekly Challenge Contributions [2019 - 2022]"
},
+ "legend" : {
+ "enabled" : "false"
+ },
+ "subtitle" : {
+ "text" : "Last updated at 2022-04-03 17:26:19 GMT"
+ },
+ "chart" : {
+ "type" : "column"
+ },
"yAxis" : {
"min" : 0,
"title" : {
"text" : null
}
},
- "chart" : {
- "type" : "column"
- },
"xAxis" : {
"labels" : {
"style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
}
},
"type" : "category"
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index 61319ec785..4dcd400222 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,6 +1,15 @@
{
- "legend" : {
- "enabled" : "false"
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ }
+ }
+ },
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the language breakdown. Last updated at 2022-04-03 17:26:19 GMT"
},
"series" : [
{
@@ -8,33 +17,33 @@
"data" : [
{
"name" : "#001",
- "drilldown" : "001",
- "y" : 161
+ "y" : 161,
+ "drilldown" : "001"
},
{
- "name" : "#002",
"drilldown" : "002",
- "y" : 125
+ "y" : 125,
+ "name" : "#002"
},
{
- "y" : 83,
+ "name" : "#003",
"drilldown" : "003",
- "name" : "#003"
+ "y" : 83
},
{
- "name" : "#004",
"drilldown" : "004",
- "y" : 99
+ "y" : 99,
+ "name" : "#004"
},
{
"name" : "#005",
- "drilldown" : "005",
- "y" : 78
+ "y" : 78,
+ "drilldown" : "005"
},
{
- "name" : "#006",
+ "drilldown" : "006",
"y" : 58,
- "drilldown" : "006"
+ "name" : "#006"
},
{
"name" : "#007",
@@ -42,9 +51,9 @@
"y" : 64
},
{
- "name" : "#008",
+ "drilldown" : "008",
"y" : 78,
- "drilldown" : "008"
+ "name" : "#008"
},
{
"name" : "#009",
@@ -63,13 +72,13 @@
},
{
"name" : "#012",
- "drilldown" : "012",
- "y" : 89
+ "y" : 89,
+ "drilldown" : "012"
},
{
+ "name" : "#013",
"drilldown" : "013",
- "y" : 85,
- "name" : "#013"
+ "y" : 85
},
{
"drilldown" : "014",
@@ -82,24 +91,24 @@
"drilldown" : "015"
},
{
- "name" : "#016",
+ "y" : 71,
"drilldown" : "016",
- "y" : 71
+ "name" : "#016"
},
{
- "drilldown" : "017",
+ "name" : "#017",
"y" : 84,
- "name" : "#017"
+ "drilldown" : "017"
},
{
+ "name" : "#018",
"y" : 81,
- "drilldown" : "018",
- "name" : "#018"
+ "drilldown" : "018"
},
{
+ "name" : "#019",
"y" : 103,
- "drilldown" : "019",
- "name" : "#019"
+ "drilldown" : "019"
},
{
"name" : "#020",
@@ -107,69 +116,69 @@
"y" : 101
},
{
- "name" : "#021",
"drilldown" : "021",
- "y" : 72
+ "y" : 72,
+ "name" : "#021"
},
{
- "name" : "#022",
+ "y" : 68,
"drilldown" : "022",
- "y" : 68
+ "name" : "#022"
},
{
- "name" : "#023",
"drilldown" : "023",
- "y" : 97
+ "y" : 97,
+ "name" : "#023"
},
{
- "name" : "#024",
+ "y" : 75,
"drilldown" : "024",
- "y" : 75
+ "name" : "#024"
},
{
"name" : "#025",
- "y" : 59,
- "drilldown" : "025"
+ "drilldown" : "025",
+ "y" : 59
},
{
- "drilldown" : "026",
"y" : 74,
+ "drilldown" : "026",
"name" : "#026"
},
{
+ "name" : "#027",
"y" : 62,
- "drilldown" : "027",
- "name" : "#027"
+ "drilldown" : "027"
},
{
- "name" : "#028",
"y" : 82,
- "drilldown" : "028"
+ "drilldown" : "028",
+ "name" : "#028"
},
{
- "drilldown" : "029",
"y" : 81,
+ "drilldown" : "029",
"name" : "#029"
},
{
+ "name" : "#030",
"drilldown" : "030",
- "y" : 119,
- "name" : "#030"
+ "y" : 119
},
{
- "drilldown" : "031",
+ "name" : "#031",
"y" : 91,
- "name" : "#031"
+ "drilldown" : "031"
},
{
- "name" : "#032",
"drilldown" : "032",
- "y" : 96
+ "y" : 96,
+ "name" : "#032"
},
{
- "name" : "#033",
+ "drilldown" : "033",
"y" : 112,
- "drilldown" : "033"
+ "name" : "#033"
},
{
"name" : "#034",
@@ -182,14 +191,14 @@
"name" : "#035"
},
{
- "drilldown" : "036",
+ "name" : "#036",
"y" : 70,
- "name" : "#036"
+ "drilldown" : "036"
},
{
- "name" : "#037",
"y" : 69,
- "drilldown" : "037"
+ "drilldown" : "037",
+ "name" : "#037"
},
{
"name" : "#038",
@@ -197,34 +206,34 @@
"y" : 68
},
{
- "y" : 62,
"drilldown" : "039",
+ "y" : 62,
"name" : "#039"
},
{
- "drilldown" : "040",
"y" : 73,
+ "drilldown" : "040",
"name" : "#040"
},
{
- "name" : "#041",
"drilldown" : "041",
- "y" : 76
+ "y" : 76,
+ "name" : "#041"
},
{
- "y" : 92,
"drilldown" : "042",
+ "y" : 92,
"name" : "#042"
},
{
- "name" : "#043",
"drilldown" : "043",
- "y" : 68
+ "y" : 68,
+ "name" : "#043"
},
{
- "y" : 85,
+ "name" : "#044",
"drilldown" : "044",
- "name" : "#044"
+ "y" : 85
},
{
"name" : "#045",
@@ -233,78 +242,78 @@
},
{
"name" : "#046",
- "drilldown" : "046",
- "y" : 87
+ "y" : 87,
+ "drilldown" : "046"
},
{
- "name" : "#047",
+ "y" : 84,
"drilldown" : "047",
- "y" : 84
+ "name" : "#047"
},
{
"name" :