aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2024-07-07 15:08:18 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2024-07-07 15:08:18 +0100
commitc98fc118572aec9a0ab8b53487758f72a9ad570b (patch)
treeed4a506691316f33e54af344089761f6b84bffc4
parent2646cf62b36a4d99477e00f7ba7443ad386221ad (diff)
downloadperlweeklychallenge-club-c98fc118572aec9a0ab8b53487758f72a9ad570b.tar.gz
perlweeklychallenge-club-c98fc118572aec9a0ab8b53487758f72a9ad570b.tar.bz2
perlweeklychallenge-club-c98fc118572aec9a0ab8b53487758f72a9ad570b.zip
- Added solutions by Wanderdoc.
-rwxr-xr-xchallenge-276/wanderdoc/perl/ch-1.pl59
-rwxr-xr-xchallenge-276/wanderdoc/perl/ch-2.pl41
-rw-r--r--stats/pwc-current.json261
-rw-r--r--stats/pwc-language-breakdown-summary.json78
-rw-r--r--stats/pwc-language-breakdown.json3806
-rw-r--r--stats/pwc-leaders.json420
-rw-r--r--stats/pwc-summary-1-30.json108
-rw-r--r--stats/pwc-summary-121-150.json102
-rw-r--r--stats/pwc-summary-151-180.json108
-rw-r--r--stats/pwc-summary-181-210.json42
-rw-r--r--stats/pwc-summary-211-240.json32
-rw-r--r--stats/pwc-summary-241-270.json38
-rw-r--r--stats/pwc-summary-271-300.json108
-rw-r--r--stats/pwc-summary-301-330.json78
-rw-r--r--stats/pwc-summary-31-60.json108
-rw-r--r--stats/pwc-summary-61-90.json36
-rw-r--r--stats/pwc-summary-91-120.json98
-rw-r--r--stats/pwc-summary.json34
18 files changed, 2836 insertions, 2721 deletions
diff --git a/challenge-276/wanderdoc/perl/ch-1.pl b/challenge-276/wanderdoc/perl/ch-1.pl
new file mode 100755
index 0000000000..41cb9b59af
--- /dev/null
+++ b/challenge-276/wanderdoc/perl/ch-1.pl
@@ -0,0 +1,59 @@
+#!perl
+use strict;
+use warnings FATAL => qw(all);
+
+=prompt
+You are given an array of integers, @hours.
+
+Write a script to return the number of pairs that forms a complete day.
+
+ A complete day is defined as a time duration that is an exact multiple of 24 hours.
+
+Example 1
+
+Input: @hours = (12, 12, 30, 24, 24)
+Output: 2
+
+Pair 1: (12, 12)
+Pair 2: (24, 24)
+
+Example 2
+
+Input: @hours = (72, 48, 24, 5)
+Output: 3
+
+Pair 1: (72, 48)
+Pair 2: (72, 24)
+Pair 3: (48, 24)
+
+Example 3
+
+Input: @hours = (12, 18, 24)
+Output: 0
+
+=cut
+
+use Algorithm::Combinatorics qw(combinations);
+use List::Util qw(sum);
+use Test2::V0;
+
+
+is(complete_days(12, 12, 30, 24, 24), 2, 'Example 1');
+is(complete_days(72, 48, 24, 5), 3, 'Example 2');
+is(complete_days(12, 18, 24), 0, 'Example 3');
+done_testing();
+
+sub complete_days
+{
+ my @hours = @_;
+ my $iter = combinations(\@hours, 2);
+ my $counter = 0;
+ while (my $p = $iter->next)
+ {
+ if ( sum(@$p) % 24 == 0 )
+ {
+ $counter++;
+ }
+ }
+ return $counter;
+} \ No newline at end of file
diff --git a/challenge-276/wanderdoc/perl/ch-2.pl b/challenge-276/wanderdoc/perl/ch-2.pl
new file mode 100755
index 0000000000..b1f6fc9641
--- /dev/null
+++ b/challenge-276/wanderdoc/perl/ch-2.pl
@@ -0,0 +1,41 @@
+#!perl
+use strict;
+use warnings FATAL => qw(all);
+
+=prompt
+You are given an array of positive integers, @ints.
+
+Write a script to return the total number of elements in the given array which have the highest frequency.
+Example 1
+
+Input: @ints = (1, 2, 2, 4, 1, 5)
+Ouput: 4
+
+The maximum frequency is 2.
+The elements 1 and 2 has the maximum frequency.
+
+Example 2
+
+Input: @ints = (1, 2, 3, 4, 5)
+Ouput: 5
+
+The maximum frequency is 1.
+The elements 1, 2, 3, 4 and 5 has the maximum frequency.
+
+=cut
+
+use List::Util qw(max sum);
+use Test2::V0;
+
+is(max_freq(1, 2, 2, 4, 1, 5), 4, 'Example 1');
+is(max_freq(1, 2, 3, 4, 5), 5, 'Example 2');
+done_testing();
+
+sub max_freq
+{
+ my @arr = @_;
+ my %freq;
+ do { $freq{$_}++ } for @arr;
+ my $max_freq = max(values %freq);
+ return sum(grep $_ == $max_freq, values %freq);
+} \ No newline at end of file
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index f3d594604c..53115de7bd 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,9 +1,11 @@
{
- "title" : {
- "text" : "The Weekly Challenge - 276"
+ "xAxis" : {
+ "type" : "category"
},
"series" : [
{
+ "colorByPoint" : 1,
+ "name" : "The Weekly Challenge - 276",
"data" : [
{
"y" : 5,
@@ -16,24 +18,24 @@
"name" : "Arne Sommer"
},
{
- "y" : 4,
"name" : "Athanasius",
- "drilldown" : "Athanasius"
+ "drilldown" : "Athanasius",
+ "y" : 4
},
{
- "y" : 2,
"drilldown" : "Dave Jacoby",
+ "y" : 2,
"name" : "Dave Jacoby"
},
{
- "y" : 2,
"drilldown" : "David Ferrone",
+ "y" : 2,
"name" : "David Ferrone"
},
{
+ "name" : "E. Choroba",
"y" : 2,
- "drilldown" : "E. Choroba",
- "name" : "E. Choroba"
+ "drilldown" : "E. Choroba"
},
{
"name" : "Feng Chang",
@@ -41,9 +43,9 @@
"y" : 2
},
{
+ "name" : "Jan Krnavek",
"y" : 2,
- "drilldown" : "Jan Krnavek",
- "name" : "Jan Krnavek"
+ "drilldown" : "Jan Krnavek"
},
{
"y" : 4,
@@ -52,58 +54,58 @@
},
{
"name" : "Jorg Sommrey",
- "drilldown" : "Jorg Sommrey",
- "y" : 3
+ "y" : 3,
+ "drilldown" : "Jorg Sommrey"
},
{
- "drilldown" : "Kai Burgdorf",
"name" : "Kai Burgdorf",
- "y" : 2
+ "y" : 2,
+ "drilldown" : "Kai Burgdorf"
},
{
+ "y" : 6,
"drilldown" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld",
- "y" : 6
+ "name" : "Laurent Rosenfeld"
},
{
"name" : "Luca Ferrari",
- "drilldown" : "Luca Ferrari",
- "y" : 11
+ "y" : 11,
+ "drilldown" : "Luca Ferrari"
},
{
- "drilldown" : "Mariano Ortega",
"name" : "Mariano Ortega",
+ "drilldown" : "Mariano Ortega",
"y" : 2
},
{
+ "y" : 2,
"drilldown" : "Mark Anderson",
- "name" : "Mark Anderson",
- "y" : 2
+ "name" : "Mark Anderson"
},
{
- "y" : 2,
"drilldown" : "Matthew Neleigh",
+ "y" : 2,
"name" : "Matthew Neleigh"
},
{
+ "drilldown" : "Nelo Tovar",
"y" : 2,
- "name" : "Nelo Tovar",
- "drilldown" : "Nelo Tovar"
+ "name" : "Nelo Tovar"
},
{
- "y" : 2,
"name" : "Niels van Dijke",
- "drilldown" : "Niels van Dijke"
+ "drilldown" : "Niels van Dijke",
+ "y" : 2
},
{
"y" : 5,
- "name" : "Packy Anderson",
- "drilldown" : "Packy Anderson"
+ "drilldown" : "Packy Anderson",
+ "name" : "Packy Anderson"
},
{
- "y" : 3,
+ "name" : "Peter Campbell Smith",
"drilldown" : "Peter Campbell Smith",
- "name" : "Peter Campbell Smith"
+ "y" : 3
},
{
"name" : "Reinier Maliepaard",
@@ -116,53 +118,77 @@
"y" : 3
},
{
- "drilldown" : "Roger Bell_West",
"name" : "Roger Bell_West",
+ "drilldown" : "Roger Bell_West",
"y" : 5
},
{
- "y" : 3,
+ "name" : "Ryan Thompson",
"drilldown" : "Ryan Thompson",
- "name" : "Ryan Thompson"
+ "y" : 3
},
{
"drilldown" : "Simon Green",
- "name" : "Simon Green",
- "y" : 3
+ "y" : 3,
+ "name" : "Simon Green"
},
{
+ "y" : 4,
"drilldown" : "Thomas Kohler",
- "name" : "Thomas Kohler",
- "y" : 4
+ "name" : "Thomas Kohler"
},
{
- "name" : "Ulrich Rieke",
"drilldown" : "Ulrich Rieke",
- "y" : 4
+ "y" : 4,
+ "name" : "Ulrich Rieke"
},
{
- "y" : 3,
"name" : "W. Luis Mochan",
- "drilldown" : "W. Luis Mochan"
+ "drilldown" : "W. Luis Mochan",
+ "y" : 3
+ },
+ {
+ "name" : "Wanderdoc",
+ "y" : 2,
+ "drilldown" : "Wanderdoc"
}
- ],
- "name" : "The Weekly Challenge - 276",
- "colorByPoint" : 1
+ ]
}
],
- "legend" : {
- "enabled" : 0
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "enabled" : 1,
+ "format" : "{point.y}"
+ }
+ }
},
"tooltip" : {
+ "followPointer" : 1,
"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
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "title" : {
+ "text" : "The Weekly Challenge - 276"
+ },
+ "subtitle" : {
+ "text" : "[Champions: 29] Last updated at 2024-07-07 13:59:55 GMT"
+ },
+ "legend" : {
+ "enabled" : 0
},
"drilldown" : {
"series" : [
{
- "id" : "Ali Moradi",
- "name" : "Ali Moradi",
"data" : [
[
"Perl",
@@ -176,7 +202,9 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Ali Moradi",
+ "name" : "Ali Moradi"
},
{
"data" : [
@@ -193,6 +221,8 @@
"name" : "Arne Sommer"
},
{
+ "name" : "Athanasius",
+ "id" : "Athanasius",
"data" : [
[
"Perl",
@@ -202,33 +232,31 @@
"Raku",
2
]
- ],
- "id" : "Athanasius",
- "name" : "Athanasius"
+ ]
},
{
- "id" : "Dave Jacoby",
"name" : "Dave Jacoby",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Dave Jacoby"
},
{
"id" : "David Ferrone",
- "name" : "David Ferrone",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "David Ferrone"
},
{
- "id" : "E. Choroba",
"name" : "E. Choroba",
+ "id" : "E. Choroba",
"data" : [
[
"Perl",
@@ -237,28 +265,27 @@
]
},
{
+ "name" : "Feng Chang",
+ "id" : "Feng Chang",
"data" : [
[
"Raku",
2
]
- ],
- "id" : "Feng Chang",
- "name" : "Feng Chang"
+ ]
},
{
+ "id" : "Jan Krnavek",
"data" : [
[
"Raku",
2
]
],
- "id" : "Jan Krnavek",
"name" : "Jan Krnavek"
},
{
"id" : "Joelle Maslak",
- "name" : "Joelle Maslak",
"data" : [
[
"Perl",
@@ -268,9 +295,11 @@
"Raku",
2
]
- ]
+ ],
+ "name" : "Joelle Maslak"
},
{
+ "name" : "Jorg Sommrey",
"data" : [
[
"Perl",
@@ -281,8 +310,7 @@
1
]
],
- "id" : "Jorg Sommrey",
- "name" : "Jorg Sommrey"
+ "id" : "Jorg Sommrey"
},
{
"data" : [
@@ -291,12 +319,10 @@
2
]
],
- "name" : "Kai Burgdorf",
- "id" : "Kai Burgdorf"
+ "id" : "Kai Burgdorf",
+ "name" : "Kai Burgdorf"
},
{
- "name" : "Laurent Rosenfeld",
- "id" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -310,7 +336,9 @@
"Blog",
2
]
- ]
+ ],
+ "id" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld"
},
{
"data" : [
@@ -323,61 +351,60 @@
9
]
],
- "name" : "Luca Ferrari",
- "id" : "Luca Ferrari"
+ "id" : "Luca Ferrari",
+ "name" : "Luca Ferrari"
},
{
+ "id" : "Mariano Ortega",
"data" : [
[
"Perl",
2
]
],
- "id" : "Mariano Ortega",
"name" : "Mariano Ortega"
},
{
+ "name" : "Mark Anderson",
+ "id" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
- ],
- "name" : "Mark Anderson",
- "id" : "Mark Anderson"
+ ]
},
{
+ "id" : "Matthew Neleigh",
"data" : [
[
"Perl",
2
]
],
- "name" : "Matthew Neleigh",
- "id" : "Matthew Neleigh"
+ "name" : "Matthew Neleigh"
},
{
- "name" : "Nelo Tovar",
- "id" : "Nelo Tovar",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Nelo Tovar",
+ "name" : "Nelo Tovar"
},
{
- "name" : "Niels van Dijke",
"id" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Niels van Dijke"
},
{
- "name" : "Packy Anderson",
"id" : "Packy Anderson",
"data" : [
[
@@ -392,7 +419,8 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Packy Anderson"
},
{
"data" : [
@@ -424,7 +452,6 @@
},
{
"id" : "Robbie Hatley",
- "name" : "Robbie Hatley",
"data" : [
[
"Perl",
@@ -434,9 +461,11 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Robbie Hatley"
},
{
+ "id" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -451,10 +480,10 @@
1
]
],
- "id" : "Roger Bell_West",
"name" : "Roger Bell_West"
},
{
+ "name" : "Ryan Thompson",
"data" : [
[
"Perl",
@@ -465,12 +494,9 @@
1
]
],
- "id" : "Ryan Thompson",
- "name" : "Ryan Thompson"
+ "id" : "Ryan Thompson"
},
{
- "name" : "Simon Green",
- "id" : "Simon Green",
"data" : [
[
"Perl",
@@ -480,9 +506,13 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Simon Green",
+ "name" : "Simon Green"
},
{
+ "name" : "Thomas Kohler",
+ "id" : "Thomas Kohler",
"data" : [
[
"Perl",
@@ -492,9 +522,7 @@
"Blog",
2
]
- ],
- "name" : "Thomas Kohler",
- "id" : "Thomas Kohler"
+ ]
},
{
"data" : [
@@ -521,32 +549,19 @@
1
]
],
- "name" : "W. Luis Mochan",
- "id" : "W. Luis Mochan"
+ "id" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan"
+ },
+ {
+ "name" : "Wanderdoc",
+ "id" : "Wanderdoc",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ]
}
]
- },
- "xAxis" : {
- "type" : "category"
- },
- "subtitle" : {
- "text" : "[Champions: 28] Last updated at 2024-07-07 13:29:17 GMT"
- },
- "plotOptions" : {
- "series" : {
- "borderWidth" : 0,
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- }
- }
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "chart" : {
- "type" : "column"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 5e37e59ffd..f69defc535 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,21 +1,40 @@
{
+ "chart" : {
+ "type" : "column"
+ },
+ "title" : {
+ "text" : "The Weekly Challenge Contributions [2019 - 2024]"
+ },
+ "subtitle" : {
+ "text" : "Last updated at 2024-07-07 13:59:55 GMT"
+ },
+ "legend" : {
+ "enabled" : "false"
+ },
"tooltip" : {
"pointFormat" : "<b>{point.y:.0f}</b>"
},
- "xAxis" : {
- "type" : "category",
- "labels" : {
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- }
+ "yAxis" : {
+ "min" : 0,
+ "title" : {
+ "text" : null
}
},
- "title" : {
- "text" : "The Weekly Challenge Contributions [2019 - 2024]"
- },
"series" : [
{
+ "name" : "Contributions",
+ "dataLabels" : {
+ "enabled" : "true",
+ "rotation" : -90,
+ "y" : 10,
+ "align" : "right",
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ },
+ "format" : "{point.y:.0f}",
+ "color" : "#FFFFFF"
+ },
"data" : [
[
"Blog",
@@ -23,41 +42,22 @@
],
[
"Perl",
- 14304
+ 14306
],
[
"Raku",
8290
]
- ],
- "dataLabels" : {
- "format" : "{point.y:.0f}",
- "y" : 10,
- "rotation" : -90,
- "align" : "right",
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- },
- "color" : "#FFFFFF",
- "enabled" : "true"
- },
- "name" : "Contributions"
+ ]
}
],
- "legend" : {
- "enabled" : "false"
- },
- "subtitle" : {
- "text" : "Last updated at 2024-07-07 13:29:17 GMT"
- },
- "chart" : {
- "type" : "column"
- },
- "yAxis" : {
- "min" : 0,
- "title" : {
- "text" : null
- }
+ "xAxis" : {
+ "labels" : {
+ "style" : {
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
+ }
+ },
+ "type" : "category"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index dcbe218745..c25e4c070d 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,1404 +1,4 @@
{
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "chart" : {
- "type" : "column"
- },
- "legend" : {
- "enabled" : "false"
- },
- "series" : [
- {
- "data" : [
- {
- "y" : 168,
- "drilldown" : "001",
- "name" : "#001"
- },
- {
- "drilldown" : "002",
- "name" : "#002",
- "y" : 133
- },
- {
- "y" : 91,
- "name" : "#003",
- "drilldown" : "003"
- },
- {
- "name" : "#004",
- "drilldown" : "004",
- "y" : 106
- },
- {
- "y" : 82,
- "drilldown" : "005",
- "name" : "#005"
- },
- {
- "name" : "#006",
- "drilldown" : "006",
- "y" : 63
- },
- {
- "name" : "#007",
- "drilldown" : "007",
- "y" : 71
- },
- {
- "drilldown" : "008",
- "name" : "#008",
- "y" : 84
- },
- {
- "y" : 82,
- "name" : "#009",
- "drilldown" : "009"
- },
- {
- "y" : 71,
- "drilldown" : "010",
- "name" : "#010"
- },
- {
- "y" : 91,
- "name" : "#011",
- "drilldown" : "011"
- },
- {
- "y" : 96,
- "drilldown" : "012",
- "name" : "#012"
- },
- {
- "y" : 88,
- "name" : "#013",
- "drilldown" : "013"
- },
- {
- "drilldown" : "014",
- "name" : "#014",
- "y" : 104
- },
- {
- "name" : "#015",
- "drilldown" : "015",
- "y" : 103
- },
- {
- "drilldown" : "016",
- "name" : "#016",
- "y" : 75
- },
- {
- "name" : "#017",
- "drilldown" : "017",
- "y" : 87
- },
- {
- "y" : 84,
- "name" : "#018",
- "drilldown" : "018"
- },
- {
- "y" : 105,
- "name" : "#019",
- "drilldown" : "019"
- },
- {
- "drilldown" : "020",
- "name" : "#020",
- "y" : 103
- },
- {
- "y" : 74,
- "drilldown" : "021",
- "name" : "#021"
- },
- {
- "y" : 72,
- "drilldown" : "022",
- "name" : "#022"
- },
- {
- "y" : 101,
- "name" : "#023",
- "drilldown" : "023"
- },
- {
- "y" : 77,
- "drilldown" : "024",
- "name" : "#024"
- },
- {
- "drilldown" : "025",
- "name" : "#025",
- "y" : 62
- },
- {
- "y" : 76,
- "name" : "#026",
- "drilldown" : "026"
- },
- {
- "y" : 64,
- "name" : "#027",
- "drilldown" : "027"
- },
- {
- "drilldown" : "028",
- "name" : "#028",
- "y" : 82
- },
- {
- "y" : 83,
- "drilldown" : "029",
- "name" : "#029"
- },
- {
- "drilldown" : "030",
- "name" : "#030",
- "y" : 121
- },
- {
- "y" : 93,
- "name" : "#031",
- "drilldown" : "031"
- },
- {
- "y" : 98,
- "name" : "#032",
- "drilldown" : "032"
- },
- {
- "y" : 114,
- "name" : "#033",
- "drilldown" : "033"
- },
- {
- "y" : 70,
- "name" : "#034",
- "drilldown" : "034"
- },
- {
- "y" : 68,
- "drilldown" : "035",
- "name" : "#035"
- },
- {
- "name" : "#036",
- "drilldown" : "036",
- "y" : 70
- },
- {
- "y" : 70,
- "drilldown" : "037",
- "name" : "#037"
- },
- {
- "y" : 74,
- "drilldown" : "038",
- "name" : "#038"
- },
- {
- "y" : 68,
- "drilldown" : "039",
- "name" : "#039"
- },
- {
- "y" : 77,
- "drilldown" : "040",
- "name" : "#040"
- },
- {
- "y" : 80,
- "drilldown" : "041",
- "name" : "#041"
- },
- {
- "name" : "#042",
- "drilldown" : "042",
- "y" : 98
- },
- {
- "y" : 72,
- "drilldown" : "043",
- "name" : "#043"
- },
- {
- "y" : 90,
- "drilldown" : "044",
- "name" : "#044"
- },
- {
- "drilldown" : "045",
- "name" : "#045",
- "y" : 102
- },
- {
- "drilldown" : "046",
- "name" : "#046",
- "y" : 93
- },
- {
- "name" : "#047",
- "drilldown" : "047",
- "y" : 88
- },
- {
- "name" : "#048",
- "drilldown" : "048",
- "y" : 112
- },
- {
- "drilldown" : "049",
- "name" : "#049",
- "y" : 93
- },
- {
- "y" : 104,
- "name" : "#050",
-