From 6c89b82dbae775546ebd469855ee2caa36393a3a Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Sun, 30 Jun 2019 10:51:04 +0100 Subject: - Added solutions by Laurent Rosenfeld. --- challenge-014/laurent-rosenfeld/blog.txt | 1 + challenge-014/laurent-rosenfeld/perl5/ch-1.pl | 16 + challenge-014/laurent-rosenfeld/perl5/ch-2.pl | 31 ++ challenge-014/laurent-rosenfeld/perl6/ch-1.p6 | 12 + challenge-014/laurent-rosenfeld/perl6/ch-1a.p6 | 15 + challenge-014/laurent-rosenfeld/perl6/ch-2.p6 | 24 ++ stats/pwc-current.json | 235 ++++++----- stats/pwc-language-breakdown-summary.json | 70 ++-- stats/pwc-language-breakdown.json | 260 ++++++------- stats/pwc-leaders.json | 516 ++++++++++++------------- stats/pwc-summary-1-30.json | 124 +++--- stats/pwc-summary-31-60.json | 38 +- stats/pwc-summary-61-90.json | 38 +- stats/pwc-summary-91-120.json | 58 +-- stats/pwc-summary.json | 254 ++++++------ 15 files changed, 907 insertions(+), 785 deletions(-) create mode 100644 challenge-014/laurent-rosenfeld/blog.txt create mode 100644 challenge-014/laurent-rosenfeld/perl5/ch-1.pl create mode 100644 challenge-014/laurent-rosenfeld/perl5/ch-2.pl create mode 100644 challenge-014/laurent-rosenfeld/perl6/ch-1.p6 create mode 100644 challenge-014/laurent-rosenfeld/perl6/ch-1a.p6 create mode 100644 challenge-014/laurent-rosenfeld/perl6/ch-2.p6 diff --git a/challenge-014/laurent-rosenfeld/blog.txt b/challenge-014/laurent-rosenfeld/blog.txt new file mode 100644 index 0000000000..adb2924b29 --- /dev/null +++ b/challenge-014/laurent-rosenfeld/blog.txt @@ -0,0 +1 @@ +http://blogs.perl.org/users/laurent_r/2019/06/perl-weekly-challenge-14-van-ecks-sequence-and-us-states.html diff --git a/challenge-014/laurent-rosenfeld/perl5/ch-1.pl b/challenge-014/laurent-rosenfeld/perl5/ch-1.pl new file mode 100644 index 0000000000..f74eb2c527 --- /dev/null +++ b/challenge-014/laurent-rosenfeld/perl5/ch-1.pl @@ -0,0 +1,16 @@ +#!/usr/bin/perl +use strict; +use warnings; +use feature qw/say/; + +my $max = shift; +my @a = (0); +for my $n (0..$max - 1) { + my $result = 0; + for my $m (reverse 0..$n-1){ + $result = $n - $m and last if $a[$m] == $a[$n]; + } + push @a, $result; +} +say "@a"; + diff --git a/challenge-014/laurent-rosenfeld/perl5/ch-2.pl b/challenge-014/laurent-rosenfeld/perl5/ch-2.pl new file mode 100644 index 0000000000..46734f7631 --- /dev/null +++ b/challenge-014/laurent-rosenfeld/perl5/ch-2.pl @@ -0,0 +1,31 @@ +#!/usr/bin/perl +use strict; +use warnings; +use feature qw/say/; + +my %codes = map { $_ => 1 } qw / + AL AK AZ AR CA CO CT DE FL GA + HI ID IL IN IA KS KY LA ME MD + MA MI MN MS MO MT NE NV NH NJ + NM NY NC ND OH OK OR PA RI SC + SD TN TX UT VT VA WA WV WI WY /; + +sub valid { + my $word = uc shift; + for my $letter_pair ( $word =~ /\w\w/g ) { + return 0 unless defined $codes{$letter_pair}; + } + return 1; +} + +my $longest_word = ""; +my $max_size = 0; +my $dict = "words.txt"; +open my $IN, "<", $dict or die "Unable to open $dict $!"; +while (my $word = <$IN>) { + $word =~ s/[\n\r]+//g; + next if length($word) % 2; #skip if odd length + $longest_word = $word and $max_size = length $word + if valid $word and length $word > $max_size; +} +say $longest_word; diff --git a/challenge-014/laurent-rosenfeld/perl6/ch-1.p6 b/challenge-014/laurent-rosenfeld/perl6/ch-1.p6 new file mode 100644 index 0000000000..f0f1edc2fc --- /dev/null +++ b/challenge-014/laurent-rosenfeld/perl6/ch-1.p6 @@ -0,0 +1,12 @@ +use v6; + +my @a = 0,; +for ^20 -> $n { + my $result = 0; + for reverse ^$n -> $m { + $result = $n - $m and last if @a[$m] == @a[$n]; + # Note: $m is always smaller than $n, so $n - $m > 0 + } + push @a, $result; +} +say @a; diff --git a/challenge-014/laurent-rosenfeld/perl6/ch-1a.p6 b/challenge-014/laurent-rosenfeld/perl6/ch-1a.p6 new file mode 100644 index 0000000000..66e6b4866d --- /dev/null +++ b/challenge-014/laurent-rosenfeld/perl6/ch-1a.p6 @@ -0,0 +1,15 @@ +use v6; + +sub MAIN ( UInt $max ) { + my @a = lazy gather { + take 0; + for 0..* -> $n { + my $result = 0; + for reverse ^$n -> $m { + $result = $n - $m and last if @a[$m] == @a[$n]; + } + take $result; + } + } + say join " ", @a[0..$max]; +} diff --git a/challenge-014/laurent-rosenfeld/perl6/ch-2.p6 b/challenge-014/laurent-rosenfeld/perl6/ch-2.p6 new file mode 100644 index 0000000000..74d0c4156f --- /dev/null +++ b/challenge-014/laurent-rosenfeld/perl6/ch-2.p6 @@ -0,0 +1,24 @@ +use v6; + +my $codes = set < + AL AK AZ AR CA CO CT DE FL GA + HI ID IL IN IA KS KY LA ME MD + MA MI MN MS MO MT NE NV NH NJ + NM NY NC ND OH OK OR PA RI SC + SD TN TX UT VT VA WA WV WI WY >; + +sub valid (Str $word) { + for $word.uc.comb(2) -> $letter-pair { + return False unless $letter-pair (elem) $codes; + } + return True; +} + +my $longest-word = ""; +my $max-size = 0; +for "words.txt".IO.lines -> $word { + next unless $word.chars %% 2; + $longest-word = $word and $max-size = $word.chars + if valid $word and $word.chars > $max-size; +} +say $longest-word; diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 3e6f616ea5..9c5f2c953b 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,15 +1,24 @@ { + "chart" : { + "type" : "column" + }, + "xAxis" : { + "type" : "category" + }, + "legend" : { + "enabled" : 0 + }, "drilldown" : { "series" : [ { - "name" : "Aaron Sherman", - "id" : "Aaron Sherman", "data" : [ [ "Perl 6", 2 ] - ] + ], + "id" : "Aaron Sherman", + "name" : "Aaron Sherman" }, { "data" : [ @@ -22,8 +31,8 @@ 1 ] ], - "name" : "Adam Russell", - "id" : "Adam Russell" + "id" : "Adam Russell", + "name" : "Adam Russell" }, { "data" : [ @@ -54,14 +63,14 @@ "id" : "Athanasius" }, { + "name" : "Daniel Mantovani", + "id" : "Daniel Mantovani", "data" : [ [ "Perl 5", 2 ] - ], - "id" : "Daniel Mantovani", - "name" : "Daniel Mantovani" + ] }, { "data" : [ @@ -78,12 +87,10 @@ 1 ] ], - "name" : "Dave Jacoby", - "id" : "Dave Jacoby" + "id" : "Dave Jacoby", + "name" : "Dave Jacoby" }, { - "id" : "Donald Hunter", - "name" : "Donald Hunter", "data" : [ [ "Perl 6", @@ -93,11 +100,13 @@ "Blog", 2 ] - ] + ], + "id" : "Donald Hunter", + "name" : "Donald Hunter" }, { - "id" : "Duane Powell", "name" : "Duane Powell", + "id" : "Duane Powell", "data" : [ [ "Perl 5", @@ -106,8 +115,8 @@ ] }, { - "id" : "E. Choroba", "name" : "E. Choroba", + "id" : "E. Choroba", "data" : [ [ "Perl 5", @@ -120,8 +129,6 @@ ] }, { - "name" : "Feng Chang", - "id" : "Feng Chang", "data" : [ [ "Perl 5", @@ -131,11 +138,13 @@ "Perl 6", 2 ] - ] + ], + "id" : "Feng Chang", + "name" : "Feng Chang" }, { - "id" : "Francis Whittle", "name" : "Francis Whittle", + "id" : "Francis Whittle", "data" : [ [ "Perl 6", @@ -164,10 +173,12 @@ 2 ] ], - "name" : "Jaime Corchado", - "id" : "Jaime Corchado" + "id" : "Jaime Corchado", + "name" : "Jaime Corchado" }, { + "name" : "Joelle Maslak", + "id" : "Joelle Maslak", "data" : [ [ "Perl 5", @@ -177,23 +188,39 @@ "Perl 6", 3 ] - ], - "name" : "Joelle Maslak", - "id" : "Joelle Maslak" + ] }, { + "name" : "Kevin Colyer", + "id" : "Kevin Colyer", "data" : [ [ "Perl 6", 2 ] - ], - "id" : "Kevin Colyer", - "name" : "Kevin Colyer" + ] + }, + { + "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld", + "data" : [ + [ + "Perl 5", + 2 + ], + [ + "Perl 6", + 2 + ], + [ + "Blog", + 1 + ] + ] }, { - "name" : "Lubos Kolouch", "id" : "Lubos Kolouch", + "name" : "Lubos Kolouch", "data" : [ [ "Perl 5", @@ -212,14 +239,14 @@ "id" : "Neil Bowers" }, { - "id" : "Noud", - "name" : "Noud", "data" : [ [ "Perl 6", 2 ] - ] + ], + "name" : "Noud", + "id" : "Noud" }, { "data" : [ @@ -232,14 +259,14 @@ "name" : "Robert Van Dam" }, { + "id" : "Roger Bell West", + "name" : "Roger Bell West", "data" : [ [ "Perl 5", 2 ] - ], - "id" : "Roger Bell West", - "name" : "Roger Bell West" + ] }, { "data" : [ @@ -252,12 +279,12 @@ 2 ] ], - "name" : "Ruben Westerberg", - "id" : "Ruben Westerberg" + "id" : "Ruben Westerberg", + "name" : "Ruben Westerberg" }, { - "id" : "Simon Proctor", "name" : "Simon Proctor", + "id" : "Simon Proctor", "data" : [ [ "Perl 6", @@ -280,177 +307,173 @@ "id" : "Steven Wilson" }, { - "name" : "Walt Mankowski", - "id" : "Walt Mankowski", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "Walt Mankowski", + "name" : "Walt Mankowski" } ] }, - "legend" : { - "enabled" : 0 + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } }, - "xAxis" : { - "type" : "category" + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : 1, + "headerFormat" : "{series.name}
" }, "subtitle" : { - "text" : "[Champions: 24] Last updated at 2019-06-30 08:55:58 GMT" + "text" : "[Champions: 25] Last updated at 2019-06-30 09:50:29 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge - 014" }, "series" : [ { - "colorByPoint" : 1, "name" : "Perl Weekly Challenge - 014", + "colorByPoint" : 1, "data" : [ { + "y" : 2, "name" : "Aaron Sherman", - "drilldown" : "Aaron Sherman", - "y" : 2 + "drilldown" : "Aaron Sherman" }, { "drilldown" : "Adam Russell", - "name" : "Adam Russell", - "y" : 3 + "y" : 3, + "name" : "Adam Russell" }, { - "drilldown" : "Andrezgz", + "y" : 2, "name" : "Andrezgz", - "y" : 2 + "drilldown" : "Andrezgz" }, { + "name" : "Athanasius", "y" : 5, - "drilldown" : "Athanasius", - "name" : "Athanasius" + "drilldown" : "Athanasius" }, { + "drilldown" : "Daniel Mantovani", "y" : 2, - "name" : "Daniel Mantovani", - "drilldown" : "Daniel Mantovani" + "name" : "Daniel Mantovani" }, { - "y" : 4, "name" : "Dave Jacoby", + "y" : 4, "drilldown" : "Dave Jacoby" }, { - "y" : 4, "drilldown" : "Donald Hunter", + "y" : 4, "name" : "Donald Hunter" }, { - "name" : "Duane Powell", "drilldown" : "Duane Powell", + "name" : "Duane Powell", "y" : 2 }, { - "drilldown" : "E. Choroba", "name" : "E. Choroba", - "y" : 3 + "y" : 3, + "drilldown" : "E. Choroba" }, { - "drilldown" : "Feng Chang", + "y" : 4, "name" : "Feng Chang", - "y" : 4 + "drilldown" : "Feng Chang" }, { - "drilldown" : "Francis Whittle", + "y" : 4, "name" : "Francis Whittle", - "y" : 4 + "drilldown" : "Francis Whittle" }, { - "y" : 2, + "drilldown" : "Gustavo Chaves", "name" : "Gustavo Chaves", - "drilldown" : "Gustavo Chaves" + "y" : 2 }, { - "y" : 2, "name" : "Jaime Corchado", + "y" : 2, "drilldown" : "Jaime Corchado" }, { + "y" : 6, "name" : "Joelle Maslak", - "drilldown" : "Joelle Maslak", - "y" : 6 + "drilldown" : "Joelle Maslak" }, { - "y" : 2, "name" : "Kevin Colyer", + "y" : 2, "drilldown" : "Kevin Colyer" }, + { + "name" : "Laurent Rosenfeld", + "y" : 5, + "drilldown" : "Laurent Rosenfeld" + }, { "name" : "Lubos Kolouch", - "drilldown" : "Lubos Kolouch", - "y" : 3 + "y" : 3, + "drilldown" : "Lubos Kolouch" }, { "drilldown" : "Neil Bowers", - "name" : "Neil Bowers", - "y" : 1 + "y" : 1, + "name" : "Neil Bowers" }, { "name" : "Noud", - "drilldown" : "Noud", - "y" : 2 + "y" : 2, + "drilldown" : "Noud" }, { - "y" : 3, "drilldown" : "Robert Van Dam", + "y" : 3, "name" : "Robert Van Dam" }, { + "y" : 2, "name" : "Roger Bell West", - "drilldown" : "Roger Bell West", - "y" : 2 + "drilldown" : "Roger Bell West" }, { - "y" : 4, + "drilldown" : "Ruben Westerberg", "name" : "Ruben Westerberg", - "drilldown" : "Ruben Westerberg" + "y" : 4 }, { + "drilldown" : "Simon Proctor", "y" : 2, - "name" : "Simon Proctor", - "drilldown" : "Simon Proctor" + "name" : "Simon Proctor" }, { + "name" : "Steven Wilson", "y" : 3, - "drilldown" : "Steven Wilson", - "name" : "Steven Wilson" + "drilldown" : "Steven Wilson" }, { + "drilldown" : "Walt Mankowski", "y" : 2, - "name" : "Walt Mankowski", - "drilldown" : "Walt Mankowski" + "name" : "Walt Mankowski" } ] } ], - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "tooltip" : { - "followPointer" : 1, - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "{series.name}
" - }, "plotOptions" : { "series" : { + "borderWidth" : 0, "dataLabels" : { "format" : "{point.y}", "enabled" : 1 - }, - "borderWidth" : 0 + } } - }, - "chart" : { - "type" : "column" - }, - "title" : { - "text" : "Perl Weekly Challenge - 014" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 22107abdb6..1482b863ab 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,63 +1,63 @@ { - "xAxis" : { - "labels" : { - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - } - }, - "type" : "category" - }, "chart" : { "type" : "column" }, "tooltip" : { "pointFormat" : "{point.y:.0f}" }, - "title" : { - "text" : "Perl Weekly Challenge Contributions - 2019" + "yAxis" : { + "min" : 0, + "title" : { + "text" : null + } }, "series" : [ { - "dataLabels" : { - "align" : "right", - "color" : "#FFFFFF", - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - }, - "rotation" : -90, - "y" : 10, - "format" : "{point.y:.0f}", - "enabled" : "true" - }, "name" : "Contributions", "data" : [ [ "Blog", - 127 + 128 ], [ "Perl 5", - 570 + 572 ], [ "Perl 6", - 333 + 335 ] - ] + ], + "dataLabels" : { + "y" : 10, + "enabled" : "true", + "align" : "right", + "rotation" : -90, + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + }, + "format" : "{point.y:.0f}", + "color" : "#FFFFFF" + } } ], - "legend" : { - "enabled" : "false" + "xAxis" : { + "type" : "category", + "labels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + } + }, + "title" : { + "text" : "Perl Weekly Challenge Contributions - 2019" }, "subtitle" : { - "text" : "Last updated at 2019-06-30 08:56:05 GMT" + "text" : "Last updated at 2019-06-30 09:50:52 GMT" }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : null - } + "legend" : { + "enabled" : "false" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 262bc8a0ad..fc77f4d3c2 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,4 +1,98 @@ { + "tooltip" : { + "followPointer" : "true", + "pointFormat" : "Challenge {point.name}: {point.y:f}
", + "headerFormat" : "" + }, + "chart" : { + "type" : "column" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "xAxis" : { + "type" : "category" + }, + "series" : [ + { + "colorByPoint" : "true", + "data" : [ + { + "name" : "#001", + "drilldown" : "001", + "y" : 123 + }, + { + "y" : 104, + "drilldown" : "002", + "name" : "#002" + }, + { + "drilldown" : "003", + "y" : 66, + "name" : "#003" + }, + { + "name" : "#004", + "drilldown" : "004", + "y" : 84 + }, + { + "drilldown" : "005", + "y" : 66, + "name" : "#005" + }, + { + "y" : 47, + "drilldown" : "006", + "name" : "#006" + }, + { + "drilldown" : "007", + "y" : 54, + "name" : "#007" + }, + { + "name" : "#008", + "drilldown" : "008", + "y" : 67 + }, + { + "name" : "#009", + "drilldown" : "009", + "y" : 62 + }, + { + "y" : 58, + "drilldown" : "010", + "name" : "#010" + }, + { + "drilldown" : "011", + "y" : 75, + "name" : "#011" + }, + { + "name" : "#012", + "y" : 81, + "drilldown" : "012" + }, + { + "name" : "#013", + "drilldown" : "013", + "y" : 74 + }, + { + "drilldown" : "014", + "y" : 74, + "name" : "#014" + } + ], + "name" : "Perl Weekly Challenge Languages" + } + ], "plotOptions" : { "series" : { "borderWidth" : 0, @@ -8,9 +102,19 @@ } } }, + "legend" : { + "enabled" : "false" + }, + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-30 09:50:52 GMT" + }, "drilldown" : { "series" : [ { + "id" : "001", "data" : [ [ "Perl 5", @@ -25,10 +129,11 @@ 10 ] ], - "id" : "001", "name" : "001" }, { + "name" : "002", + "id" : "002", "data" : [ [ "Perl 5", @@ -42,12 +147,11 @@ "Blog", 9 ] - ], - "id" : "002", - "name" : "002" + ] }, { "name" : "003", + "id" : "003", "data" : [ [ "Perl 5", @@ -61,10 +165,11 @@ "Blog", 8 ] - ], - "id" : "003" + ] }, { + "name" : "004", + "id" : "004", "data" : [ [ "Perl 5", @@ -78,11 +183,11 @@ "Blog", 9 ] - ], - "id" : "004", - "name" : "004" + ] }, { + "name" : "005", + "id" : "005", "data" : [ [ "Perl 5", @@ -96,11 +201,10 @@ "Blog", 11 ] - ], - "id" : "005", - "name" : "005" + ] }, { + "id" : "006", "data" : [ [ "Perl 5", @@ -115,11 +219,10 @@ 6 ] ], - "id" : "006", "name" : "006" }, { - "name" : "007", + "id" : "007", "data" : [ [ "Perl 5", @@ -134,9 +237,10 @@ 8 ] ], - "id" : "007" + "name" : "007" }, { + "id" : "008", "data" : [ [ "Perl 5", @@ -151,7 +255,6 @@ 9 ] ], - "id" : "008", "name" : "008" }, { @@ -173,7 +276,7 @@ ] }, { - "id" : "010", + "name" : "010", "data" : [ [ "Perl 5", @@ -188,7 +291,7 @@ 9 ] ], - "name" : "010" + "id" : "010" }, { "name" : "011", @@ -209,7 +312,6 @@ ] }, { - "name" : "012", "data" : [ [ "Perl 5", @@ -224,10 +326,10 @@ 9 ] ], - "id" : "012" + "id" : "012", + "name" : "012" }, { - "name" : "013", "data" : [ [ "Perl 5", @@ -242,129 +344,27 @@ 11 ] ], - "id" : "013" + "id" : "013", + "name" : "013" }, { - "name" : "014", "data" : [ [ "Perl 5", - 37 + 39 ], [ "Perl 6", - 23 + 25 ], [ "Blog", - 9 + 10 ] ], - "id" : "014" + "id" : "014", + "name" : "014" } ] - }, - "xAxis" : { - "type" : "category" - }, - "tooltip" : { - "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "followPointer" : "true", - "headerFormat" : "" - }, - "chart" : { - "type" : "column" - }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "series" : [ - { - "data" : [ - { - "y" : 123, - "name" : "#001", - "drilldown" : "001" - }, - { - "drilldown" : "002", - "y" : 104, - "name" : "#002" - }, - { - "drilldown" : "003", - "y" : 66, - "name" : "#003" - }, - { - "drilldown" : "004", - "y" : 84, - "name" : "#004" - }, - { - "y" : 66, - "name" : "#005", - "drilldown" : "005" - }, - { - "drilldown" : "006", - "y" : 47, - "name" : "#006" - }, - { - "y" : 54, - "name" : "#007", - "drilldown" : "007" - }, - { - "drilldown" : "008", - "name" : "#008", - "y" : 67 - }, - { - "y" : 62, - "name" : "#009", - "drilldown" : "009" - }, - { - "drilldown" : "010", - "name" : "#010", - "y" : 58 - }, - { - "name" : "#011", - "y" : 75, - "drilldown" : "011" - }, - { - "y" : 81, - "name" : "#012", - "drilldown" : "012" - }, - { - "drilldown" : "013", - "y" : 74, - "name" : "#013" - }, - { - "y" : 69, - "name" : "#014", - "drilldown" : "014" - } - ], - "name" : "Perl Weekly Challenge Languages", - "colorByPoint" : "true" - } - ], - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-30 08:56:05 GMT" - }, - "legend" : { - "enabled" : "false" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 90dcc6e4dc..57b05606bd 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -6,6 +6,7 @@ }, "series" : [ { + "name" : "Perl Weekly Challenge Leaders", "data" : [ { "y" : 148, @@ -13,49 +14,49 @@ "drilldown" : "Joelle Maslak" }, { - "y" : 132, "drilldown" : "Laurent Rosenfeld", - "name" : "#2: Laurent Rosenfeld" + "name" : "#2: Laurent Rosenfeld", + "y" : 142 }, { - "name" : "#3: Jaldhar H. Vyas", "drilldown" : "Jaldhar H. Vyas", - "y" : 106 + "y" : 106, + "name" : "#3: Jaldhar H. Vyas" }, { "y" : 100, - "drilldown" : "Ruben Westerberg", - "name" : "#4: Ruben Westerberg" + "name" : "#4: Ruben Westerberg", + "drilldown" : "Ruben Westerberg" }, { "y" : 84, - "drilldown" : "Adam Russell", - "name" : "#5: Adam Russell" + "name" : "#5: Adam Russell", + "drilldown" : "Adam Russell" }, { - "drilldown" : "Athanasius", + "y" : 76, "name" : "#6: Athanasius", - "y" : 76 + "drilldown" : "Athanasius" }, { - "drilldown" : "Arne Sommer", "name" : "#7: Arne Sommer", - "y" : 70 + "y" : 70, + "drilldown" : "Arne Sommer" }, { - "drilldown" : "Simon Proctor", + "y" : 70, "name" : "#8: Simon Proctor", - "y" : 70 + "drilldown" : "Simon Proctor" }, { - "drilldown" : "Kian-Meng Ang", + "y" : 68, "name" : "#9: Kian-Meng Ang", - "y" : 68 + "drilldown" : "Kian-Meng Ang" }, { "y" : 62, - "drilldown" : "Francis Whittle", - "name" : "#10: Francis Whittle" + "name" : "#10: Francis Whittle", + "drilldown" : "Francis Whittle" }, { "y" : 60, @@ -68,44 +69,44 @@ "y" : 58 }, { - "y" : 58, "name" : "#13: Gustavo Chaves", + "y" : 58, "drilldown" : "Gustavo Chaves" }, { - "name" : "#14: Andrezgz", "drilldown" : "Andrezgz", - "y" : 54 + "y" : 54, + "name" : "#14: Andrezgz" }, { - "drilldown" : "Jo Christian Oterhals", "name" : "#15: Jo Christian Oterhals", - "y" : 48 + "y" : 48, + "drilldown" : "Jo Christian Oterhals" }, { + "name" : "#16: Daniel Mantovani", "y" : 44, - "drilldown" : "Daniel Mantovani", - "name" : "#16: Daniel Mantovani" + "drilldown" : "Daniel Mantovani" }, { + "drilldown" : "Dr James A. Smith", "y" : 44, - "name" : "#17: Dr James A. Smith", - "drilldown" : "Dr James A. Smith" + "name" : "#17: Dr James A. Smith" }, { + "name" : "#18: Duncan C. White", "y" : 40, - "drilldown" : "Duncan C. White", - "name" : "#18: Duncan C. White" + "drilldown" : "Duncan C. White" }, { - "name" : "#19: Steven Wilson", "drilldown" : "Steven Wilson", - "y" : 38 + "y" : 38, + "name" : "#19: Steven Wilson" }, { "drilldown" : "Feng Chang", - "name" : "#20: Feng Chang", - "y" : 36 + "y" : 36, + "name" : "#20: Feng Chang" }, { "drilldown" : "Yozen Hernandez", @@ -113,9 +114,9 @@ "y" : 34 }, { - "y" : 32, + "drilldown" : "Mark Senn", "name" : "#22: Mark Senn", - "drilldown" : "Mark Senn" + "y" : 32 }, { "y" : 32, @@ -124,17 +125,17 @@ }, { "name" : "#24: Lars Balker", - "drilldown" : "Lars Balker", - "y" : 28 + "y" : 28, + "drilldown" : "Lars Balker" }, { - "y" : 26, "drilldown" : "Ozzy", - "name" : "#25: Ozzy" + "name" : "#25: Ozzy", + "y" : 26 }, { - "y" : 24, "name" : "#26: Guillermo Ramos", + "y" : 24, "drilldown" : "Guillermo Ramos" }, { @@ -144,18 +145,18 @@ }, { "drilldown" : "Alicia Bielsa", - "name" : "#28: Alicia Bielsa", - "y" : 22 + "y" : 22, + "name" : "#28: Alicia Bielsa" }, { - "y" : 20, "drilldown" : "Doug Schrag", - "name" : "#29: Doug Schrag" + "name" : "#29: Doug Schrag", + "y" : 20 }, { + "drilldown" : "Jaime Corchado", "y" : 16, - "name" : "#30: Jaime Corchado", - "drilldown" : "Jaime Corchado" + "name" : "#30: Jaime Corchado" }, { "y" : 16, @@ -163,9 +164,9 @@ "drilldown" : "Kevin Colyer" }, { - "name" : "#32: Robert Gratza", "drilldown" : "Robert Gratza", - "y" : 16 + "y" : 16, + "name" : "#32: Robert Gratza" }, { "drilldown" : "John Barrett", @@ -174,13 +175,13 @@ }, { "drilldown" : "Khalid", - "name" : "#34: Khalid", - "y" : 14 + "y" : 14, + "name" : "#34: Khalid" }, { + "y" : 12, "name" : "#35: Aaron Sherman", - "drilldown" : "Aaron Sherman", - "y" : 12 + "drilldown" : "Aaron Sherman" }, { "y" : 12, @@ -188,14 +189,14 @@ "drilldown" : "Donald Hunter" }, { - "name" : "#37: Kivanc Yazan", "drilldown" : "Kivanc Yazan", + "name" : "#37: Kivanc Yazan", "y" : 12 }, { + "name" : "#38: Maxim Kolodyazhny", "y" : 12, - "drilldown" : "Maxim Kolodyazhny", - "name" : "#38: Maxim Kolodyazhny" + "drilldown" : "Maxim Kolodyazhny" }, { "drilldown" : "Neil Bowers", @@ -203,87 +204,94 @@ "y" : 12 }, { - "drilldown" : "Philippe Bruhat", "name" : "#40: Philippe Bruhat", - "y" : 12 + "y" : 12, + "drilldown" : "Philippe Bruhat" }, { "y" : 12, - "drilldown" : "Sergio Iglesias", - "name" : "#41: Sergio Iglesias" + "name" : "#41: Sergio Iglesias", + "drilldown" : "Sergio Iglesias" }, { - "y" : 10, "drilldown" : "Arpad Toth", - "name" : "#42: Arpad Toth" + "name" : "#42: Arpad Toth", + "y" : 10 }, { + "drilldown" : "Lubos Kolouch", "y" : 10, - "name" : "#43: Lubos Kolouch", - "drilldown" : "Lubos Kolouch" + "name" : "#43: Lubos Kolouch" }, { + "name" : "#44: Pete Houston", "y" : 10, - "drilldown" : "Pete Houston", - "name" : "#44: Pete Houston" + "drilldown" : "Pete Houston" }, { "y" : 10, - "drilldown" : "Steve Rogerson", - "name" : "#45: Steve Rogerson" + "name" : "#45: Steve Rogerson", + "drilldown" : "Steve Rogerson" }, { - "y" : 10, "drilldown" : "Veesh Goldman", - "name" : "#46: Veesh Goldman" + "name" : "#46: Veesh Goldman", + "y" : 10 }, { "name" : "#47: Alex Daniel", - "drilldown" : "Alex Daniel", - "y" : 8 + "y" : 8, + "drilldown" : "Alex Daniel" }, { - "name" : "#48: Bob Kleemann", "drilldown" : "Bob Kleemann", - "y" : 8 + "y" : 8, + "name" : "#48: Bob Kleemann" }, { + "y" : 8, "name" : "#49: Chenyf", - "drilldown" : "Chenyf", - "y" : 8 + "drilldown" : "Chenyf" }, { - "y" : 8, "drilldown" : "David Kayal", - "name" : "#50: David Kayal" + "name" : "#50: David Kayal", + "y" : 8 } ], - "name" : "Perl Weekly Challenge Leaders", "colorByPoint" : "true" } ], - "xAxis" : { - "type" : "category" - }, "plotOptions" : { "series" : { - "borderWidth" : 0, "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 } }, - "tooltip" : { - "headerFormat" : "", - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : "true" + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-06-30 09:50:38 GMT" + }, + "legend" : { + "enabled" : "false" + }, + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" + }, + "xAxis" : { + "type" : "category" }, "drilldown" : { "series" : [ { - "id" : "Joelle Maslak", + "name" : "Joelle Maslak", "data" : [ + [ + "Blog", + 4 + ], [ "Perl 5", 35 @@ -291,33 +299,30 @@ [ "Perl 6", 35 - ], - [ - "Blog", - 4 ] ], - "name" : "Joelle Maslak" + "id" : "Joelle Maslak" }, { "name" : "Laurent Rosenfeld", - "id" : "Laurent Rosenfeld", "data" : [ [ - "Perl 6", - 25 + "Perl 5", + 28 ], [ - "Perl 5", - 26 + "Perl 6", + 27 ], [ "Blog", - 15 + 16 ] - ] + ], + "id" : "Laurent Rosenfeld" }, { + "id" : "Jaldhar H. Vyas", "name" : "Jaldhar H. Vyas", "data" : [ [ @@ -332,24 +337,24 @@ "Blog", 1 ] - ], - "id" : "Jaldhar H. Vyas" + ] }, { + "name" : "Ruben Westerberg", "data" : [ [ - "Perl 6", + "Perl 5", 25 ], [ - "Perl 5", + "Perl 6", 25 ] ], - "id" : "Ruben Westerberg", - "name" : "Ruben Westerberg" + "id" : "Ruben Westerberg" }, { + "id" : "Adam Russell", "data" : [ [ "Blog", @@ -360,26 +365,25 @@ 28 ] ], - "id" : "Adam Russell", "name" : "Adam Russell" }, { "id" : "Athanasius", + "name" : "Athanasius", "data" : [ [ - "Perl 6", - 6 + "Blog", + 2 ], [ "Perl 5", 30 ], [ - "Blog", - 2 + "Perl 6", + 6 ] - ], - "name" : "Athanasius" + ] }, { "name" : "Arne Sommer", @@ -396,84 +400,85 @@ "id" : "Arne Sommer" }, { - "id" : "Simon Proctor", "data" : [ [ - "Perl 6", - 24 + "Blog", + 7 ], [ "Perl 5", 4 ], [ - "Blog", - 7 + "Perl 6", + 24 ] ], - "name" : "Simon Proctor" + "name" : "Simon Proctor", + "id" : "Simon Proctor" }, { - "name" : "Kian-Meng Ang", "id" : "Kian-Meng Ang", + "name" : "Kian-Meng Ang", "data" : [ - [ - "Blog", - 11 - ], [ "Perl 5", 23 + ], + [ + "Blog", + 11 ] ] }, { "id" : "Francis Whittle", + "name" : "Francis Whittle", "data" : [ - [ - "Blog", - 7 - ], [ "Perl 6", 24 + ], + [ + "Blog", + 7 ] - ], - "name" : "Francis Whittle" + ] }, { "name" : "E. Choroba", - "id" : "E. Choroba", "data" : [ - [ - "Blog", - 10 - ], [ "Perl 5", 20 + ], + [ + "Blog", + 10 ] - ] + ], + "id" : "E. Choroba" }, { + "id" : "Dave Jacoby", "data" : [ [ - "Perl 5", - 15 + "Blog", + 13 ], [ "Perl 6", 1 ], [ - "Blog", - 13 + "Perl 5", + 15 ] ], - "id" : "Dave Jacoby", "name" : "Dave Jacoby" }, { + "id" : "Gustavo Chaves", "name" : "Gustavo Chaves", "data" : [ [ @@ -484,23 +489,24 @@ "Blog", 4 ] - ], - "id" : "Gustavo Chaves" + ] }, { - "id" : "Andrezgz", "data" : [ [ "Perl 5", 27 ] ], - "name" : "Andrezgz" + "name" : "Andrezgz", + "id" : "Andrezgz" }, { + "id" : "Jo Christian Oterhals", + "name" : "Jo Christian Oterhals", "data" : [ [ - "Perl 5", + "Blog", 6 ], [ @@ -508,36 +514,34 @@ 12 ], [ - "Blog", + "Perl 5", 6 ] - ], - "id" : "Jo Christian Oterhals", - "name" : "Jo Christian Oterhals" + ] }, { "name" : "Daniel Mantovani", - "id" : "Daniel Mantovani", "data" : [ [ "Perl 5", 22 ] - ] + ], + "id" : "Daniel Mantovani" }, { - "name" : "Dr James A. Smith", + "id" : "Dr James A. Smith", "data" : [ - [ - "Perl 5", - 12 - ], [ "Perl 6", 10 + ], + [ + "Perl 5", + 12 ] ], - "id" : "Dr James A. Smith" + "name" : "Dr James A. Smith" }, { "id" : "Duncan C. White", @@ -551,6 +555,7 @@ }, { "id" : "Steven Wilson", + "name" : "Steven Wilson", "data" : [ [ "Blog", @@ -560,12 +565,9 @@ "Perl 5", 17 ] - ], - "name" : "Steven Wilson" + ] }, { - "name" : "Feng Chang", - "id" : "Feng Chang", "data" : [ [ "Perl 5", @@ -575,37 +577,40 @@ "Perl 6", 9 ] - ] + ], + "name" : "Feng Chang", + "id" : "Feng Chang" }, { + "id" : "Yozen Hernandez", "name" : "Yozen Hernandez", "data" : [ - [ - "Blog", - 5 - ], [ "Perl 5", 12 + ], + [ + "Blog", + 5 ] - ], - "id" : "Yozen Hernandez" + ] }, { "name" : "Mark Senn", - "id" : "Mark Senn", "data" : [ - [ - "Blog", - 4 - ], [ "Perl 6", 12 + ], + [ + "Blog", + 4 ] - ] + ], + "id" : "Mark Senn" }, { + "id" : "Nick Logan", "data" : [ [ "Perl 6", @@ -616,110 +621,109 @@ 8 ] ], - "id" : "Nick Logan", "name" : "Nick Logan" }, { - "name" : "Lars Balker", + "id" : "Lars Balker", "data" : [ - [ - "Perl 6", - 4 - ], [ "Perl 5", 10 + ], + [ + "Perl 6", + 4 ] ], - "id" : "Lars Balker" + "name" : "Lars Balker" }, { "id" : "Ozzy", + "name" : "Ozzy", "data" : [ [ "Perl 6", 13 ] - ], - "name" : "Ozzy" + ] }, { - "id" : "Guillermo Ramos", + "name" : "Guillermo Ramos", "data" : [ [ "Perl 5", 12 ] ], - "name" : "Guillermo Ramos" + "id" : "Guillermo Ramos" }, { - "name" : "Maxim Nechaev", + "id" : "Maxim Nechaev", "data" : [ [ "Perl 5", 12 ] ], - "id" : "Maxim Nechaev" + "name" : "Maxim Nechaev" }, { - "name" : "Alicia Bielsa", - "id" : "Alicia Bielsa", "data" : [ [ "Perl 5", 11 ] - ] + ], + "name" : "Alicia Bielsa", + "id" : "Alicia Bielsa" }, { + "name" : "Doug Schrag", "data" : [ [ "Perl 6", 10 ] ], - "id" : "Doug Schrag", - "name" : "Doug Schrag" + "id" : "Doug Schrag" }, { - "name" : "Jaime Corchado", - "id" : "Jaime Corchado", "data" : [ [ "Perl 5", 8 ] - ] + ], + "name" : "Jaime Corchado", + "id" : "Jaime Corchado" }, { - "name" : "Kevin Colyer", "id" : "Kevin Colyer", "data" : [ [ "Perl 6", 8 ] - ] + ], + "name" : "Kevin Colyer" }, { - "id" : "Robert Gratza", "data" : [ - [ - "Perl 5", - 2 - ], [ "Perl 6", 6 + ], + [ + "Perl 5", + 2 ] ], - "name" : "Robert Gratza" + "name" : "Robert Gratza", + "id" : "Robert Gratza" }, { - "name" : "John Barrett", "id" : "John Barrett", + "name" : "John Barrett", "data" : [ [ "Perl 5", @@ -728,9 +732,12 @@ ] }, { - "name" : "Khalid", "id" : "Khalid", "data" : [ + [ + "Blog", + 1 + ], [ "Perl 6", 2 @@ -738,46 +745,43 @@ [ "Perl 5", 4 - ], - [ - "Blog", - 1 ] - ] + ], + "name" : "Khalid" }, { + "id" : "Aaron Sherman", "name" : "Aaron Sherman", "data" : [ [ "Perl 6", 6 ] - ], - "id" : "Aaron Sherman" + ] }, { + "id" : "Donald Hunter", + "name" : "Donald Hunter", "data" : [ [ - "Perl 6", + "Blog", 3 ], [ - "Blog", + "Perl 6", 3 ] - ], - "id" : "Donald Hunter", - "name" : "Donald Hunter" + ] }, { + "id" : "Kivanc Yazan", "name" : "Kivanc Yazan", "data" : [ [ "Perl 5", 6 ] - ], - "id" : "Kivanc Yazan" + ] }, { "id" : "Maxim Kolodyazhny", @@ -790,7 +794,6 @@ "name" : "Maxim Kolodyazhny" }, { - "name" : "Neil Bowers", "id" : "Neil Bowers", "data" : [ [ @@ -801,11 +804,11 @@ "Blog", 2 ] - ] + ], + "name" : "Neil Bowers" }, { "name" : "Philippe Bruhat", - "id" : "Philippe Bruhat", "data" : [ [ "Perl 5", @@ -815,17 +818,18 @@ "Blog", 2 ] - ] + ], + "id" : "Philippe Bruhat" }, { - "name" : "Sergio Iglesias", - "id" : "Sergio Iglesias", "data" : [ [ "Perl 5", 6 ] - ] + ], + "name" : "Sergio Iglesias", + "id" : "Sergio Iglesias" }, { "name" : "Arpad Toth", @@ -839,67 +843,67 @@ }, { "name" : "Lubos Kolouch", - "id" : "Lubos Kolouch", "data" : [ [ "Perl 5", 5 ] - ] + ], + "id" : "Lubos Kolouch" }, { - "name" : "Pete Houston", - "id" : "Pete Houston", "data" : [ [ "Perl 5", 5 ] - ] + ], + "name" : "Pete Houston", + "id" : "Pete Houston" }, { "name" : "Steve Rogerson", - "id" : "Steve Rogerson", "data" : [ - [ - "Perl 5", - 3 - ], [ "Perl 6", 2 + ], + [ + "Perl 5", + 3 ] - ] + ], + "id" : "Steve Rogerson" }, { - "id" : "Veesh Goldman", "data" : [ [ "Perl 5", 5 ] ], - "name" : "Veesh Goldman" + "name" : "Veesh Goldman", + "id" : "Veesh Goldman" }, { + "id" : "Alex Daniel", "name" : "Alex Daniel", "data" : [ [ "Perl 6", 4 ] - ], - "id" : "Alex Daniel" + ] }, { - "id" : "Bob Kleemann", + "name" : "Bob Kleemann", "data" : [ [ "Perl 5", 4 ] ], - "name" : "Bob Kleemann" + "id" : "Bob Kleemann" }, { "data" : [ @@ -908,31 +912,27 @@ 4 ] ], - "id" : "Chenyf", - "name" : "Chenyf" + "name" : "Chenyf", + "id" : "Chenyf" }, { "id" : "David Kayal", + "name" : "David Kayal", "data" : [ [ "Perl 5", 4 ] - ], - "name" : "David Kayal" + ] } ] }, "chart" : { "type" : "column" }, - "legend" : { - "enabled" : "false" - }, - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-06-30 08:56:02 GMT" + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "", + "followPointer" : "true" } } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index ae73ce77de..167ae4c197 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -1,31 +1,40 @@ { - "chart" : { - "type" : "column" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } - }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-06-30 08:55:58 GMT" + "xAxis" : { + "categories" : [ + "Aaron Sherman", + "Abigail", + "Adam Russell", + "Ailbhe Tweedie", + "Alex Daniel", + "Alexander Karelas", + "Alexey Melezhik", + "Alicia Bielsa", + "Andrezgz", + "Antonio Gamiz", + "Arne Sommer", + "Arpad Toth", + "Athanasius", + "Aubrey Quarcoo", + "Bill Palmer", + "Bob Kleemann", + "Clive Holloway", + "Daniel Mantovani", + "Daniel Mita", + "Dave Cross", + "Dave Jacoby", + "David Kayal", + "Denis Yurashku", + "Donald Hunter", + "Doug Schrag", + "Duane Powell", + "Duncan C. White", + "E. Choroba", + "Eddy HS", + "Feng Chang" + ] }, "series" : [ { - "name" : "Perl 5", "data" : [ 0, 2, @@ -57,9 +66,11 @@ 20, 2, 9 - ] + ], + "name" : "Perl 5" }, { + "name" : "Perl 6", "data" : [ 6, 0, @@ -91,10 +102,10 @@ 0, 0, 9 - ], - "name" : "Perl 6" + ] }, { + "name" : "Blog", "data" : [ 0, 0, @@ -126,42 +137,31 @@ 10, 0, 0 - ], - "name" : "Blog" + ] } ], - "xAxis" : { - "categories" : [ - "Aaron Sherman", - "Abigail", - "Adam Russell", - "Ailbhe Tweedie", - "Alex Daniel", - "Alexander Karelas", - "Alexey Melezhik", - "Alicia Bielsa", - "Andrezgz", - "Antonio Gamiz", - "Arne Sommer", - "Arpad Toth", - "Athanasius", - "Aubrey Quarcoo", - "Bill Palmer", - "Bob Kleemann", - "Clive Holloway", - "Daniel Mantovani", - "Daniel Mita", - "Dave Cross", - "Dave Jacoby", - "David Kayal", - "Denis Yurashku", - "Donald Hunter", - "Doug Schrag", - "Duane Powell", - "Duncan C. White", - "E. Choroba", - "Eddy HS", - "Feng Chang" - ] + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" + } + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-06-30 09:50:30 GMT" + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "chart" : { + "type" : "column" + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" } } diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index be409494a1..99a31b02d9 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -1,16 +1,17 @@ { "yAxis" : { + "min" : 0, "title" : { "text" : "" - }, - "min" : 0 + } }, - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-06-30 09:50:30 GMT" }, - "chart" : { - "type" : "column" + "plotOptions" : { + "column" : { + "stacking" : "percent" + } }, "xAxis" : { "categories" : [ @@ -73,7 +74,7 @@ 23, 6, 10, - 26, + 28, 5, 1, 0, @@ -83,7 +84,6 @@ "name" : "Perl 5" }, { - "name" : "Perl 6", "data" : [ 4, 24, @@ -109,13 +109,14 @@ 0, 0, 4, - 25, + 27, 0, 1, 0, 12, 1 - ] + ], + "name" : "Perl 6" }, { "data" : [ @@ -143,7 +144,7 @@ 11, 0, 0, - 15, + 16, 0, 0, 0, @@ -153,15 +154,14 @@ "name" : "Blog" } ], - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-06-30 08:55:58 GMT" - }, "title" : { "text" : "Perl Weekly Challenge - 2019" }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } + "tooltip" : { + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 + }, + "chart" : { + "type" : "column" } } diff --git a/stats/pwc-summar