From 61bf45cc4a6a6282d910ecbb6b3ab1fa80145b1b Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Thu, 16 Jan 2020 09:25:12 +0000 Subject: - Added solutions by Duane Powell. --- challenge-043/duane-powell/perl/ch-1.pl | 34 +++ challenge-043/duane-powell/perl/ch-2.pl | 69 ++++++ challenge-043/duane-powell/perl5/ch-1.pl | 34 --- challenge-043/duane-powell/perl5/ch-2.pl | 69 ------ stats/pwc-current.json | 103 ++++---- stats/pwc-language-breakdown-summary.json | 84 +++---- stats/pwc-language-breakdown.json | 368 ++++++++++++++--------------- stats/pwc-leaders.json | 374 +++++++++++++++--------------- stats/pwc-summary-1-30.json | 48 ++-- stats/pwc-summary-121-150.json | 96 ++++---- stats/pwc-summary-31-60.json | 92 ++++---- stats/pwc-summary-61-90.json | 104 ++++----- stats/pwc-summary-91-120.json | 42 ++-- stats/pwc-summary.json | 32 +-- 14 files changed, 782 insertions(+), 767 deletions(-) create mode 100755 challenge-043/duane-powell/perl/ch-1.pl create mode 100755 challenge-043/duane-powell/perl/ch-2.pl delete mode 100755 challenge-043/duane-powell/perl5/ch-1.pl delete mode 100755 challenge-043/duane-powell/perl5/ch-2.pl diff --git a/challenge-043/duane-powell/perl/ch-1.pl b/challenge-043/duane-powell/perl/ch-1.pl new file mode 100755 index 0000000000..6200835b4b --- /dev/null +++ b/challenge-043/duane-powell/perl/ch-1.pl @@ -0,0 +1,34 @@ +#!/usr/bin/perl +use warnings; +use strict; +use feature qw( say ); +use Math::Combinatorics; + +# task 1, see https://perlweeklychallenge.org/blog/perl-weekly-challenge-043/ + +my @num = (1,2,3,4,6); +my $eleven = 11; + +sub red {return 9 + $_[0]}; +sub green {return 5 + $_[0] + $_[1]}; +sub black {return 0 + $_[0] + $_[1] + $_[2]}; +sub yellow {return 7 + $_[0] + $_[1]}; +sub blue {return 8 + $_[0]}; + +my $c = Math::Combinatorics->new(count => 1, data => [@num]); +while (my @perm = $c->next_permutation) { + next unless red($perm[0]) == $eleven; + next unless green($perm[0],$perm[1]) == $eleven; + next unless black($perm[1],$perm[2],$perm[3]) == $eleven; + next unless yellow($perm[3],$perm[4]) == $eleven; + next unless blue($perm[4]) == $eleven; + + # a solution found if we made it here + say join(',',@perm); +} + +__END__ + +./ch-1.pl +2,4,6,1,3 + diff --git a/challenge-043/duane-powell/perl/ch-2.pl b/challenge-043/duane-powell/perl/ch-2.pl new file mode 100755 index 0000000000..f9230244de --- /dev/null +++ b/challenge-043/duane-powell/perl/ch-2.pl @@ -0,0 +1,69 @@ +#!/usr/bin/perl +use warnings; +use strict; +use feature qw( say ); + +# task 2, see https://perlweeklychallenge.org/blog/perl-weekly-challenge-043/ + +my $base = shift; +die "$base must be between 0 and 11, ie 1-10" unless ($base > 0 and $base < 11); + +# Search through all numbers from 0 to the number of digits in the base, +# checking for a self descriptive number (SDN). Very slow for base > 7. +my $max = '1' . '0' x $base; +foreach (0 .. $max) { + say $_ if SDN($_,$base); +} + +sub SDN { + my $n = shift; + my $base = shift; + + my @n = split(//,$n); # Split $n into separate digits + return 0 unless (scalar @n == $base); # A SND is the same length as its base + + my %count; + $count{$_} = 0 foreach (0 .. scalar(@n)-1); # Init a counter to all 0's + $count{$_}++ foreach (@n); # Count the occurance of each digit + + # Determine if $n "describes" itself by comparing + # the count to the digit found at index $i + my $i = 0; + foreach (0 .. scalar(@n)-1) { + return 0 if ($count{$_} != $n[$i]); # not a SDN, exit + $i++; + } + return 1; # All digits matched the counts, this is an SDN +} + +__END__ + + +./ch-2.pl 4 +1210 +2020 + +./ch-2.pl 5 +21200 + +./ch-2.pl 7 +3211000 + +time ./ch-2.pl 8 +42101000 + +real 8m15.640s +user 8m15.348s +sys 0m0.028s + +time ./ch-2.pl 9 +521001000 + +real 57m54.980s +user 57m53.948s +sys 0m0.092s + +time ./ch-2.pl 10 +6210001000 + + diff --git a/challenge-043/duane-powell/perl5/ch-1.pl b/challenge-043/duane-powell/perl5/ch-1.pl deleted file mode 100755 index 6200835b4b..0000000000 --- a/challenge-043/duane-powell/perl5/ch-1.pl +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/perl -use warnings; -use strict; -use feature qw( say ); -use Math::Combinatorics; - -# task 1, see https://perlweeklychallenge.org/blog/perl-weekly-challenge-043/ - -my @num = (1,2,3,4,6); -my $eleven = 11; - -sub red {return 9 + $_[0]}; -sub green {return 5 + $_[0] + $_[1]}; -sub black {return 0 + $_[0] + $_[1] + $_[2]}; -sub yellow {return 7 + $_[0] + $_[1]}; -sub blue {return 8 + $_[0]}; - -my $c = Math::Combinatorics->new(count => 1, data => [@num]); -while (my @perm = $c->next_permutation) { - next unless red($perm[0]) == $eleven; - next unless green($perm[0],$perm[1]) == $eleven; - next unless black($perm[1],$perm[2],$perm[3]) == $eleven; - next unless yellow($perm[3],$perm[4]) == $eleven; - next unless blue($perm[4]) == $eleven; - - # a solution found if we made it here - say join(',',@perm); -} - -__END__ - -./ch-1.pl -2,4,6,1,3 - diff --git a/challenge-043/duane-powell/perl5/ch-2.pl b/challenge-043/duane-powell/perl5/ch-2.pl deleted file mode 100755 index f9230244de..0000000000 --- a/challenge-043/duane-powell/perl5/ch-2.pl +++ /dev/null @@ -1,69 +0,0 @@ -#!/usr/bin/perl -use warnings; -use strict; -use feature qw( say ); - -# task 2, see https://perlweeklychallenge.org/blog/perl-weekly-challenge-043/ - -my $base = shift; -die "$base must be between 0 and 11, ie 1-10" unless ($base > 0 and $base < 11); - -# Search through all numbers from 0 to the number of digits in the base, -# checking for a self descriptive number (SDN). Very slow for base > 7. -my $max = '1' . '0' x $base; -foreach (0 .. $max) { - say $_ if SDN($_,$base); -} - -sub SDN { - my $n = shift; - my $base = shift; - - my @n = split(//,$n); # Split $n into separate digits - return 0 unless (scalar @n == $base); # A SND is the same length as its base - - my %count; - $count{$_} = 0 foreach (0 .. scalar(@n)-1); # Init a counter to all 0's - $count{$_}++ foreach (@n); # Count the occurance of each digit - - # Determine if $n "describes" itself by comparing - # the count to the digit found at index $i - my $i = 0; - foreach (0 .. scalar(@n)-1) { - return 0 if ($count{$_} != $n[$i]); # not a SDN, exit - $i++; - } - return 1; # All digits matched the counts, this is an SDN -} - -__END__ - - -./ch-2.pl 4 -1210 -2020 - -./ch-2.pl 5 -21200 - -./ch-2.pl 7 -3211000 - -time ./ch-2.pl 8 -42101000 - -real 8m15.640s -user 8m15.348s -sys 0m0.028s - -time ./ch-2.pl 9 -521001000 - -real 57m54.980s -user 57m53.948s -sys 0m0.092s - -time ./ch-2.pl 10 -6210001000 - - diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 6a8a4b24a6..72237f1179 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,75 +1,76 @@ { - "tooltip" : { - "followPointer" : 1, - "headerFormat" : "{series.name}
", - "pointFormat" : "{point.name}: {point.y:f}
" - }, - "subtitle" : { - "text" : "[Champions: 5] Last updated at 2020-01-15 11:38:03 GMT" + "xAxis" : { + "type" : "category" }, "series" : [ { + "colorByPoint" : 1, "data" : [ + { + "y" : 2, + "name" : "Duane Powell", + "drilldown" : "Duane Powell" + }, { "drilldown" : "E. Choroba", "name" : "E. Choroba", "y" : 3 }, { + "name" : "Javier Luque", "y" : 5, - "drilldown" : "Javier Luque", - "name" : "Javier Luque" + "drilldown" : "Javier Luque" }, { - "drilldown" : "Markus Holzer", "name" : "Markus Holzer", - "y" : 2 + "y" : 2, + "drilldown" : "Markus Holzer" }, { - "name" : "Roger Bell West", "drilldown" : "Roger Bell West", - "y" : 4 + "y" : 4, + "name" : "Roger Bell West" }, { + "y" : 2, "name" : "Simon Proctor", - "drilldown" : "Simon Proctor", - "y" : 2 + "drilldown" : "Simon Proctor" } ], - "colorByPoint" : 1, "name" : "Perl Weekly Challenge - 043" } ], - "xAxis" : { - "type" : "category" - }, "plotOptions" : { "series" : { - "borderWidth" : 0, "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 } }, - "chart" : { - "type" : "column" + "title" : { + "text" : "Perl Weekly Challenge - 043" }, "legend" : { "enabled" : 0 }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "title" : { - "text" : "Perl Weekly Challenge - 043" + "chart" : { + "type" : "column" }, "drilldown" : { "series" : [ { - "id" : "E. Choroba", + "id" : "Duane Powell", + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Duane Powell" + }, + { "name" : "E. Choroba", "data" : [ [ @@ -80,9 +81,11 @@ "Blog", 1 ] - ] + ], + "id" : "E. Choroba" }, { + "name" : "Javier Luque", "data" : [ [ "Perl", @@ -97,21 +100,19 @@ 1 ] ], - "id" : "Javier Luque", - "name" : "Javier Luque" + "id" : "Javier Luque" }, { + "id" : "Markus Holzer", + "name" : "Markus Holzer", "data" : [ [ "Raku", 2 ] - ], - "id" : "Markus Holzer", - "name" : "Markus Holzer" + ] }, { - "id" : "Roger Bell West", "name" : "Roger Bell West", "data" : [ [ @@ -122,18 +123,32 @@ "Raku", 2 ] - ] + ], + "id" : "Roger Bell West" }, { + "id" : "Simon Proctor", + "name" : "Simon Proctor", "data" : [ [ "Raku", 2 ] - ], - "name" : "Simon Proctor", - "id" : "Simon Proctor" + ] } ] + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "subtitle" : { + "text" : "[Champions: 6] Last updated at 2020-01-16 09:24:32 GMT" + }, + "tooltip" : { + "followPointer" : 1, + "headerFormat" : "{series.name}
", + "pointFormat" : "{point.name}: {point.y:f}
" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 8815016f22..f67a521245 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,12 +1,49 @@ { - "subtitle" : { - "text" : "Last updated at 2020-01-15 11:38:03 GMT" + "legend" : { + "enabled" : "false" + }, + "chart" : { + "type" : "column" + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : null + } }, "tooltip" : { "pointFormat" : "{point.y:.0f}" }, + "subtitle" : { + "text" : "Last updated at 2020-01-16 09:24:32 GMT" + }, + "xAxis" : { + "labels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + }, + "type" : "category" + }, + "title" : { + "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" + }, "series" : [ { + "name" : "Contributions", + "dataLabels" : { + "align" : "right", + "enabled" : "true", + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + }, + "format" : "{point.y:.0f}", + "rotation" : -90, + "color" : "#FFFFFF", + "y" : 10 + }, "data" : [ [ "Blog", @@ -14,50 +51,13 @@ ], [ "Perl", - 1741 + 1743 ], [ "Raku", 1056 ] - ], - "dataLabels" : { - "y" : 10, - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - }, - "align" : "right", - "rotation" : -90, - "enabled" : "true", - "color" : "#FFFFFF", - "format" : "{point.y:.0f}" - }, - "name" : "Contributions" - } - ], - "xAxis" : { - "type" : "category", - "labels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - } + ] } - }, - "chart" : { - "type" : "column" - }, - "legend" : { - "enabled" : "false" - }, - "yAxis" : { - "title" : { - "text" : null - }, - "min" : 0 - }, - "title" : { - "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" - } + ] } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 0b1b3bbd23..ad00570988 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,15 +1,28 @@ { + "chart" : { + "type" : "column" + }, + "legend" : { + "enabled" : "false" + }, + "tooltip" : { + "followPointer" : "true", + "headerFormat" : "", + "pointFormat" : "Challenge {point.name}: {point.y:f}
" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-01-16 09:24:32 GMT" + }, "yAxis" : { "title" : { "text" : "Total Solutions" } }, - "legend" : { - "enabled" : "false" - }, "drilldown" : { "series" : [ { + "id" : "001", + "name" : "001", "data" : [ [ "Perl", @@ -23,11 +36,11 @@ "Blog", 11 ] - ], - "name" : "001", - "id" : "001" + ] }, { + "id" : "002", + "name" : "002", "data" : [ [ "Perl", @@ -41,13 +54,10 @@ "Blog", 10 ] - ], - "name" : "002", - "id" : "002" + ] }, { "name" : "003", - "id" : "003", "data" : [ [ "Perl", @@ -61,11 +71,11 @@ "Blog", 9 ] - ] + ], + "id" : "003" }, { "id" : "004", - "name" : "004", "data" : [ [ "Perl", @@ -79,11 +89,10 @@ "Blog", 10 ] - ] + ], + "name" : "004" }, { - "id" : "005", - "name" : "005", "data" : [ [ "Perl", @@ -97,10 +106,11 @@ "Blog", 12 ] - ] + ], + "name" : "005", + "id" : "005" }, { - "name" : "006", "id" : "006", "data" : [ [ @@ -115,9 +125,11 @@ "Blog", 7 ] - ] + ], + "name" : "006" }, { + "name" : "007", "data" : [ [ "Perl", @@ -132,10 +144,11 @@ 10 ] ], - "name" : "007", "id" : "007" }, { + "id" : "008", + "name" : "008", "data" : [ [ "Perl", @@ -149,13 +162,11 @@ "Blog", 12 ] - ], - "id" : "008", - "name" : "008" + ] }, { - "name" : "009", "id" : "009", + "name" : "009", "data" : [ [ "Perl", @@ -172,8 +183,6 @@ ] }, { - "id" : "010", - "name" : "010", "data" : [ [ "Perl", @@ -187,7 +196,9 @@ "Blog", 11 ] - ] + ], + "name" : "010", + "id" : "010" }, { "id" : "011", @@ -208,6 +219,7 @@ ] }, { + "id" : "012", "data" : [ [ "Perl", @@ -222,12 +234,9 @@ 11 ] ], - "name" : "012", - "id" : "012" + "name" : "012" }, { - "id" : "013", - "name" : "013", "data" : [ [ "Perl", @@ -241,11 +250,12 @@ "Blog", 13 ] - ] + ], + "name" : "013", + "id" : "013" }, { "name" : "014", - "id" : "014", "data" : [ [ "Perl", @@ -259,9 +269,12 @@ "Blog", 15 ] - ] + ], + "id" : "014" }, { + "id" : "015", + "name" : "015", "data" : [ [ "Perl", @@ -275,11 +288,10 @@ "Blog", 15 ] - ], - "name" : "015", - "id" : "015" + ] }, { + "id" : "016", "data" : [ [ "Perl", @@ -294,7 +306,6 @@ 12 ] ], - "id" : "016", "name" : "016" }, { @@ -316,8 +327,6 @@ "id" : "017" }, { - "id" : "018", - "name" : "018", "data" : [ [ "Perl", @@ -331,11 +340,11 @@ "Blog", 14 ] - ] + ], + "name" : "018", + "id" : "018" }, { - "id" : "019", - "name" : "019", "data" : [ [ "Perl", @@ -349,9 +358,12 @@ "Blog", 13 ] - ] + ], + "name" : "019", + "id" : "019" }, { + "name" : "020", "data" : [ [ "Perl", @@ -366,12 +378,9 @@ 13 ] ], - "name" : "020", "id" : "020" }, { - "name" : "021", - "id" : "021", "data" : [ [ "Perl", @@ -385,7 +394,9 @@ "Blog", 10 ] - ] + ], + "name" : "021", + "id" : "021" }, { "data" : [ @@ -402,10 +413,11 @@ 10 ] ], - "id" : "022", - "name" : "022" + "name" : "022", + "id" : "022" }, { + "id" : "023", "data" : [ [ "Perl", @@ -420,10 +432,11 @@ 12 ] ], - "name" : "023", - "id" : "023" + "name" : "023" }, { + "id" : "024", + "name" : "024", "data" : [ [ "Perl", @@ -437,11 +450,11 @@ "Blog", 11 ] - ], - "name" : "024", - "id" : "024" + ] }, { + "id" : "025", + "name" : "025", "data" : [ [ "Perl", @@ -455,11 +468,11 @@ "Blog", 12 ] - ], - "name" : "025", - "id" : "025" + ] }, { + "id" : "026", + "name" : "026", "data" : [ [ "Perl", @@ -473,13 +486,9 @@ "Blog", 10 ] - ], - "name" : "026", - "id" : "026" + ] }, { - "name" : "027", - "id" : "027", "data" : [ [ "Perl", @@ -493,11 +502,13 @@ "Blog", 9 ] - ] + ], + "name" : "027", + "id" : "027" }, { - "name" : "028", "id" : "028", + "name" : "028", "data" : [ [ "Perl", @@ -515,7 +526,6 @@ }, { "id" : "029", - "name" : "029", "data" : [ [ "Perl", @@ -529,9 +539,11 @@ "Blog", 12 ] - ] + ], + "name" : "029" }, { + "id" : "030", "data" : [ [ "Perl", @@ -546,8 +558,7 @@ 10 ] ], - "name" : "030", - "id" : "030" + "name" : "030" }, { "id" : "031", @@ -586,7 +597,6 @@ ] }, { - "name" : "033", "id" : "033", "data" : [ [ @@ -601,7 +611,8 @@ "Blog", 10 ] - ] + ], + "name" : "033" }, { "id" : "034", @@ -623,7 +634,6 @@ }, { "name" : "035", - "id" : "035", "data" : [ [ "Perl", @@ -637,9 +647,11 @@ "Blog", 9 ] - ] + ], + "id" : "035" }, { + "id" : "036", "data" : [ [ "Perl", @@ -654,10 +666,10 @@ 10 ] ], - "id" : "036", "name" : "036" }, { + "id" : "037", "data" : [ [ "Perl", @@ -672,10 +684,11 @@ 9 ] ], - "name" : "037", - "id" : "037" + "name" : "037" }, { + "id" : "038", + "name" : "038", "data" : [ [ "Perl", @@ -689,11 +702,10 @@ "Blog", 11 ] - ], - "id" : "038", - "name" : "038" + ] }, { + "id" : "039", "data" : [ [ "Perl", @@ -708,7 +720,6 @@ 12 ] ], - "id" : "039", "name" : "039" }, { @@ -726,12 +737,10 @@ 9 ] ], - "id" : "040", - "name" : "040" + "name" : "040", + "id" : "040" }, { - "id" : "041", - "name" : "041", "data" : [ [ "Perl", @@ -745,7 +754,9 @@ "Blog", 7 ] - ] + ], + "name" : "041", + "id" : "041" }, { "data" : [ @@ -766,12 +777,10 @@ "id" : "042" }, { - "name" : "043", - "id" : "043", "data" : [ [ "Perl", - 6 + 8 ], [ "Raku", @@ -781,80 +790,58 @@ "Blog", 2 ] - ] + ], + "name" : "043", + "id" : "043" } ] }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-01-15 11:38:03 GMT" - }, - "tooltip" : { - "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "headerFormat" : "", - "followPointer" : "true" - }, - "chart" : { - "type" : "column" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - } - } - }, "xAxis" : { "type" : "category" }, "series" : [ { "name" : "Perl Weekly Challenge Languages", - "colorByPoint" : "true", "data" : [ { - "drilldown" : "001", + "y" : 140, "name" : "#001", - "y" : 140 + "drilldown" : "001" }, { + "y" : 109, "name" : "#002", - "drilldown" : "002", - "y" : 109 + "drilldown" : "002" }, { - "y" : 71, "drilldown" : "003", - "name" : "#003" + "name" : "#003", + "y" : 71 }, { - "y" : 91, "drilldown" : "004", + "y" : 91, "name" : "#004" }, { - "drilldown" : "005", "name" : "#005", - "y" : 71 + "y" : 71, + "drilldown" : "005" }, { "y" : 48, - "drilldown" : "006", - "name" : "#006" + "name" : "#006", + "drilldown" : "006" }, { - "drilldown" : "007", + "y" : 56, "name" : "#007", - "y" : 56 + "drilldown" : "007" }, { - "name" : "#008", "drilldown" : "008", - "y" : 70 + "y" : 70, + "name" : "#008" }, { "drilldown" : "009", @@ -862,9 +849,9 @@ "y" : 68 }, { + "drilldown" : "010", "y" : 60, - "name" : "#010", - "drilldown" : "010" + "name" : "#010" }, { "y" : 79, @@ -872,59 +859,59 @@ "drilldown" : "011" }, { - "name" : "#012", "drilldown" : "012", - "y" : 83 + "y" : 83, + "name" : "#012" }, { "y" : 76, - "drilldown" : "013", - "name" : "#013" + "name" : "#013", + "drilldown" : "013" }, { - "drilldown" : "014", "name" : "#014", - "y" : 96 + "y" : 96, + "drilldown" : "014" }, { - "y" : 93, + "drilldown" : "015", "name" : "#015", - "drilldown" : "015" + "y" : 93 }, { "drilldown" : "016", - "name" : "#016", - "y" : 66 + "y" : 66, + "name" : "#016" }, { "drilldown" : "017", - "name" : "#017", - "y" : 79 + "y" : 79, + "name" : "#017" }, { + "drilldown" : "018", "y" : 76, - "name" : "#018", - "drilldown" : "018" + "name" : "#018" }, { - "drilldown" : "019", + "y" : 95, "name" : "#019", - "y" : 95 + "drilldown" : "019" }, { - "y" : 95, "drilldown" : "020", + "y" : 95, "name" : "#020" }, { + "drilldown" : "021", "y" : 67, - "name" : "#021", - "drilldown" : "021" + "name" : "#021" }, { "drilldown" : "022", - "name" : "#022", - "y" : 63 + "y" : 63, + "name" : "#022" }, { "drilldown" : "023", @@ -938,100 +925,113 @@ }, { "drilldown" : "025", - "name" : "#025", - "y" : 55 + "y" : 55, + "name" : "#025" }, { - "y" : 70, "drilldown" : "026", - "name" : "#026" + "name" : "#026", + "y" : 70 }, { - "name" : "#027", "drilldown" : "027", + "name" : "#027", "y" : 58 }, { - "name" : "#028", "drilldown" : "028", + "name" : "#028", "y" : 78 }, { + "drilldown" : "029", "y" : 77, - "name" : "#029", - "drilldown" : "029" + "name" : "#029" }, { "name" : "#030", - "drilldown" : "030", - "y" : 115 + "y" : 115, + "drilldown" : "030" }, { "name" : "#031", - "drilldown" : "031", - "y" : 87 + "y" : 87, + "drilldown" : "031" }, { "name" : "#032", - "drilldown" : "032", - "y" : 92 + "y" : 92, + "drilldown" : "032" }, { - "y" : 108, "drilldown" : "033", - "name" : "#033" + "name" : "#033", + "y" : 108 }, { - "name" : "#034", "drilldown" : "034", - "y" : 60 + "y" : 60, + "name" : "#034" }, { "drilldown" : "035", - "name" : "#035", - "y" : 60 + "y" : 60, + "name" : "#035" }, { "y" : 61, - "drilldown" : "036", - "name" : "#036" + "name" : "#036", + "drilldown" : "036" }, { - "y" : 63, "name" : "#037", + "y" : 63, "drilldown" : "037" }, { - "y" : 60, "name" : "#038", + "y" : 60, "drilldown" : "038" }, { - "y" : 60, "drilldown" : "039", + "y" : 60, "name" : "#039" }, { - "drilldown" : "040", "name" : "#040", - "y" : 66 + "y" : 66, + "drilldown" : "040" }, { + "drilldown" : "041", "y" : 68, - "name" : "#041", - "drilldown" : "041" + "name" : "#041" }, { "drilldown" : "042", - "name" : "#042", - "y" : 86 + "y" : 86, + "name" : "#042" }, { - "y" : 16, "drilldown" : "043", + "y" : 18, "name" : "#043" } - ] + ], + "colorByPoint" : "true" + } + ], + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 } - ] + } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index d34b9ed39b..a813bfe6c0 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,12 +1,20 @@ { - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2020-01-16 09:24:32 GMT" + }, + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "", + "followPointer" : "true" + }, + "yAxis" : { + "title" : { + "text" : "Total Score" + } }, "drilldown" : { "series" : [ { - "id" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld", "data" : [ [ "Blog", @@ -20,9 +28,12 @@ "Raku", 83 ] - ] + ], + "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld" }, { + "id" : "Jaldhar H. Vyas", "data" : [ [ "Blog", @@ -37,8 +48,7 @@ 72 ] ], - "name" : "Jaldhar H. Vyas", - "id" : "Jaldhar H. Vyas" + "name" : "Jaldhar H. Vyas" }, { "data" : [ @@ -74,7 +84,6 @@ }, { "id" : "Adam Russell", - "name" : "Adam Russell", "data" : [ [ "Blog", @@ -88,7 +97,8 @@ "Raku", 9 ] - ] + ], + "name" : "Adam Russell" }, { "data" : [ @@ -105,12 +115,11 @@ 84 ] ], - "id" : "Arne Sommer", - "name" : "Arne Sommer" + "name" : "Arne Sommer", + "id" : "Arne Sommer" }, { "id" : "Roger Bell West", - "name" : "Roger Bell West", "data" : [ [ "Blog", @@ -124,9 +133,11 @@ "Raku", 37 ] - ] + ], + "name" : "Roger Bell West" }, { + "id" : "E. Choroba", "data" : [ [ "Blog", @@ -137,12 +148,10 @@ 79 ] ], - "id" : "E. Choroba", "name" : "E. Choroba" }, { "name" : "Athanasius", - "id" : "Athanasius", "data" : [ [ "Blog", @@ -156,7 +165,8 @@ "Raku", 38 ] - ] + ], + "id" : "Athanasius" }, { "id" : "Andrezgz", @@ -170,7 +180,6 @@ }, { "name" : "Simon Proctor", - "id" : "Simon Proctor", "data" : [ [ "Blog", @@ -184,11 +193,12 @@ "Raku", 71 ] - ] + ], + "id" : "Simon Proctor" }, { - "name" : "Kian-Meng Ang", "id" : "Kian-Meng Ang", + "name" : "Kian-Meng Ang", "data" : [ [ "Blog", @@ -201,7 +211,6 @@ ] }, { - "id" : "Duncan C. White", "name" : "Duncan C. White", "data" : [ [ @@ -212,9 +221,11 @@ "Perl", 73 ] - ] + ], + "id" : "Duncan C. White" }, { + "id" : "Dave Jacoby", "data" : [ [ "Blog", @@ -229,12 +240,11 @@ 1 ] ], - "id" : "Dave Jacoby", "name" : "Dave Jacoby" }, { - "name" : "Javier Luque", "id" : "Javier Luque", + "name" : "Javier Luque", "data" : [ [ "Blog", @@ -265,12 +275,10 @@ 1 ] ], - "id" : "Steven Wilson", - "name" : "Steven Wilson" + "name" : "Steven Wilson", + "id" : "Steven Wilson" }, { - "name" : "Kevin Colyer", - "id" : "Kevin Colyer", "data" : [ [ "Blog", @@ -284,7 +292,9 @@ "Raku", 55 ] - ] + ], + "name" : "Kevin Colyer", + "id" : "Kevin Colyer" }, { "data" : [ @@ -323,16 +333,17 @@ "id" : "Yet Ebreo" }, { - "id" : "Duane Powell", - "name" : "Duane Powell", "data" : [ [ "Perl", - 54 + 56 ] - ] + ], + "name" : "Duane Powell", + "id" : "Duane Powell" }, { + "id" : "Francis Whittle", "data" : [ [ "Blog", @@ -343,18 +354,17 @@ 39 ] ], - "id" : "Francis Whittle", "name" : "Francis Whittle" }, { - "name" : "Noud Aldenhoven", - "id" : "Noud Aldenhoven", "data" : [ [ "Raku", 47 ] - ] + ], + "name" : "Noud Aldenhoven", + "id" : "Noud Aldenhoven" }, { "id" : "Burkhard Nickels", @@ -375,6 +385,7 @@ ] }, { + "name" : "Colin Crain", "data" : [ [ "Perl", @@ -385,12 +396,9 @@ 6 ] ], - "id" : "Colin Crain", - "name" : "Colin Crain" + "id" : "Colin Crain" }, { - "name" : "Feng Chang", - "id" : "Feng Chang", "data" : [ [ "Perl", @@ -400,27 +408,29 @@ "Raku", 23 ] - ] + ], + "name" : "Feng Chang", + "id" : "Feng Chang" }, { - "id" : "Lubos Kolouch", - "name" : "Lubos Kolouch", "data" : [ [ "Perl", 42 ] - ] + ], + "name" : "Lubos Kolouch", + "id" : "Lubos Kolouch" }, { - "name" : "Daniel Mantovani", "id" : "Daniel Mantovani", "data" : [ [ "Perl", 41 ] - ] + ], + "name" : "Daniel Mantovani" }, { "id" : "Mark Senn", @@ -437,6 +447,7 @@ ] }, { + "name" : "Gustavo Chaves", "data" : [ [ "Blog", @@ -447,10 +458,11 @@ 32 ] ], - "id" : "Gustavo Chaves", - "name" : "Gustavo Chaves" + "id" : "Gustavo Chaves" }, { + "id" : "Yozen Hernandez", + "name" : "Yozen Hernandez", "data" : [ [ "Blog", @@ -460,9 +472,7 @@ "Perl", 21 ] - ], - "name" : "Yozen Hernandez", - "id" : "Yozen Hernandez" + ] }, { "id" : "Guillermo Ramos", @@ -475,7 +485,6 @@ ] }, { - "name" : "Ulrich Rieke", "id" : "Ulrich Rieke", "data" : [ [ @@ -486,7 +495,8 @@ "Raku", 20 ] - ] + ], + "name" : "Ulrich Rieke" }, { "data" : [ @@ -503,18 +513,18 @@ 17 ] ], - "id" : "Jo Christian Oterhals", - "name" : "Jo Christian Oterhals" + "name" : "Jo Christian Oterhals", + "id" : "Jo Christian Oterhals" }, { + "id" : "Ozzy", + "name" : "Ozzy", "data" : [ [ "Raku", 28 ] - ], - "name" : "Ozzy", - "id" : "Ozzy" + ] }, { "data" : [ @@ -532,7 +542,6 @@ }, { "id" : "Randy Lauen", - "name" : "Randy Lauen", "data" : [ [ "Perl", @@ -542,9 +551,11 @@ "Raku", 17 ] - ] + ], + "name" : "Randy Lauen" }, { + "name" : "Daniel Mita", "data" : [ [ "Perl", @@ -555,10 +566,10 @@ 21 ] ], - "id" : "Daniel Mita", - "name" : "Daniel Mita" + "id" : "Daniel Mita" }, { + "id" : "Markus Holzer", "data" : [ [ "Perl", @@ -569,11 +580,9 @@ 22 ] ], - "id" : "Markus Holzer", "name" : "Markus Holzer" }, { - "name" : "Dave Cross", "id" : "Dave Cross", "data" : [ [ @@ -584,9 +593,11 @@ "Perl", 21 ] - ] + ], + "name" : "Dave Cross" }, { + "id" : "Veesh Goldman", "data" : [ [ "Blog", @@ -601,10 +612,10 @@ 2 ] ], - "name" : "Veesh Goldman", - "id" : "Veesh Goldman" + "name" : "Veesh Goldman" }, { + "name" : "Lars Balker", "data" : [ [ "Perl", @@ -615,22 +626,19 @@ 4 ] ], - "id" : "Lars Balker", - "name" : "Lars Balker" + "id" : "Lars Balker" }, { + "id" : "Kivanc Yazan", + "name" : "Kivanc Yazan", "data" : [ [ "Perl", 16 ] - ], - "name" : "Kivanc Yazan", - "id" : "Kivanc Yazan" + ] }, { - "id" : "Mark Anderson", - "name" : "Mark Anderson", "data" : [ [ "Perl", @@ -640,11 +648,11 @@ "Raku", 2 ] - ] + ], + "name" : "Mark Anderson", + "id" : "Mark Anderson" }, { - "id" : "Nick Logan", - "name" : "Nick Logan", "data" : [ [ "Perl", @@ -654,11 +662,12 @@ "Raku", 8 ] - ] + ], + "name" : "Nick Logan", + "id" : "Nick Logan" }, { "name" : "Saif Ahmed", - "id" : "Saif Ahmed", "data" : [ [ "Blog", @@ -668,27 +677,28 @@ "Perl", 14 ] - ] + ], + "id" : "Saif Ahmed" }, { + "id" : "Pete Houston", + "name" : "Pete Houston", "data" : [ [ "Perl", 14 ] - ], - "name" : "Pete Houston", - "id" : "Pete Houston" + ] }, { + "id" : "Alicia Bielsa", "data" : [ [ "Perl", 13 ] ], - "name" : "Alicia Bielsa", - "id" : "Alicia Bielsa" + "name" : "Alicia Bielsa" }, { "data" : [ @@ -697,22 +707,22 @@ 13 ] ], - "id" : "Walt Mankowski", - "name" : "Walt Mankowski" + "name" : "Walt Mankowski", + "id" : "Walt Mankowski" }, { "name" : "Jaime Corchado", - "id" : "Jaime Corchado", "data" : [ [ "Perl", 12 ] - ] + ], + "id" : "Jaime Corchado" }, { - "name" : "Lars Thegler", "id" : "Lars Thegler", + "name" : "Lars Thegler", "data" : [ [ "Perl", @@ -722,56 +732,55 @@ } ] }, + "chart" : { + "type" : "column" + }, "legend" : { "enabled" : "false" }, - "yAxis" : { - "title" : { - "text" : "Total Score" - } - }, "series" : [ { + "colorByPoint" : "true", "data" : [ { - "y" : 524, "drilldown" : "Laurent Rosenfeld", + "y" : 524, "name" : "#1: Laurent Rosenfeld" }, { + "drilldown" : "Jaldhar H. Vyas", "y" : 336, - "name" : "#2: Jaldhar H. Vyas", - "drilldown" : "Jaldhar H. Vyas" + "name" : "#2: Jaldhar H. Vyas" }, { - "drilldown" : "Joelle Maslak", + "y" : 334, "name" : "#3: Joelle Maslak", - "y" : 334 + "drilldown" : "Joelle Maslak" }, { + "name" : "#4: Ruben Westerberg", "y" : 332, - "drilldown" : "Ruben Westerberg", - "name" : "#4: Ruben Westerberg" + "drilldown" : "Ruben Westerberg" }, { "drilldown" : "Adam Russell", - "name" : "#5: Adam Russell", - "y" : 280 + "y" : 280, + "name" : "#5: Adam Russell" }, { + "drilldown" : "Arne Sommer", "y" : 258, - "name" : "#6: Arne Sommer", - "drilldown" : "Arne Sommer" + "name" : "#6: Arne Sommer" }, { "drilldown" : "Roger Bell West", - "name" : "#7: Roger Bell West", - "y" : 236 + "y" : 236, + "name" : "#7: Roger Bell West" }, { - "y" : 230, + "drilldown" : "E. Choroba", "name" : "#8: E. Choroba", - "drilldown" : "E. Choroba" + "y" : 230 }, { "y" : 208, @@ -779,74 +788,74 @@ "drilldown" : "Athanasius" }, { - "drilldown" : "Andrezgz", "name" : "#10: Andrezgz", - "y" : 170 + "y" : 170, + "drilldown" : "Andrezgz" }, { - "name" : "#11: Simon Proctor", "drilldown" : "Simon Proctor", - "y" : 166 + "y" : 166, + "name" : "#11: Simon Proctor" }, { - "y" : 162, "drilldown" : "Kian-Meng Ang", - "name" : "#12: Kian-Meng Ang" + "name" : "#12: Kian-Meng Ang", + "y" : 162 }, { - "drilldown" : "Duncan C. White", "name" : "#13: Duncan C. White", - "y" : 148 + "y" : 148, + "drilldown" : "Duncan C. White" }, { - "y" : 136, + "drilldown" : "Dave Jacoby", "name" : "#14: Dave Jacoby", - "drilldown" : "Dave Jacoby" + "y" : 136 }, { - "drilldown" : "Javier Luque", + "y" : 130, "name" : "#15: Javier Luque", - "y" : 130 + "drilldown" : "Javier Luque" }, { + "name" : "#16: Steven Wilson", "y" : 128, - "drilldown" : "Steven Wilson", - "name" : "#16: Steven Wilson" + "drilldown" : "Steven Wilson" }, { - "name" : "#17: Kevin Colyer", "drilldown" : "Kevin Colyer", + "name" : "#17: Kevin Colyer", "y" : 116 }, { "name" : "#18: Ryan Thompson", - "drilldown" : "Ryan Thompson", - "y" : 114 + "y" : 114, + "drilldown" : "Ryan Thompson" }, { - "y" : 114, "name" : "#19: Yet Ebreo", + "y" : 114, "drilldown" : "Yet Ebreo" }, { + "y" : 112, "name" : "#20: Duane Powell", - "drilldown" : "Duane Powell", - "y" : 108 + "drilldown" : "Duane Powell" }, { + "drilldown" : "Francis Whittle", "y" : 96, - "name" : "#21: Francis Whittle", - "drilldown" : "Francis Whittle" + "name" : "#21: Francis Whittle" }, { - "y" : 94, "name" : "#22: Noud Aldenhoven", + "y" : 94, "drilldown" : "Noud Aldenhoven" }, { "y" : 92, - "drilldown" : "Burkhard Nickels", - "name" : "#23: Burkhard Nickels" + "name" : "#23: Burkhard Nickels", + "drilldown" : "Burkhard Nickels" }, { "y" : 92, @@ -855,38 +864,38 @@ }, { "drilldown" : "Feng Chang", - "name" : "#25: Feng Chang", - "y" : 88 + "y" : 88, + "name" : "#25: Feng Chang" }, { - "y" : 84, "name" : "#26: Lubos Kolouch", + "y" : 84, "drilldown" : "Lubos Kolouch" }, { + "y" : 82, "name" : "#27: Daniel Mantovani", - "drilldown" : "Daniel Mantovani", - "y" : 82 + "drilldown" : "Daniel Mantovani" }, { - "y" : 80, "drilldown" : "Mark Senn", - "name" : "#28: Mark Senn" + "name" : "#28: Mark Senn", + "y" : 80 }, { + "drilldown" : "Gustavo Chaves", "y" : 72, - "name" : "#29: Gustavo Chaves", - "drilldown" : "Gustavo Chaves" + "name" : "#29: Gustavo Chaves" }, { "y" : 70, - "drilldown" : "Yozen Hernandez", - "name" : "#30: Yozen Hernandez" + "name" : "#30: Yozen Hernandez", + "drilldown" : "Yozen Hernandez" }, { - "y" : 64, + "drilldown" : "Guillermo Ramos", "name" : "#31: Guillermo Ramos", - "drilldown" : "Guillermo Ramos" + "y" : 64 }, { "y" : 64, @@ -894,14 +903,14 @@ "drilldown" : "Ulrich Rieke" }, { + "y" : 60, "name" : "#33: Jo Christian Oterhals", - "drilldown" : "Jo Christian Oterhals", - "y" : 60 + "drilldown" : "Jo Christian Oterhals" }, { - "name" : "#34: Ozzy", "drilldown" : "Ozzy", - "y" : 56 + "y" : 56, + "name" : "#34: Ozzy" }, { "drilldown" : "Dr James A. Smith", @@ -914,82 +923,81 @@ "drilldown" : "Randy Lauen" }, { - "drilldown" : "Daniel Mita", "name" : "#37: Daniel Mita", - "y" : 48 + "y" : 48, + "drilldown" : "Daniel Mita" }, { - "y" : 48, "drilldown" : "Markus Holzer", - "name" : "#38: Markus Holzer" + "name" : "#38: Markus Holzer", + "y" : 48 }, { "name" : "#39: Dave Cross", - "drilldown" : "Dave Cross", - "y" : 46 + "y" : 46, + "drilldown" : "Dave Cross" }, { - "y" : 44, "drilldown" : "Veesh Goldman", + "y" : 44, "name" : "#40: Veesh Goldman" }, { "y" : 38, - "drilldown" : "Lars Balker", - "name" : "#41: Lars Balker" + "name" : "#41: Lars Balker", + "drilldown" : "Lars Balker" }, { - "name" : "#42: Kivanc Yazan", "drilldown" : "Kivanc Yazan", + "name" : "#42: Kivanc Yazan", "y" : 32 }, { "y" : 32, - "drilldown" : "Mark Anderson", - "name" : "#43: Mark Anderson" + "name" : "#43: Mark Anderson", + "drilldown" : "Mark Anderson" }, { - "drilldown" : "Nick Logan", + "y" : 32, "name" : "#44: Nick Logan", - "y" : 32 + "drilldown" : "Nick Logan" }, { - "drilldown" : "Saif Ahmed", + "y" : 30, "name" : "#45: Saif Ahmed", - "y" : 30 + "drilldown" : "Saif Ahmed" }, { - "y" : 28, "name" : "#46: Pete Houston", + "y" : 28, "drilldown" : "Pete Houston" }, { - "y" : 26, "drilldown" : "Alicia Bielsa", + "y" : 26, "name" : "#47: Alicia Bielsa" }, { - "y" : 26, "name" : "#48: Walt Mankowski", + "y" : 26, "drilldown" : "Walt Mankowski" }, { - "y" : 24, "name" : "#49: Jaime Corchado", + "y" : 24, "drilldown" : "Jaime Corchado" }, { - "y" : 24, + "drilldown" : "Lars Thegler", "name" : "#50: Lars Thegler", - "drilldown" : "Lars Thegler" + "y" : 24 } ], - "colorByPoint" : "true", "name" : "Perl Weekly Challenge Leaders" } ], - "xAxis" : { - "type" : "category" + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" }, "plotOptions" : { "series" : { @@ -1000,15 +1008,7 @@ "borderWidth" : 0 } }, - "chart" : { - "type" : "column" - }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "", - "followPointer" : "true" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2020-01-15 11:38:03 GMT" + "xAxis" : { + "type" : "category" } } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index ca592acc62..4a1683af09 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -1,21 +1,4 @@ { - "title" : { - "text" : "Perl Weekly Challenge [2019 - 2020]" - }, - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 - }, - "chart" : { - "type" : "column" - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, "xAxis" : { "categories" : [ "Leoltron", @@ -52,6 +35,7 @@ }, "series" : [ { + "name" : "Perl", "data" : [ 2, 0, @@ -83,10 +67,10 @@ 3, 4, 21 - ], - "name" : "Perl" + ] }, { + "name" : "Raku", "data" : [ 0, 0, @@ -118,11 +102,9 @@ 21, 0, 0 - ], - "name" : "Raku" + ] }, { - "name" : "Blog", "data" : [ 0, 0, @@ -154,14 +136,32 @@ 0, 0, 2 - ] + ], + "name" : "Blog" } ], + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "title" : { + "text" : "Perl Weekly Challenge [2019 - 2020]" + }, + "chart" : { + "type" : "column" + }, "subtitle" : { - "text" : "[Champions: 30] Last updated at 2020-01-15 11:38:03 GMT" + "text" : "[Champions: 30] Last updated at 2020-01-16 09:24:32 GMT" }, "tooltip" : { "pointFormat" : "{series.name}: {point.y}
", "shared" : 1 + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" + } } } diff --git a/stats/pwc-summary-121-150.json b/stats/pwc-summary-121-150.json index c2a3984ff7..9c492c94e8 100644 --- a/stats/pwc-summary-121-150.json +++ b/stats/pwc-summary-121-150.json @@ -1,13 +1,56 @@ { + "chart" : { + "type" : "column" + }, + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 + }, "subtitle" : { - "text" : "[Champions: 21] Last updated at 2020-01-15 11:38:03 GMT" + "text" : "[Champions: 21] Last updated at 2020-01-16 09:24:32 GMT" }, "tooltip" : { "shared" : 1, "pointFormat" : "{series.name}: {point.y}
" }, + "xAxis" : { + "categories" : [ + "Simon Reinhardt", + "Steve Rogerson", + "Steven Lembark", + "Steven Wilson", + "Svetlana Nesterova", + "Tester R59", + "Tiago Stock", + "Tim Smith", + "Tore Andersson", + "Trenton Langer", + "Tyler Limkemann", + "Ulrich Rieke", + "Luis F. Uceta", + "Veesh Goldman", + "Vyacheslav Volgarev", + "Walt Mankowski", + "Wanderdoc", + "William Gilmore", + "Yary H", + "Yet Ebreo", + "Yozen Hernandez" + ] + }, + "title" : { + "text" : "Perl Weekly Challenge [2019 - 2020]" + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, "series" : [ { + "name" : "Perl", "data" : [ 4, 3, @@ -30,11 +73,9 @@ 2, 30, 21 - ], - "name" : "Perl" + ] }, { - "name" : "Raku", "data" : [ 0, 2, @@ -57,7 +98,8 @@ 2, 21, 0 - ] + ], + "name" : "Raku" }, { "name" : "Blog", @@ -85,47 +127,5 @@ 14 ] } - ], - "chart" : { - "type" : "column" - }, - "xAxis" : { - "categories" : [ - "Simon Reinhardt", - "Steve Rogerson", - "Steven Lembark", - "Steven Wilson", - "Svetlana Nesterova", - "Tester R59", - "Tiago Stock", - "Tim Smith", - "Tore Andersson", - "Trenton Langer", - "Tyler Limkemann", - "Ulrich Rieke", - "Luis F. Uceta", - "Veesh Goldman", - "Vyacheslav Volgarev", - "Walt Mankowski", - "Wanderdoc", - "William Gilmore", - "Yary H", - "Yet Ebreo", - "Yozen Hernandez" - ] - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } - }, - "title" : { -