diff options
| author | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2022-02-27 23:32:45 +0000 |
|---|---|---|
| committer | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2022-02-27 23:32:45 +0000 |
| commit | 649b9ea422797ad2410cdd0c93a4bd1dfed89a8f (patch) | |
| tree | 07bb051843fdddfc90186c971eafaa75c7170f46 | |
| parent | 50db49be648308c78e385ca64683b27f85cc9668 (diff) | |
| download | perlweeklychallenge-club-649b9ea422797ad2410cdd0c93a4bd1dfed89a8f.tar.gz perlweeklychallenge-club-649b9ea422797ad2410cdd0c93a4bd1dfed89a8f.tar.bz2 perlweeklychallenge-club-649b9ea422797ad2410cdd0c93a4bd1dfed89a8f.zip | |
- Added solutions by Colin Crain.
| -rwxr-xr-x | challenge-153/colin-crain/perl/ch-1.pl | 89 | ||||
| -rwxr-xr-x | challenge-153/colin-crain/perl/ch-2.pl | 109 | ||||
| -rwxr-xr-x | challenge-153/colin-crain/raku/ch-1.raku | 15 | ||||
| -rwxr-xr-x | challenge-153/colin-crain/raku/ch-2.raku | 25 | ||||
| -rw-r--r-- | stats/pwc-current.json | 224 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown-summary.json | 72 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown.json | 2072 | ||||
| -rw-r--r-- | stats/pwc-leaders.json | 712 | ||||
| -rw-r--r-- | stats/pwc-summary-1-30.json | 102 | ||||
| -rw-r--r-- | stats/pwc-summary-121-150.json | 116 | ||||
| -rw-r--r-- | stats/pwc-summary-151-180.json | 26 | ||||
| -rw-r--r-- | stats/pwc-summary-181-210.json | 40 | ||||
| -rw-r--r-- | stats/pwc-summary-211-240.json | 38 | ||||
| -rw-r--r-- | stats/pwc-summary-241-270.json | 46 | ||||
| -rw-r--r-- | stats/pwc-summary-31-60.json | 112 | ||||
| -rw-r--r-- | stats/pwc-summary-61-90.json | 42 | ||||
| -rw-r--r-- | stats/pwc-summary-91-120.json | 102 | ||||
| -rw-r--r-- | stats/pwc-summary.json | 556 |
18 files changed, 2372 insertions, 2126 deletions
diff --git a/challenge-153/colin-crain/perl/ch-1.pl b/challenge-153/colin-crain/perl/ch-1.pl new file mode 100755 index 0000000000..08166fd717 --- /dev/null +++ b/challenge-153/colin-crain/perl/ch-1.pl @@ -0,0 +1,89 @@ +#!/Users/colincrain/perl5/perlbrew/perls/perl-5.32.0/bin/perl
+#
+# facts-left-to-the-reader.pl
+#
+# Left Factorials
+# Submitted by: Mohammad S Anwar
+# Write a script to compute Left Factorials of 1 to 10. Please
+# refer OEIS A003422 for more information.
+#
+# Expected Output:
+# 1, 2, 4, 10, 34, 154, 874, 5914, 46234, 409114
+#
+# analysis:
+# I found the meaning of the left factorial unusually elusive
+# for this task for some reason. Maybe because I wasn't fully
+# awake, and was distracted, but however I had it figured in my
+# head the answer to my confusion was, surprising no-one,
+# considerably simpler than I made out.
+#
+# Call it being unable to see the forest from the technical
+# minutia.
+#
+# In any case I will make a stab at my own descriptive
+# definition:
+#
+# The sum of all values in the sequence of factorials to the
+# left of, but not including, the value in question. So L(4) =
+# 3! + 2! + 1! + 0!
+#
+# Another clver bit of nomaclature I saw was to denotate this
+# as:
+#
+# !5 = 0! + 1! + 2! + 3! + 4!
+#
+# Note the exclamation is placed tp the left for the left
+# factorial.
+#
+# 0! is a funny concept that for the purposes of disucssion
+# equals 1, and is arrived at by considering the sequence as a
+# whole.
+#
+# method:
+# To compute a list of the first ten, or whatever number, of
+# left factorials, we will need to compute factorials and
+# maintain a running sum sequence of those preceding. To keep
+# things interesting we'll input an arbitrary number request
+# for the sequence instead of fixing the request to 10.
+#
+# Things blow up quickly along the factorial number line.
+#
+#
+# © 2022 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use utf8;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+use bigint;
+
+my $num = shift // 50;
+
+my @left = (0,1);
+my $fact = 1;
+my $count = 1;
+
+while ($count < $num) {
+ $fact *= $count;
+ push @left, $left[-1] + $fact;
+ $count++;
+}
+
+say for @left;
+
+
+
+
+
+
+
+# use Test::More;
+#
+# is
+#
+# done_testing();
diff --git a/challenge-153/colin-crain/perl/ch-2.pl b/challenge-153/colin-crain/perl/ch-2.pl new file mode 100755 index 0000000000..d38ff1d237 --- /dev/null +++ b/challenge-153/colin-crain/perl/ch-2.pl @@ -0,0 +1,109 @@ +#!/Users/colincrain/perl5/perlbrew/perls/perl-5.32.0/bin/perl
+#
+# factory-people-in-a-factory-world.pl
+#
+# Factorions
+# Submitted by: Mohammad S Anwar
+# You are given an integer, $n.
+#
+# Write a script to figure out if the given integer is factorion.
+#
+# A factorion is a natural number that equals the sum of the
+# factorials of its digits.
+#
+# Example 1:
+# Input: $n = 145
+# Output: 1
+#
+# Since 1! + 4! + 5! => 1 + 24 + 120 = 145
+#
+# Example 2:
+# Input: $n = 123
+# Output: 0
+#
+# Since 1! + 2! + 3! => 1 + 2 + 6 <> 123
+
+
+# method:
+#
+# This is another example of a multi-part puzzle that at first
+# seems more complicated than it turns out to be in the end.
+#
+# Which is to say the factorial part may at first glance seem
+# daunting, but on further reflection we're only asking for the
+# factorial for any single digit. So there's ten of these, and
+# those are all the values we will ever need.
+#
+# In fact, if we make a 1:1 mapping of the digits to their
+# corresponding factorials, we can divide a number down into
+# its digits and substitute in the factorials before summing.
+#
+# At that point we only need to check for equality between the
+# value and its factorial digit-sum.
+#
+# Because we only need the ten factorial values, it would make
+# sense to hard-code them into an array or hash lookup, indexed
+# against the digit values 0-9. But we're not going to do that;
+# we walk our own path in this crazy, mixed up world. Instead
+# we're going to make a short factorial function and calculate
+# the sequence from 0 through 9. Because YOLO that's why. Party
+# on, Garth, party on.
+
+# observations:
+#
+# there are a grand total of 4 factorions: 1, 2, 145 and 40585
+#
+# there can be no factorials above 7 digits because the
+# smallest 8-digit number — 10,000,000 — is larger than the sum
+# of the largest 8-gigit number: 9! + 9! + 9! + 9! + 9! + 9! +
+# 9! + 9! = 2,903,040
+#
+# So no 8-digit number can be large enough to sum to its own
+# value. By this same reasoning no larger number can either. So
+# having manually sifted through values up to 10,000,000 we can
+# state these are the only instances.
+#
+# This is indeed the case, per listing in the OEIS:
+#
+# A014080 Factorions: equal to the sum of the factorials
+# of their digits in base 10
+#
+# © 2022 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use utf8;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+
+
+
+our @fact = (1);
+push @fact, $fact[-1] * $_ for 1..9;
+
+sub is_factorion($n = 145, $ds = 0) {
+ $ds += $_ for map { $fact[$_] } split //, $n;
+
+ return $ds == $n
+}
+
+
+for (1..10000000) {
+ say if is_factorion($_);
+}
+
+# say for grep { is_factorion($_) } 1..10_000_000 ;
+
+# use Test::More;
+#
+# is is_factorion(145), 1, 'ex-1';
+# is is_factorion(123), 0, 'ex-2';
+#
+#
+# done_testing();
+
+# 362,880
diff --git a/challenge-153/colin-crain/raku/ch-1.raku b/challenge-153/colin-crain/raku/ch-1.raku new file mode 100755 index 0000000000..5680f4ca75 --- /dev/null +++ b/challenge-153/colin-crain/raku/ch-1.raku @@ -0,0 +1,15 @@ +#!/usr/bin/env perl6 +# +# +# facts-left-to-the-reader.raku +# +# +# +# © 2022 colin crain +## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## + + + +unit sub MAIN ( $num = 50 ) ; + +say [+] map { [*] 1..$_ }, ^$_ for 0..$num; diff --git a/challenge-153/colin-crain/raku/ch-2.raku b/challenge-153/colin-crain/raku/ch-2.raku new file mode 100755 index 0000000000..9f6f450ab0 --- /dev/null +++ b/challenge-153/colin-crain/raku/ch-2.raku @@ -0,0 +1,25 @@ +#!/usr/bin/env perl6 +# +# +# factory-people-in-a-factory-world.raku +# +# +# +# © 2022 colin crain +## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## + + + +unit sub MAIN ( $n = 145 ) ; + + +my @f = map { [*] 1..$_ }, 0..9; + +sub is_factorion($n, $ds = 0) { + $n == $n.comb + .map({@f[$_]}) + .sum +} + +.say for (^10000000).grep: {is_factorion $_} + diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 10e67d5a14..0789d16ec9 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,29 +1,24 @@ { - "xAxis" : { - "type" : "category" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } } }, - "title" : { - "text" : "The Weekly Challenge - 153" - }, - "legend" : { - "enabled" : 0 - }, "drilldown" : { "series" : [ { + "id" : "Abigail", "data" : [ [ "Perl", 2 ] ], - "name" : "Abigail", - "id" : "Abigail" + "name" : "Abigail" }, { "data" : [ @@ -40,8 +35,8 @@ 2 ] ], - "name" : "Alexander Pankoff", - "id" : "Alexander Pankoff" + "id" : "Alexander Pankoff", + "name" : "Alexander Pankoff" }, { "data" : [ @@ -72,7 +67,7 @@ "name" : "Athanasius" }, { - "id" : "Bruce Gray", + "name" : "Bruce Gray", "data" : [ [ "Perl", @@ -83,11 +78,19 @@ 2 ] ], - "name" : "Bruce Gray" + "id" : "Bruce Gray" }, { "data" : [ [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ "Blog", 2 ] @@ -96,7 +99,7 @@ "name" : "Colin Crain" }, { - "id" : "Dave Jacoby", + "name" : "Dave Jacoby", "data" : [ [ "Perl", @@ -107,30 +110,31 @@ 1 ] ], - "name" : "Dave Jacoby" + "id" : "Dave Jacoby" }, { + "name" : "Duncan C. White", "id" : "Duncan C. White", "data" : [ [ "Perl", 2 ] - ], - "name" : "Duncan C. White" + ] }, { + "name" : "E. Choroba", "data" : [ [ "Perl", 2 ] ], - "name" : "E. Choroba", "id" : "E. Choroba" }, { "name" : "Flavio Poletti", + "id" : "Flavio Poletti", "data" : [ [ "Perl", @@ -144,18 +148,17 @@ "Blog", 2 ] - ], - "id" : "Flavio Poletti" + ] }, { + "id" : "Jan Krnavek", "data" : [ [ "Raku", 2 ] ], - "name" : "Jan Krnavek", - "id" : "Jan Krnavek" + "name" : "Jan Krnavek" }, { "data" : [ @@ -168,7 +171,6 @@ "name" : "Jorg Sommrey" }, { - "id" : "Laurent Rosenfeld", "data" : [ [ "Perl", @@ -183,6 +185,7 @@ 1 ] ], + "id" : "Laurent Rosenfeld", "name" : "Laurent Rosenfeld" }, { @@ -192,8 +195,8 @@ 2 ] ], - "name" : "Lubos Kolouch", - "id" : "Lubos Kolouch" + "id" : "Lubos Kolouch", + "name" : "Lubos Kolouch" }, { "data" : [ @@ -206,28 +209,28 @@ 2 ] ], - "name" : "Luca Ferrari", - "id" : "Luca Ferrari" + "id" : "Luca Ferrari", + "name" : "Luca Ferrari" }, { - "name" : "Mark Anderson", + "id" : "Mark Anderson", "data" : [ [ "Raku", 2 ] ], - "id" : "Mark Anderson" + "name" : "Mark Anderson" }, { - "name" : "Marton Polgar", + "id" : "Marton Polgar", "data" : [ [ "Raku", 2 ] ], - "id" : "Marton Polgar" + "name" : "Marton Polgar" }, { "data" : [ @@ -236,8 +239,8 @@ 2 ] ], - "name" : "Matthew Neleigh", - "id" : "Matthew Neleigh" + "id" : "Matthew Neleigh", + "name" : "Matthew Neleigh" }, { "data" : [ @@ -250,27 +253,27 @@ "name" : "Mohammad S Anwar" }, { - "name" : "Olivier Delouya", "data" : [ [ "Perl", 1 ] ], - "id" : "Olivier Delouya" + "id" : "Olivier Delouya", + "name" : "Olivier Delouya" }, { + "name" : "Pete Houston", + "id" : "Pete Houston", "data" : [ [ "Perl", 2 ] - ], - "name" : "Pete Houston", - "id" : "Pete Houston" + ] }, { - "id" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith", "data" : [ [ "Perl", @@ -281,7 +284,7 @@ 1 ] ], - "name" : "Peter Campbell Smith" + "id" : "Peter Campbell Smith" }, { "name" : "PokGoPun", @@ -294,6 +297,7 @@ "id" : "PokGoPun" }, { + "id" : "Robert DiCicco", "data" : [ [ "Perl", @@ -304,20 +308,20 @@ 2 ] ], - "id" : "Robert DiCicco", "name" : "Robert DiCicco" }, { + "id" : "Robert Ransbottom", "data" : [ [ "Raku", 1 ] ], - "name" : "Robert Ransbottom", - "id" : "Robert Ransbottom" + "name" : "Robert Ransbottom" }, { + "name" : "Roger Bell_West", "data" : [ [ "Perl", @@ -332,18 +336,17 @@ 1 ] ], - "name" : "Roger Bell_West", "id" : "Roger Bell_West" }, { + "name" : "Simon Green", "data" : [ [ "Blog", 1 ] ], - "id" : "Simon Green", - "name" : "Simon Green" + "id" : "Simon Green" }, { "data" : [ @@ -360,6 +363,8 @@ "name" : "Ulrich Rieke" }, { + "name" : "W. Luis Mochan", + "id" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -369,40 +374,39 @@ "Blog", 1 ] - ], - "id" : "W. Luis Mochan", - "name" : "W. Luis Mochan" + ] } ] }, + "title" : { + "text" : "The Weekly Challenge - 153" + }, + "xAxis" : { + "type" : "category" + }, "tooltip" : { - "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>", "followPointer" : 1, - "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>" + "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/>" }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 + "legend" : { + "enabled" : 0 + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" } }, "subtitle" : { - "text" : "[Champions: 29] Last updated at 2022-02-27 23:19:16 GMT" - }, - "chart" : { - "type" : "column" + "text" : "[Champions: 29] Last updated at 2022-02-27 23:29:40 GMT" }, "series" : [ { - "name" : "The Weekly Challenge - 153", "data" : [ { + "name" : "Abigail", "y" : 2, - "drilldown" : "Abigail", - "name" : "Abigail" + "drilldown" : "Abigail" }, { "drilldown" : "Alexander Pankoff", @@ -410,44 +414,44 @@ "name" : "Alexander Pankoff" }, { - "y" : 3, "drilldown" : "Arne Sommer", + "y" : 3, "name" : "Arne Sommer" }, { "name" : "Athanasius", - "y" : 4, - "drilldown" : "Athanasius" + "drilldown" : "Athanasius", + "y" : 4 }, { - "drilldown" : "Bruce Gray", "y" : 4, + "drilldown" : "Bruce Gray", "name" : "Bruce Gray" }, { - "name" : "Colin Crain", + "y" : 6, "drilldown" : "Colin Crain", - "y" : 2 + "name" : "Colin Crain" }, { - "drilldown" : "Dave Jacoby", + "name" : "Dave Jacoby", "y" : 3, - "name" : "Dave Jacoby" + "drilldown" : "Dave Jacoby" }, { "name" : "Duncan C. White", - "drilldown" : "Duncan C. White", - "y" : 2 + "y" : 2, + "drilldown" : "Duncan C. White" }, { + "name" : "E. Choroba", "y" : 2, - "drilldown" : "E. Choroba", - "name" : "E. Choroba" + "drilldown" : "E. Choroba" }, { - "name" : "Flavio Poletti", "y" : 6, - "drilldown" : "Flavio Poletti" + "drilldown" : "Flavio Poletti", + "name" : "Flavio Poletti" }, { "name" : "Jan Krnavek", @@ -455,34 +459,34 @@ "drilldown" : "Jan Krnavek" }, { - "drilldown" : "Jorg Sommrey", + "name" : "Jorg Sommrey", "y" : 2, - "name" : "Jorg Sommrey" + "drilldown" : "Jorg Sommrey" }, { + "name" : "Laurent Rosenfeld", "drilldown" : "Laurent Rosenfeld", - "y" : 5, - "name" : "Laurent Rosenfeld" + "y" : 5 }, { - "name" : "Lubos Kolouch", "drilldown" : "Lubos Kolouch", - "y" : 2 + "y" : 2, + "name" : "Lubos Kolouch" }, { + "name" : "Luca Ferrari", "drilldown" : "Luca Ferrari", - "y" : 4, - "name" : "Luca Ferrari" + "y" : 4 }, { - "name" : "Mark Anderson", + "drilldown" : "Mark Anderson", "y" : 2, - "drilldown" : "Mark Anderson" + "name" : "Mark Anderson" }, { - "name" : "Marton Polgar", "drilldown" : "Marton Polgar", - "y" : 2 + "y" : 2, + "name" : "Marton Polgar" }, { "name" : "Matthew Neleigh", @@ -490,14 +494,14 @@ "drilldown" : "Matthew Neleigh" }, { - "name" : "Mohammad S Anwar", + "y" : 2, "drilldown" : "Mohammad S Anwar", - "y" : 2 + "name" : "Mohammad S Anwar" }, { + "name" : "Olivier Delouya", "drilldown" : "Olivier Delouya", - "y" : 1, - "name" : "Olivier Delouya" + "y" : 1 }, { "name" : "Pete Houston", @@ -505,13 +509,13 @@ "drilldown" : "Pete Houston" }, { - "drilldown" : "Peter Campbell Smith", "y" : 3, + "drilldown" : "Peter Campbell Smith", "name" : "Peter Campbell Smith" }, { - "drilldown" : "PokGoPun", "y" : 2, + "drilldown" : "PokGoPun", "name" : "PokGoPun" }, { @@ -520,13 +524,13 @@ "y" : 4 }, { - "y" : 1, "drilldown" : "Robert Ransbottom", + "y" : 1, "name" : "Robert Ransbottom" }, { - "y" : 5, "drilldown" : "Roger Bell_West", + "y" : 5, "name" : "Roger Bell_West" }, { @@ -535,9 +539,9 @@ "y" : 1 }, { + "name" : "Ulrich Rieke", "y" : 4, - "drilldown" : "Ulrich Rieke", - "name" : "Ulrich Rieke" + "drilldown" : "Ulrich Rieke" }, { "name" : "W. Luis Mochan", @@ -545,7 +549,11 @@ "drilldown" : "W. Luis Mochan" } ], - "colorByPoint" : 1 + "colorByPoint" : 1, + "name" : "The Weekly Challenge - 153" } - ] + ], + "chart" : { + "type" : "column" + } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 4ab6ec7e14..680b00c2c0 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,28 +1,6 @@ { - "tooltip" : { - "pointFormat" : "<b>{point.y:.0f}</b>" - }, - "chart" : { - "type" : "column" - }, - "subtitle" : { - "text" : "Last updated at 2022-02-27 23:19:15 GMT" - }, "series" : [ { - "dataLabels" : { - "color" : "#FFFFFF", - "rotation" : -90, - "align" : "right", - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - }, - "format" : "{point.y:.0f}", - "y" : 10, - "enabled" : "true" - }, - "name" : "Contributions", "data" : [ [ "Blog", @@ -30,34 +8,56 @@ ], [ "Perl", - 7367 + 7369 ], [ "Raku", - 4429 + 4431 ] - ] + ], + "name" : "Contributions", + "dataLabels" : { + "y" : 10, + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + }, + "color" : "#FFFFFF", + "enabled" : "true", + "format" : "{point.y:.0f}", + "align" : "right", + "rotation" : -90 + } } ], + "subtitle" : { + "text" : "Last updated at 2022-02-27 23:29:40 GMT" + }, + "chart" : { + "type" : "column" + }, + "legend" : { + "enabled" : "false" + }, + "tooltip" : { + "pointFormat" : "<b>{point.y:.0f}</b>" + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : null + } + }, "xAxis" : { + "type" : "category", "labels" : { "style" : { "fontFamily" : "Verdana, sans-serif", "fontSize" : "13px" } - }, - "type" : "category" + } }, "title" : { "text" : "The Weekly Challenge Contributions [2019 - 2022]" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : null - } - }, - "legend" : { - "enabled" : "false" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index c75c6403a5..d71516ee86 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,809 +1,15 @@ { - "legend" : { - "enabled" : "false" - }, - "xAxis" : { - "type" : "category" - }, "title" : { "text" : "The Weekly Challenge Language" }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "series" : [ - { - "name" : "The Weekly Challenge Languages", - "data" : [ - { - "name" : "#001", - "y" : 161, - "drilldown" : "001" - }, - { - "name" : "#002", - "y" : 125, - "drilldown" : "002" - }, - { - "drilldown" : "003", - "y" : 83, - "name" : "#003" - }, - { - "name" : "#004", - "y" : 99, - "drilldown" : "004" - }, - { - "name" : "#005", - "y" : 78, - "drilldown" : "005" - }, - { - "drilldown" : "006", - "y" : 58, - "name" : "#006" - }, - { - "y" : 64, - "drilldown" : "007", - "name" : "#007" - }, - { - "name" : "#008", - "drilldown" : "008", - "y" : 78 - }, - { - "name" : "#009", - "drilldown" : "009", - "y" : 76 - }, - { - "name" : "#010", - "y" : 65, - "drilldown" : "010" - }, - { - "name" : "#011", - "y" : 85, - "drilldown" : "011" - }, - { - "name" : "#012", - "drilldown" : "012", - "y" : 89 - }, - { - "name" : "#013", - "y" : 85, - "drilldown" : "013" - }, - |
