diff options
| author | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2021-12-05 23:48:09 +0000 |
|---|---|---|
| committer | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2021-12-05 23:48:09 +0000 |
| commit | d80ab2433f6ad4ba5f1ecf8626ee18bb4f664d86 (patch) | |
| tree | f57842fbd8c5f9e9b4f6d85880b6f8eac397bdad | |
| parent | 3537afcbeb171df4cd95e9c649c6b5093fef0493 (diff) | |
| download | perlweeklychallenge-club-d80ab2433f6ad4ba5f1ecf8626ee18bb4f664d86.tar.gz perlweeklychallenge-club-d80ab2433f6ad4ba5f1ecf8626ee18bb4f664d86.tar.bz2 perlweeklychallenge-club-d80ab2433f6ad4ba5f1ecf8626ee18bb4f664d86.zip | |
- Added solutions by Colin Crain.
| -rwxr-xr-x | challenge-141/colin-crain/perl/ch-1.pl | 80 | ||||
| -rwxr-xr-x | challenge-141/colin-crain/perl/ch-2.pl | 85 | ||||
| -rw-r--r-- | stats/pwc-current.json | 301 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown-summary.json | 74 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown.json | 2022 | ||||
| -rw-r--r-- | stats/pwc-leaders.json | 770 | ||||
| -rw-r--r-- | stats/pwc-summary-1-30.json | 116 | ||||
| -rw-r--r-- | stats/pwc-summary-121-150.json | 94 | ||||
| -rw-r--r-- | stats/pwc-summary-151-180.json | 100 | ||||
| -rw-r--r-- | stats/pwc-summary-181-210.json | 50 | ||||
| -rw-r--r-- | stats/pwc-summary-211-240.json | 100 | ||||
| -rw-r--r-- | stats/pwc-summary-241-270.json | 20 | ||||
| -rw-r--r-- | stats/pwc-summary-31-60.json | 108 | ||||
| -rw-r--r-- | stats/pwc-summary-61-90.json | 114 | ||||
| -rw-r--r-- | stats/pwc-summary-91-120.json | 98 | ||||
| -rw-r--r-- | stats/pwc-summary.json | 524 |
16 files changed, 2418 insertions, 2238 deletions
diff --git a/challenge-141/colin-crain/perl/ch-1.pl b/challenge-141/colin-crain/perl/ch-1.pl new file mode 100755 index 0000000000..c02a84d5a3 --- /dev/null +++ b/challenge-141/colin-crain/perl/ch-1.pl @@ -0,0 +1,80 @@ +#!/Users/colincrain/perl5/perlbrew/perls/perl-5.32.0/bin/perl
+#
+# octosplitter.pl
+#
+# Number Divisors
+# Submitted by: Mohammad S Anwar
+# Write a script to find lowest 10 positive integers having exactly 8
+# divisors.
+#
+# Example
+# 24 is the first such number having exactly 8 divisors.
+# 1, 2, 3, 4, 6, 8, 12 and 24.
+#
+# method:
+# determining a progressive group of factor sets that will
+# produce the lowest integers with only 8 factors is...
+# complex. We'll settle for complex.
+#
+# It's hardly obvious, and it seems that the first thing to do,
+# should we want to study the sets and see if we can draw some
+# inferances, is to find the solutions and have a look.
+#
+# This of course brings us full circle and solves our problem
+# by... solving our problem. Of course. Why didn't I think of
+# that before?
+#
+# In any case we can always try every number from 2 up to half
+# the target, and add on 1 and the target, as apparently we're
+# including those this time. Fair enough. By extension we also
+# include the number itself. Note we aren't being asked for
+# *prime* factors, so for example should the case arrive both 2
+# and 4 should be counted, so we need to try every value in the
+# range.
+#
+#
+#
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use utf8;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+
+
+
+
+sub nd_brute ( $num, @div ) {
+ $num % $_ or push @div, $_ for 2..$num/2 ;
+ return 1, @div, $num;
+}
+
+say "number divisors";
+say "----------------------------------------";
+my ($test, $count) = (0,0);
+while ( $count < 9 ) {
+ my @facts = nd_brute( ++$test );
+ if (@facts == 8) {
+ say "$test ", sprintf "%4d" x 8 , @facts ;
+ $count++;
+ };
+}
+
+
+
+
+
+
+
+
+# use Test::More;
+#
+# is
+#
+# done_testing();
diff --git a/challenge-141/colin-crain/perl/ch-2.pl b/challenge-141/colin-crain/perl/ch-2.pl new file mode 100755 index 0000000000..88ed16d58b --- /dev/null +++ b/challenge-141/colin-crain/perl/ch-2.pl @@ -0,0 +1,85 @@ +#!/Users/colincrain/perl5/perlbrew/perls/perl-5.32.0/bin/perl
+#
+# i-lk-u.pl
+#
+# Like Numbers
+# Submitted by: Mohammad S Anwar
+# You are given positive integers, $m and $n.
+#
+# Write a script to find total count of integers created using the
+# digits of $m which is also divisible by $n.
+#
+# Repeating of digits are not allowed. Order/Sequence of digits
+# can’t be altered. You are only allowed to use (n-1) digits at the
+# most. For example, 432 is not acceptable integer created using
+# the digits of 1234. Also for 1234, you can only have integers
+# having no more than three digits.
+#
+# Example 1:
+#
+# Input: $m = 1234, $n = 2
+# Output: 9
+#
+# Possible integers created using the digits of 1234 are:
+# 1, 2, 3, 4, 12, 13, 14, 23, 24, 34, 123, 124, 134 and 234.
+#
+# There are 9 integers divisible by 2 such as:
+# 2, 4, 12, 14, 24, 34, 124, 134 and 234.
+#
+# Example 2:
+#
+# Input: $m = 768, $n = 4
+# Output: 3
+#
+# Possible integers created using the digits of 768 are:
+# 7, 6, 8, 76, 78 and 68.
+#
+# There are 3 integers divisible by 4 such as:
+# 8, 76 and 68.
+#
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use utf8;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+
+my $m = shift @ARGV // 76876522;
+my $n = shift @ARGV // 143;
+
+say "input number m : ", $m;
+say "input divisor n : ", $n;
+say "integers found : ", join ', ', get_divs( $n, get_ints( $m ));
+
+sub get_ints( $num ) {
+ my $len = length($num);
+ my @bins = map { sprintf "%0${len}b", $_ } (1 .. 2**$len - 1);
+ my @out;
+
+ for my $b ( @bins ) {
+ my $combi;
+ for my $idx (0..$len-1) {
+ $combi .= (substr $b, $idx, 1)
+ ? substr $num, $idx, 1
+ : ''
+ }
+ push @out, $combi unless $combi == $num;
+ }
+
+ return sort {$a<=>$b} @out;
+}
+
+
+sub get_divs ( $div, @nums ) {
+ return grep { not $_ % $div } @nums;
+
+}
+
+
+
diff --git a/stats/pwc-current.json b/stats/pwc-current.json index e2a4908733..460c466265 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,19 +1,11 @@ { - "xAxis" : { - "type" : "category" - }, - "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/>" - }, "series" : [ { - "name" : "The Weekly Challenge - 141", + "colorByPoint" : 1, "data" : [ { - "name" : "Abigail", "y" : 4, + "name" : "Abigail", "drilldown" : "Abigail" }, { @@ -22,109 +14,114 @@ "drilldown" : "Adam Russell" }, { - "y" : 1, + "drilldown" : "Alexander Karelas", "name" : "Alexander Karelas", - "drilldown" : "Alexander Karelas" + "y" : 1 }, { + "drilldown" : "Alexander Pankoff", "name" : "Alexander Pankoff", - "y" : 2, - "drilldown" : "Alexander Pankoff" + "y" : 2 }, { "drilldown" : "Arne Sommer", - "y" : 3, - "name" : "Arne Sommer" + "name" : "Arne Sommer", + "y" : 3 }, { "y" : 4, - "name" : "Athanasius", - "drilldown" : "Athanasius" + "drilldown" : "Athanasius", + "name" : "Athanasius" + }, + { + "y" : 2, + "drilldown" : "Colin Crain", + "name" : "Colin Crain" }, { - "name" : "Dave Jacoby", "y" : 3, - "drilldown" : "Dave Jacoby" + "drilldown" : "Dave Jacoby", + "name" : "Dave Jacoby" }, { - "y" : 2, + "drilldown" : "David Santiago", "name" : "David Santiago", - "drilldown" : "David Santiago" + "y" : 2 }, { - "name" : "Duncan C. White", "y" : 2, - "drilldown" : "Duncan C. White" + "drilldown" : "Duncan C. White", + "name" : "Duncan C. White" }, { - "drilldown" : "E. Choroba", "y" : 2, - "name" : "E. Choroba" + "name" : "E. Choroba", + "drilldown" : "E. Choroba" }, { + "drilldown" : "Flavio Poletti", "name" : "Flavio Poletti", - "y" : 6, - "drilldown" : "Flavio Poletti" + "y" : 6 }, { - "name" : "Jake", "y" : 1, - "drilldown" : "Jake" + "drilldown" : "Jake", + "name" : "Jake" }, { "drilldown" : "Jan Krnavek", - "y" : 2, - "name" : "Jan Krnavek" + "name" : "Jan Krnavek", + "y" : 2 }, { - "y" : 2, "name" : "Jorg Sommrey", - "drilldown" : "Jorg Sommrey" + "drilldown" : "Jorg Sommrey", + "y" : 2 }, { - "y" : 3, "name" : "Kaushik Tunuguntla", - "drilldown" : "Kaushik Tunuguntla" + "drilldown" : "Kaushik Tunuguntla", + "y" : 3 }, { - "name" : "Laurent Rosenfeld", "y" : 5, + "name" : "Laurent Rosenfeld", "drilldown" : "Laurent Rosenfeld" }, { - "y" : 2, + "drilldown" : "Lubos Kolouch", "name" : "Lubos Kolouch", - "drilldown" : "Lubos Kolouch" + "y" : 2 }, { - "drilldown" : "Luca Ferrari", "y" : 6, - "name" : "Luca Ferrari" + "name" : "Luca Ferrari", + "drilldown" : "Luca Ferrari" }, { - "name" : "Mark Anderson", "y" : 2, - "drilldown" : "Mark Anderson" + "drilldown" : "Mark Anderson", + "name" : "Mark Anderson" }, { + "y" : 4, "drilldown" : "Mohammad S Anwar", - "name" : "Mohammad S Anwar", - "y" : 4 + "name" : "Mohammad S Anwar" }, { - "name" : "Niels van Dijke", "y" : 2, + "name" : "Niels van Dijke", "drilldown" : "Niels van Dijke" }, { - "y" : 2, "name" : "Paul Fajman", - "drilldown" : "Paul Fajman" + "drilldown" : "Paul Fajman", + "y" : 2 }, { + "y" : 2, "drilldown" : "Paulo Custodio", - "name" : "Paulo Custodio", - "y" : 2 + "name" : "Paulo Custodio" }, { "y" : 2, @@ -132,44 +129,69 @@ "drilldown" : "Pete Houston" }, { - "drilldown" : "Peter Campbell Smith", "y" : 3, - "name" : "Peter Campbell Smith" + "name" : "Peter Campbell Smith", + "drilldown" : "Peter Campbell Smith" }, { - "drilldown" : "Robert DiCicco", "y" : 2, + "drilldown" : "Robert DiCicco", "name" : "Robert DiCicco" }, { + "drilldown" : "Roger Bell_West", "name" : "Roger Bell_West", - "y" : 4, - "drilldown" : "Roger Bell_West" + "y" : 4 }, { - "y" : 3, "name" : "Simon Green", - "drilldown" : "Simon Green" + "drilldown" : "Simon Green", + "y" : 3 }, { "y" : 2, - "name" : "Simon Proctor", - "drilldown" : "Simon Proctor" + "drilldown" : "Simon Proctor", + "name" : "Simon Proctor" }, { "name" : "Ulrich Rieke", - "y" : 4, - "drilldown" : "Ulrich Rieke" + "drilldown" : "Ulrich Rieke", + "y" : 4 }, { + "drilldown" : "W. Luis Mochan", "name" : "W. Luis Mochan", - "y" : 3, - "drilldown" : "W. Luis Mochan" + "y" : 3 } ], - "colorByPoint" : 1 + "name" : "The Weekly Challenge - 141" } ], + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "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 + }, + "xAxis" : { + "type" : "category" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } + }, + "subtitle" : { + "text" : "[Champions: 32] Last updated at 2021-12-05 23:46:28 GMT" + }, "chart" : { "type" : "column" }, @@ -182,6 +204,7 @@ "drilldown" : { "series" : [ { + "name" : "Abigail", "id" : "Abigail", "data" : [ [ @@ -192,11 +215,9 @@ "Blog", 2 ] - ], - "name" : "Abigail" + ] }, { - "id" : "Adam Russell", "data" : [ [ "Perl", @@ -207,29 +228,31 @@ 1 ] ], - "name" : "Adam Russell" + "name" : "Adam Russell", + "id" : "Adam Russell" }, { - "id" : "Alexander Karelas", "data" : [ [ "Perl", 1 ] ], - "name" : "Alexander Karelas" + "name" : "Alexander Karelas", + "id" : "Alexander Karelas" }, { - "id" : "Alexander Pankoff", "data" : [ [ "Perl", 2 ] ], + "id" : "Alexander Pankoff", "name" : "Alexander Pankoff" }, { + "id" : "Arne Sommer", "name" : "Arne Sommer", "data" : [ [ @@ -240,12 +263,9 @@ "Blog", 1 ] - ], - "id" : "Arne Sommer" + ] }, { - "name" : "Athanasius", - "id" : "Athanasius", "data" : [ [ "Perl", @@ -255,11 +275,21 @@ "Raku", 2 ] - ] + ], + "id" : "Athanasius", + "name" : "Athanasius" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Colin Crain", + "id" : "Colin Crain" }, { - "name" : "Dave Jacoby", - "id" : "Dave Jacoby", "data" : [ [ "Perl", @@ -269,31 +299,33 @@ "Blog", 1 ] - ] + ], + "id" : "Dave Jacoby", + "name" : "Dave Jacoby" }, { + "name" : "David Santiago", + "id" : "David Santiago", "data" : [ [ "Raku", 2 ] - ], - "id" : "David Santiago", - "name" : "David Santiago" + ] }, { + "id" : "Duncan C. White", "name" : "Duncan C. White", "data" : [ [ "Perl", 2 ] - ], - "id" : "Duncan C. White" + ] }, { - "name" : "E. Choroba", "id" : "E. Choroba", + "name" : "E. Choroba", "data" : [ [ "Perl", @@ -302,7 +334,6 @@ ] }, { - "id" : "Flavio Poletti", "data" : [ [ "Perl", @@ -317,17 +348,18 @@ 2 ] ], - "name" : "Flavio Poletti" + "name" : "Flavio Poletti", + "id" : "Flavio Poletti" }, { "id" : "Jake", + "name" : "Jake", "data" : [ [ "Perl", 1 ] - ], - "name" : "Jake" + ] }, { "data" : [ @@ -340,14 +372,14 @@ "name" : "Jan Krnavek" }, { + "name" : "Jorg Sommrey", + "id" : "Jorg Sommrey", "data" : [ [ "Perl", 2 ] - ], - "id" : "Jorg Sommrey", - "name" : "Jorg Sommrey" + ] }, { "data" : [ @@ -364,7 +396,6 @@ "name" : "Kaushik Tunuguntla" }, { - "id" : "Laurent Rosenfeld", "data" : [ [ "Perl", @@ -379,20 +410,20 @@ 1 ] ], - "name" : "Laurent Rosenfeld" + "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld" }, { + "name" : "Lubos Kolouch", + "id" : "Lubos Kolouch", "data" : [ [ "Perl", 2 ] - ], - "id" : "Lubos Kolouch", - "name" : "Lubos Kolouch" + ] }, { - "id" : "Luca Ferrari", "data" : [ [ "Raku", @@ -403,19 +434,22 @@ 4 ] ], - "name" : "Luca Ferrari" + "name" : "Luca Ferrari", + "id" : "Luca Ferrari" }, { - "id" : "Mark Anderson", "data" : [ [ "Raku", 2 ] ], + "id" : "Mark Anderson", "name" : "Mark Anderson" }, { + "name" : "Mohammad S Anwar", + "id" : "Mohammad S Anwar", "data" : [ [ "Perl", @@ -425,52 +459,51 @@ "Raku", 2 ] - ], - "id" : "Mohammad S Anwar", - "name" : "Mohammad S Anwar" + ] }, { + "id" : "Niels van Dijke", "name" : "Niels van Dijke", "data" : [ [ "Perl", 2 ] - ], - "id" : "Niels van Dijke" + ] }, { - "name" : "Paul Fajman", "data" : [ [ "Perl", 2 ] ], + "name" : "Paul Fajman", "id" : "Paul Fajman" }, { - "id" : "Paulo Custodio", "data" : [ [ "Perl", 2 ] ], - "name" : "Paulo Custodio" + "name" : "Paulo Custodio", + "id" : "Paulo Custodio" }, { - "id" : "Pete Houston", "data" : [ [ "Perl", 2 ] ], - "name" : "Pete Houston" + "name" : "Pete Houston", + "id" : "Pete Houston" }, { "id" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith", "data" : [ [ "Perl", @@ -480,8 +513,7 @@ "Blog", 1 ] - ], - "name" : "Peter Campbell Smith" + ] }, { "data" : [ @@ -494,8 +526,6 @@ "name" : "Robert DiCicco" }, { - "name" : "Roger Bell_West", - "id" : "Roger Bell_West", "data" : [ [ "Perl", @@ -505,11 +535,11 @@ "Raku", 2 ] - ] + ], + "name" : "Roger Bell_West", + "id" : "Roger Bell_West" }, { - "name" : "Simon Green", - "id" : "Simon Green", "data" : [ [ "Perl", @@ -519,20 +549,23 @@ "Blog", 1 ] - ] + ], + "name" : "Simon Green", + "id" : "Simon Green" }, { - "name" : "Simon Proctor", - "id" : "Simon Proctor", "data" : [ [ "Raku", 2 ] - ] + ], + "id" : "Simon Proctor", + "name" : "Simon Proctor" }, { "id" : "Ulrich Rieke", + "name" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -542,12 +575,9 @@ "Raku", 2 ] - ], - "name" : "Ulrich Rieke" + ] }, { - "name" : "W. Luis Mochan", - "id" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -557,25 +587,10 @@ "Blog", 1 ] - ] + ], + "name" : "W. Luis Mochan", + "id" : "W. Luis Mochan" } ] - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, - "subtitle" : { - "text" : "[Champions: 31] Last updated at 2021-12-05 22:03:53 GMT" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index df2b82fdef..afb03ea4d5 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,22 +1,48 @@ { + "title" : { + "text" : "The Weekly Challenge Contributions [2019 - 2021]" + }, + "legend" : { + "enabled" : "false" + }, + "subtitle" : { + "text" : "Last updated at 2021-12-05 23:46:28 GMT" + }, + "chart" : { + "type" : "column" + }, "xAxis" : { + "type" : "category", "labels" : { "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" } - }, - "type" : "category" + } + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : null + } }, "tooltip" : { "pointFormat" : "<b>{point.y:.0f}</b>" }, - "chart" : { - "type" : "column" - }, "series" : [ { - "name" : "Contributions", + "dataLabels" : { + "enabled" : "true", + "color" : "#FFFFFF", + "y" : 10, + "align" : "right", + "format" : "{point.y:.0f}", + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + }, + "rotation" : -90 + }, "data" : [ [ "Blog", @@ -24,40 +50,14 @@ ], [ "Perl", - 6802 + 6804 ], [ "Raku", 4125 ] ], - "dataLabels" : { - "format" : "{point.y:.0f}", - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - }, - "y" : 10, - "align" : "right", - "color" : "#FFFFFF", - "enabled" : "true", - "rotation" : -90 - } + "name" : "Contributions" } - ], - "legend" : { - "enabled" : "false" - }, - "title" : { - "text" : "The Weekly Challenge Contributions [2019 - 2021]" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : null - } - }, - "subtitle" : { - "text" : "Last updated at 2021-12-05 22:03:53 GMT" - } + ] } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 819ef046dd..a9af26ecbf 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,17 +1,742 @@ { - "title" : { - "text" : "The Weekly Challenge Language" + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } + } }, - "legend" : { - "enabled" : "false" + "xAxis" : { + "type" : "category" }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2021-12-05 22:03:53 GMT" + "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" + }, + "series" : [ + { + "colorByPoint" : "true", + "data" : [ + { + "y" : 161, + "name" : "#001", + "drilldown" : "001" + }, + { + "name" : "#002", + "drilldown" : "002", + "y" : 125 + }, + { + "y" : 83, + "name" : "#003", + "drilldown" : "003" + }, + { + "name" : "#004", + "drilldown" : "004", + "y" : 99 + }, + { + "drilldown" : "005", + "name" : "#005", + "y" : 78 + }, + { + "name" : "#006", + "drilldown" : "006", + "y" : 58 + }, + { + "name" : "#007", + "drilldown" : "007", + "y" : 64 + }, + { + "drilldown" : "008", + "name" : "#008", + "y" : 78 + }, + { + "y" : 76, + "name" : "#009", + "drilldown" : "009" + }, + { + "name" : "#010", + "drilldown" : "010", + "y" : 65 + }, + { + "y" : 85, + "name" : "#011", + "drilldown" : "011" |
