From 7964bbf45a5f5ff3037bf8fd98781e72bb03f1c8 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Thu, 2 May 2019 14:29:32 +0100 Subject: - Added solutions by Laurent Rosenfeld. --- challenge-006/laurent-rosenfeld/blog.txt | 1 + challenge-006/laurent-rosenfeld/perl5/ch-1.pl | 15 + challenge-006/laurent-rosenfeld/perl5/ch-1a.pl | 16 + challenge-006/laurent-rosenfeld/perl5/ch-1b.pl | 27 + challenge-006/laurent-rosenfeld/perl5/ch-1c.pl | 23 + challenge-006/laurent-rosenfeld/perl5/ch-1d.pl | 24 + challenge-006/laurent-rosenfeld/perl6/ch-1.p6 | 20 + challenge-006/laurent-rosenfeld/perl6/ch-1a.p6 | 15 + stats/pwc-current.json | 187 +++--- stats/pwc-language-breakdown.json | 94 +-- stats/pwc-leaders.json | 886 ++++++++++++------------- stats/pwc-summary-1-30.json | 110 +-- stats/pwc-summary-31-60.json | 52 +- stats/pwc-summary-61-90.json | 76 +-- stats/pwc-summary.json | 198 +++--- 15 files changed, 952 insertions(+), 792 deletions(-) create mode 100644 challenge-006/laurent-rosenfeld/blog.txt create mode 100644 challenge-006/laurent-rosenfeld/perl5/ch-1.pl create mode 100644 challenge-006/laurent-rosenfeld/perl5/ch-1a.pl create mode 100644 challenge-006/laurent-rosenfeld/perl5/ch-1b.pl create mode 100644 challenge-006/laurent-rosenfeld/perl5/ch-1c.pl create mode 100644 challenge-006/laurent-rosenfeld/perl5/ch-1d.pl create mode 100644 challenge-006/laurent-rosenfeld/perl6/ch-1.p6 create mode 100644 challenge-006/laurent-rosenfeld/perl6/ch-1a.p6 diff --git a/challenge-006/laurent-rosenfeld/blog.txt b/challenge-006/laurent-rosenfeld/blog.txt new file mode 100644 index 0000000000..54d90dc3a7 --- /dev/null +++ b/challenge-006/laurent-rosenfeld/blog.txt @@ -0,0 +1 @@ +http://blogs.perl.org/users/laurent_r/2019/05/perl-weekly-challenge-6-compact-number-ranges.html diff --git a/challenge-006/laurent-rosenfeld/perl5/ch-1.pl b/challenge-006/laurent-rosenfeld/perl5/ch-1.pl new file mode 100644 index 0000000000..43773de58d --- /dev/null +++ b/challenge-006/laurent-rosenfeld/perl5/ch-1.pl @@ -0,0 +1,15 @@ +use strict; +use warnings; +use feature 'say'; + +my @input = @ARGV > 0 ? @ARGV : (1,2,3,4,9,10,14,15,16,3,4,5,6,4,5,6,7,9,9); +my $prev = my $start = shift @input; +for my $num (@input) { + if ( $prev == $num - 1 ) { + $prev = $num; + } else { + print $prev == $start ? "$prev," : "$start-$prev,"; + $start = $prev = $num; + } +} +say $prev == $start ? $prev : "$start-$prev"; diff --git a/challenge-006/laurent-rosenfeld/perl5/ch-1a.pl b/challenge-006/laurent-rosenfeld/perl5/ch-1a.pl new file mode 100644 index 0000000000..cd1d9d66f1 --- /dev/null +++ b/challenge-006/laurent-rosenfeld/perl5/ch-1a.pl @@ -0,0 +1,16 @@ +use strict; +use warnings; +use feature 'say'; + +my @input = @ARGV > 0 ? @ARGV : (1,2,3,4,9,10,14,15,16,3,4,5,6,4,5,6,7,9,9); +my $prev = my $start = shift @input; +for my $num (sort { $a <=> $b } @input) { + next if $num == $prev; + if ( $prev == $num - 1 ) { + $prev = $num; + } else { + print $prev == $start ? "$prev," : "$start-$prev,"; + $start = $prev = $num; + } +} +say $prev == $start ? $prev : "$start-$prev"; diff --git a/challenge-006/laurent-rosenfeld/perl5/ch-1b.pl b/challenge-006/laurent-rosenfeld/perl5/ch-1b.pl new file mode 100644 index 0000000000..deb1b6cd3f --- /dev/null +++ b/challenge-006/laurent-rosenfeld/perl5/ch-1b.pl @@ -0,0 +1,27 @@ +use strict; +use warnings; +use feature 'say'; + +sub compare { + my ($prev, $start) = @_; + if ($prev > $start + 1) { + return "$start-$prev"; + } elsif ($prev > $start) { + return "$start,$prev"; + } else { + return "$prev"; + } +} + +my @input = @ARGV > 0 ? @ARGV : (1,2,3,4,9,10,14,15,16,3,4,5,6,4,5,6,7,9,9); +my $prev_val = my $start_val = shift @input; +my $output = ""; +for my $num (@input) { + if ($num != $prev_val + 1) { + $output .= compare ($prev_val, $start_val) . ","; + $start_val = $num; + } + $prev_val = $num; +} +$output .= compare ($prev_val, $start_val); +say $output; diff --git a/challenge-006/laurent-rosenfeld/perl5/ch-1c.pl b/challenge-006/laurent-rosenfeld/perl5/ch-1c.pl new file mode 100644 index 0000000000..9de0e3f3f0 --- /dev/null +++ b/challenge-006/laurent-rosenfeld/perl5/ch-1c.pl @@ -0,0 +1,23 @@ +use strict; +use warnings; +use feature 'say'; + +sub compare { + my ($prev, $start) = @_; + return $prev > $start + 1 ? "$start-$prev" + : $prev > $start ? "$start,$prev" + : "$prev"; +} + +my @input = @ARGV > 0 ? @ARGV : (1,2,3,4,9,10,14,15,16,3,4,5,6,4,5,6,7,9,9); +my $prev_val = my $start_val = shift @input; +my $output = ""; +for my $num (@input) { + if ($num != $prev_val + 1) { + $output .= compare ($prev_val, $start_val) . ","; + $start_val = $num; + } + $prev_val = $num; +} +$output .= compare ($prev_val, $start_val); +say $output; diff --git a/challenge-006/laurent-rosenfeld/perl5/ch-1d.pl b/challenge-006/laurent-rosenfeld/perl5/ch-1d.pl new file mode 100644 index 0000000000..65368e5871 --- /dev/null +++ b/challenge-006/laurent-rosenfeld/perl5/ch-1d.pl @@ -0,0 +1,24 @@ +use strict; +use warnings; +use feature 'say'; + +my @input = @ARGV > 0 ? @ARGV : (1,2,3,4,9,10,14,15,16,3,4,5,6,4,5,6,7,9,9); + +sub process_input { + my ($range, $input, $output) = @_; + my $curr_val = shift @$input; + if ($curr_val == $range->[1] + 1) { + $range->[1] = $curr_val; + } else { + my $sep = $range->[1] > $range->[0] + 1 ? "-" : ","; + $output .= (join $sep, @$range) . ","; + $range = [$curr_val, $curr_val]; + } + return $output if @$input == 0; + process_input ($range, $input, $output); +} + +my $first = shift @input; +my $output = process_input([($first) x 2], \@input, ""); +chop $output; +say $output; diff --git a/challenge-006/laurent-rosenfeld/perl6/ch-1.p6 b/challenge-006/laurent-rosenfeld/perl6/ch-1.p6 new file mode 100644 index 0000000000..a57a0af39a --- /dev/null +++ b/challenge-006/laurent-rosenfeld/perl6/ch-1.p6 @@ -0,0 +1,20 @@ +use v6; +sub compare (Int $prev, Int $start) { + return $prev > $start + 1 ?? "$start-$prev" + !! $prev > $start ?? "$start,$prev" + !! "$prev"; +} + +my @input = @*ARGS.elems > 0 ?? @*ARGS !! 1,2,3,4,9,10,14,15,16,3,4,5,6,4,5,6,7,9,9; +my $prev_val = my $start_val = shift @input; + +my $output = ""; +for @input -> $num { + if ($num != $prev_val + 1) { + $output ~= compare($prev_val, $start_val) ~ ","; + $start_val = $num; + } + $prev_val = $num; +} +$output ~= compare $prev_val, $start_val; +say $output; diff --git a/challenge-006/laurent-rosenfeld/perl6/ch-1a.p6 b/challenge-006/laurent-rosenfeld/perl6/ch-1a.p6 new file mode 100644 index 0000000000..98fa613908 --- /dev/null +++ b/challenge-006/laurent-rosenfeld/perl6/ch-1a.p6 @@ -0,0 +1,15 @@ +use v6; +my @input = @*ARGS.elems > 0 ?? @*ARGS !! 1,2,3,4,9,10,14,15,16,3,4,5,6,4,5,6,7,9,9; +my $prev = my $start = shift @input; +my @result = gather { + for @input -> $num { + if $num != $prev + 1 { + take $prev > $start + 1 ?? "$start-$prev" + !! $prev > $start ?? "$start,$prev" + !! "$prev"; + $start = $num; + } + $prev = $num; + } +} +say @result.append($prev).join(","); diff --git a/stats/pwc-current.json b/stats/pwc-current.json index e1555f8308..13549e7383 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,15 +1,90 @@ { + "chart" : { + "type" : "column" + }, + "xAxis" : { + "type" : "category" + }, + "tooltip" : { + "followPointer" : 1, + "headerFormat" : "{series.name}
", + "pointerFormat" : "{point.name}: {point.y:f}
" + }, + "title" : { + "text" : "Perl Weekly Challenge - 006" + }, + "series" : [ + { + "name" : "Champions", + "data" : [ + { + "y" : 1, + "drilldown" : "Alicia Bielsa", + "name" : "Alicia Bielsa" + }, + { + "drilldown" : "Andrezgz", + "y" : 2, + "name" : "Andrezgz" + }, + { + "name" : "Athanasius", + "y" : 2, + "drilldown" : "Athanasius" + }, + { + "drilldown" : "Gustavo Chaves", + "y" : 2, + "name" : "Gustavo Chaves" + }, + { + "y" : 4, + "drilldown" : "Joelle Maslak", + "name" : "Joelle Maslak" + }, + { + "drilldown" : "Laurent Rosenfeld", + "y" : 2, + "name" : "Laurent Rosenfeld" + }, + { + "drilldown" : "Maxim Kolodyazhny", + "y" : 1, + "name" : "Maxim Kolodyazhny" + }, + { + "y" : 1, + "drilldown" : "Simon Proctor", + "name" : "Simon Proctor" + }, + { + "y" : 2, + "drilldown" : "Tim Smith", + "name" : "Tim Smith" + } + ], + "colorByPoint" : 1 + } + ], + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "legend" : { + "enabled" : 0 + }, "drilldown" : { "series" : [ { + "id" : "Alicia Bielsa", + "name" : "Alicia Bielsa", "data" : [ [ "Perl 5", 1 ] - ], - "name" : "Alicia Bielsa", - "id" : "Alicia Bielsa" + ] }, { "data" : [ @@ -22,24 +97,24 @@ "id" : "Andrezgz" }, { - "id" : "Athanasius", "name" : "Athanasius", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "Athanasius" }, { - "id" : "Gustavo Chaves", - "name" : "Gustavo Chaves", "data" : [ [ "Perl 5", 2 ] - ] + ], + "name" : "Gustavo Chaves", + "id" : "Gustavo Chaves" }, { "data" : [ @@ -52,32 +127,46 @@ 2 ] ], - "id" : "Joelle Maslak", - "name" : "Joelle Maslak" + "name" : "Joelle Maslak", + "id" : "Joelle Maslak" }, { + "name" : "Laurent Rosenfeld", "data" : [ [ "Perl 5", 1 + ], + [ + "Perl 6", + 1 ] ], + "id" : "Laurent Rosenfeld" + }, + { "id" : "Maxim Kolodyazhny", - "name" : "Maxim Kolodyazhny" + "name" : "Maxim Kolodyazhny", + "data" : [ + [ + "Perl 5", + 1 + ] + ] }, { + "id" : "Simon Proctor", "data" : [ [ "Perl 6", 1 ] ], - "id" : "Simon Proctor", "name" : "Simon Proctor" }, { - "name" : "Tim Smith", "id" : "Tim Smith", + "name" : "Tim Smith", "data" : [ [ "Perl 6", @@ -87,78 +176,8 @@ } ] }, - "xAxis" : { - "type" : "category" - }, - "series" : [ - { - "data" : [ - { - "y" : 1, - "name" : "Alicia Bielsa", - "drilldown" : "Alicia Bielsa" - }, - { - "y" : 2, - "name" : "Andrezgz", - "drilldown" : "Andrezgz" - }, - { - "y" : 2, - "name" : "Athanasius", - "drilldown" : "Athanasius" - }, - { - "name" : "Gustavo Chaves", - "y" : 2, - "drilldown" : "Gustavo Chaves" - }, - { - "drilldown" : "Joelle Maslak", - "name" : "Joelle Maslak", - "y" : 4 - }, - { - "name" : "Maxim Kolodyazhny", - "y" : 1, - "drilldown" : "Maxim Kolodyazhny" - }, - { - "name" : "Simon Proctor", - "y" : 1, - "drilldown" : "Simon Proctor" - }, - { - "name" : "Tim Smith", - "y" : 2, - "drilldown" : "Tim Smith" - } - ], - "colorByPoint" : 1, - "name" : "Champions" - } - ], - "legend" : { - "enabled" : 0 - }, - "title" : { - "text" : "Perl Weekly Challenge - 006" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "tooltip" : { - "pointerFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1, - "headerFormat" : "{series.name}
" - }, "subtitle" : { - "text" : "[Champions: 8] Last updated at 2019-05-02 09:52:35 GMT" - }, - "chart" : { - "type" : "column" + "text" : "[Champions: 9] Last updated at 2019-05-02 13:28:30 GMT" }, "plotOptions" : { "series" : { diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 42bb23798e..03dd071924 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,30 +1,21 @@ { - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } + "xAxis" : { + "type" : "category" }, "series" : [ { + "name" : "Perl Weekly Challenge Languages", + "colorByPoint" : "true", "data" : [ { - "y" : 113, "drilldown" : "001", - "name" : "#001 [P5=76 P6=37]" + "name" : "#001 [P5=76 P6=37]", + "y" : 113 }, { "name" : "#002 [P5=63 P6=32]", - "y" : 95, - "drilldown" : "002" + "drilldown" : "002", + "y" : 95 }, { "name" : "#003 [P5=32 P6=26]", @@ -38,33 +29,39 @@ }, { "name" : "#005 [P5=31 P6=22]", - "y" : 53, - "drilldown" : "005" + "drilldown" : "005", + "y" : 53 }, { - "name" : "#006 [P5=10 P6=5]", - "y" : 15, - "drilldown" : "006" + "y" : 17, + "drilldown" : "006", + "name" : "#006 [P5=11 P6=6]" } - ], - "colorByPoint" : "true", - "name" : "Perl Weekly Challenge Languages" + ] } ], - "xAxis" : { - "type" : "category" - }, "chart" : { "type" : "column" }, + "legend" : { + "enabled" : "false" + }, "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-05-02 09:52:46 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-05-02 13:28:44 GMT" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "title" : { + "text" : "Perl Weekly Challenge Language" }, "drilldown" : { "series" : [ { - "id" : "001", "name" : "001", + "id" : "001", "data" : [ [ "Perl 5", @@ -77,6 +74,8 @@ ] }, { + "name" : "002", + "id" : "002", "data" : [ [ "Perl 5", @@ -86,9 +85,7 @@ "Perl 6", 32 ] - ], - "name" : "002", - "id" : "002" + ] }, { "name" : "003", @@ -105,7 +102,6 @@ ] }, { - "name" : "004", "id" : "004", "data" : [ [ @@ -116,10 +112,10 @@ "Perl 6", 29 ] - ] + ], + "name" : "004" }, { - "id" : "005", "name" : "005", "data" : [ [ @@ -130,33 +126,37 @@ "Perl 6", 22 ] - ] + ], + "id" : "005" }, { "data" : [ [ "Perl 5", - 10 + 11 ], [ "Perl 6", - 5 + 6 ] ], - "name" : "006", - "id" : "006" + "id" : "006", + "name" : "006" } ] }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } + }, "tooltip" : { "followPointer" : "true", "pointFormat" : "{point.name}: {point.y:f}
", "headerFormat" : "" - }, - "legend" : { - "enabled" : "false" - }, - "title" : { - "text" : "Perl Weekly Challenge Language" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index cdb0976a6e..91cb819951 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,64 +1,319 @@ { + "series" : [ + { + "data" : [ + { + "drilldown" : "Laurent Rosenfeld", + "name" : "#1: Laurent Rosenfeld", + "y" : 54 + }, + { + "y" : 50, + "name" : "#2: Joelle Maslak", + "drilldown" : "Joelle Maslak" + }, + { + "y" : 40, + "drilldown" : "Jaldhar H. Vyas", + "name" : "#3: Jaldhar H. Vyas" + }, + { + "y" : 38, + "drilldown" : "Simon Proctor", + "name" : "#4: Simon Proctor" + }, + { + "name" : "#5: Dr James A. Smith", + "drilldown" : "Dr James A. Smith", + "y" : 36 + }, + { + "y" : 36, + "name" : "#6: Jo Christian Oterhals", + "drilldown" : "Jo Christian Oterhals" + }, + { + "name" : "#7: Nick Logan", + "drilldown" : "Nick Logan", + "y" : 32 + }, + { + "name" : "#8: Ruben Westerberg", + "drilldown" : "Ruben Westerberg", + "y" : 32 + }, + { + "name" : "#9: Adam Russell", + "drilldown" : "Adam Russell", + "y" : 30 + }, + { + "y" : 28, + "name" : "#10: Lars Balker", + "drilldown" : "Lars Balker" + }, + { + "y" : 26, + "drilldown" : "Gustavo Chaves", + "name" : "#11: Gustavo Chaves" + }, + { + "y" : 26, + "name" : "#12: Mark Senn", + "drilldown" : "Mark Senn" + }, + { + "y" : 24, + "name" : "#13: Andrezgz", + "drilldown" : "Andrezgz" + }, + { + "drilldown" : "Arne Sommer", + "name" : "#14: Arne Sommer", + "y" : 24 + }, + { + "y" : 24, + "drilldown" : "Athanasius", + "name" : "#15: Athanasius" + }, + { + "name" : "#16: Kian-Meng Ang", + "drilldown" : "Kian-Meng Ang", + "y" : 24 + }, + { + "name" : "#17: Doug Schrag", + "drilldown" : "Doug Schrag", + "y" : 20 + }, + { + "drilldown" : "Francis Whittle", + "name" : "#18: Francis Whittle", + "y" : 18 + }, + { + "drilldown" : "Duncan C. White", + "name" : "#19: Duncan C. White", + "y" : 16 + }, + { + "y" : 16, + "drilldown" : "Robert Gratza", + "name" : "#20: Robert Gratza" + }, + { + "name" : "#21: John Barrett", + "drilldown" : "John Barrett", + "y" : 14 + }, + { + "y" : 12, + "drilldown" : "Daniel Mantovani", + "name" : "#22: Daniel Mantovani" + }, + { + "drilldown" : "Philippe Bruhat", + "name" : "#23: Philippe Bruhat", + "y" : 12 + }, + { + "drilldown" : "Sergio Iglesias", + "name" : "#24: Sergio Iglesias", + "y" : 12 + }, + { + "drilldown" : "Khalid", + "name" : "#25: Khalid", + "y" : 10 + }, + { + "name" : "#26: Maxim Kolodyazhny", + "drilldown" : "Maxim Kolodyazhny", + "y" : 10 + }, + { + "name" : "#27: Steve Rogerson", + "drilldown" : "Steve Rogerson", + "y" : 10 + }, + { + "name" : "#28: Veesh Goldman", + "drilldown" : "Veesh Goldman", + "y" : 10 + }, + { + "name" : "#29: Alex Daniel", + "drilldown" : "Alex Daniel", + "y" : 8 + }, + { + "y" : 8, + "drilldown" : "Arpad Toth", + "name" : "#30: Arpad Toth" + }, + { + "name" : "#31: Bob Kleemann", + "drilldown" : "Bob Kleemann", + "y" : 8 + }, + { + "drilldown" : "Chenyf", + "name" : "#32: Chenyf", + "y" : 8 + }, + { + "name" : "#33: David Kayal", + "drilldown" : "David Kayal", + "y" : 8 + }, + { + "y" : 8, + "drilldown" : "Jaime Corchado", + "name" : "#34: Jaime Corchado" + }, + { + "y" : 8, + "name" : "#35: Matt Latusek", + "drilldown" : "Matt Latusek" + }, + { + "y" : 8, + "name" : "#36: Ozzy", + "drilldown" : "Ozzy" + }, + { + "drilldown" : "Simon Reinhardt", + "name" : "#37: Simon Reinhardt", + "y" : 8 + }, + { + "y" : 8, + "name" : "#38: Steven Wilson", + "drilldown" : "Steven Wilson" + }, + { + "y" : 8, + "name" : "#39: Tim Smith", + "drilldown" : "Tim Smith" + }, + { + "drilldown" : "Ailbhe Tweedie", + "name" : "#40: Ailbhe Tweedie", + "y" : 6 + }, + { + "y" : 6, + "drilldown" : "Alicia Bielsa", + "name" : "#41: Alicia Bielsa" + }, + { + "y" : 6, + "drilldown" : "Dave Cross", + "name" : "#42: Dave Cross" + }, + { + "drilldown" : "Dave Jacoby", + "name" : "#43: Dave Jacoby", + "y" : 6 + }, + { + "drilldown" : "E. Choroba", + "name" : "#44: E. Choroba", + "y" : 6 + }, + { + "y" : 6, + "name" : "#45: Freddie B", + "drilldown" : "Freddie B" + }, + { + "drilldown" : "Jeremy Carman", + "name" : "#46: Jeremy Carman", + "y" : 6 + }, + { + "name" : "#47: Kivanc Yazan", + "drilldown" : "Kivanc Yazan", + "y" : 6 + }, + { + "drilldown" : "Neil Bowers", + "name" : "#48: Neil Bowers", + "y" : 6 + }, + { + "y" : 6, + "drilldown" : "Pete Houston", + "name" : "#49: Pete Houston" + }, + { + "y" : 6, + "name" : "#50: Sean Meininger", + "drilldown" : "Sean Meininger" + } + ], + "colorByPoint" : "true", + "name" : "Perl Weekly Challenge Leaders" + } + ], + "xAxis" : { + "type" : "category" + }, "drilldown" : { "series" : [ { - "id" : "Joelle Maslak", - "name" : "Joelle Maslak", "data" : [ - [ - "Perl 6", - 12 - ], [ "Perl 5", - 12 + 11 ], - [ - "Blog", - 1 - ] - ] - }, - { - "data" : [ [ "Perl 6", - 9 + 10 ], [ "Blog", - 5 - ], - [ - "Perl 5", - 10 + 6 ] ], "id" : "Laurent Rosenfeld", "name" : "Laurent Rosenfeld" }, { - "name" : "Jaldhar H. Vyas", - "id" : "Jaldhar H. Vyas", + "id" : "Joelle Maslak", + "name" : "Joelle Maslak", "data" : [ [ "Perl 5", - 10 + 12 ], [ "Perl 6", - 10 + 12 + ], + [ + "Blog", + 1 ] ] }, { - "id" : "Simon Proctor", - "name" : "Simon Proctor", "data" : [ [ "Perl 6", - 11 + 10 ], + [ + "Perl 5", + 10 + ] + ], + "name" : "Jaldhar H. Vyas", + "id" : "Jaldhar H. Vyas" + }, + { + "data" : [ [ "Perl 5", 4 @@ -66,42 +321,50 @@ [ "Blog", 4 + ], + [ + "Perl 6", + 11 ] - ] + ], + "name" : "Simon Proctor", + "id" : "Simon Proctor" }, { "id" : "Dr James A. Smith", "name" : "Dr James A. Smith", "data" : [ - [ - "Perl 5", - 10 - ], [ "Perl 6", 8 + ], + [ + "Perl 5", + 10 ] ] }, { + "id" : "Jo Christian Oterhals", + "name" : "Jo Christian Oterhals", "data" : [ - [ - "Blog", - 4 - ], [ "Perl 5", 6 ], + [ + "Blog", + 4 + ], [ "Perl 6", 8 ] - ], - "id" : "Jo Christian Oterhals", - "name" : "Jo Christian Oterhals" + ] }, { + "name" : "Nick Logan", + "id" : "Nick Logan", "data" : [ [ "Perl 6", @@ -111,18 +374,16 @@ "Perl 5", 8 ] - ], - "name" : "Nick Logan", - "id" : "Nick Logan" + ] }, { "data" : [ [ - "Perl 5", + "Perl 6", 8 ], [ - "Perl 6", + "Perl 5", 8 ] ], @@ -130,50 +391,50 @@ "name" : "Ruben Westerberg" }, { + "id" : "Adam Russell", + "name" : "Adam Russell", "data" : [ - [ - "Perl 5", - 10 - ], [ "Blog", 5 + ], + [ + "Perl 5", + 10 ] - ], - "name" : "Adam Russell", - "id" : "Adam Russell" + ] }, { - "id" : "Lars Balker", "name" : "Lars Balker", + "id" : "Lars Balker", "data" : [ - [ - "Perl 6", - 4 - ], [ "Perl 5", 10 + ], + [ + "Perl 6", + 4 ] ] }, { - "id" : "Gustavo Chaves", - "name" : "Gustavo Chaves", "data" : [ - [ - "Perl 5", - 9 - ], [ "Blog", 4 + ], + [ + "Perl 5", + 9 ] - ] + ], + "id" : "Gustavo Chaves", + "name" : "Gustavo Chaves" }, { - "id" : "Mark Senn", "name" : "Mark Senn", + "id" : "Mark Senn", "data" : [ [ "Perl 6", @@ -192,34 +453,36 @@ 12 ] ], - "name" : "Andrezgz", - "id" : "Andrezgz" + "id" : "Andrezgz", + "name" : "Andrezgz" }, { - "name" : "Arne Sommer", "id" : "Arne Sommer", + "name" : "Arne Sommer", "data" : [ - [ - "Perl 6", - 8 - ], [ "Blog", 4 + ], + [ + "Perl 6", + 8 ] ] }, { + "id" : "Athanasius", + "name" : "Athanasius", "data" : [ [ "Perl 5", 12 ] - ], - "name" : "Athanasius", - "id" : "Athanasius" + ] }, { + "name" : "Kian-Meng Ang", + "id" : "Kian-Meng Ang", "data" : [ [ "Blog", @@ -229,71 +492,69 @@ "Perl 5", 8 ] - ], - "name" : "Kian-Meng Ang", - "id" : "Kian-Meng Ang" + ] }, { + "id" : "Doug Schrag", + "name" : "Doug Schrag", "data" : [ [ "Perl 6", 10 ] - ], - "name" : "Doug Schrag", - "id" : "Doug Schrag" + ] }, { "data" : [ - [ - "Blog", - 3 - ], [ "Perl 6", 6 + ], + [ + "Blog", + 3 ] ], "id" : "Francis Whittle", "name" : "Francis Whittle" }, { - "name" : "Duncan C. White", - "id" : "Duncan C. White", "data" : [ [ "Perl 5", 8 ] - ] + ], + "name" : "Duncan C. White", + "id" : "Duncan C. White" }, { - "name" : "Robert Gratza", - "id" : "Robert Gratza", "data" : [ - [ - "Perl 5", - 2 - ], [ "Perl 6", 6 + ], + [ + "Perl 5", + 2 ] - ] + ], + "id" : "Robert Gratza", + "name" : "Robert Gratza" }, { + "name" : "John Barrett", + "id" : "John Barrett", "data" : [ [ "Perl 5", 7 ] - ], - "name" : "John Barrett", - "id" : "John Barrett" + ] }, { - "id" : "Daniel Mantovani", "name" : "Daniel Mantovani", + "id" : "Daniel Mantovani", "data" : [ [ "Perl 5", @@ -303,13 +564,13 @@ }, { "data" : [ - [ - "Blog", - 2 - ], [ "Perl 5", 4 + ], + [ + "Blog", + 2 ] ], "name" : "Philippe Bruhat", @@ -340,18 +601,16 @@ "id" : "Khalid" }, { - "name" : "Maxim Kolodyazhny", - "id" : "Maxim Kolodyazhny", "data" : [ [ "Perl 5", 5 ] - ] + ], + "id" : "Maxim Kolodyazhny", + "name" : "Maxim Kolodyazhny" }, { - "name" : "Steve Rogerson", - "id" : "Steve Rogerson", "data" : [ [ "Perl 6", @@ -361,21 +620,23 @@ "Perl 5", 3 ] - ] + ], + "name" : "Steve Rogerson", + "id" : "Steve Rogerson" }, { - "name" : "Veesh Goldman", - "id" : "Veesh Goldman", "data" : [ [ "Perl 5", 5 ] - ] + ], + "name" : "Veesh Goldman", + "id" : "Veesh Goldman" }, { - "id" : "Alex Daniel", "name" : "Alex Daniel", + "id" : "Alex Daniel", "data" : [ [ "Perl 6", @@ -384,18 +645,18 @@ ] }, { - "name" : "Arpad Toth", - "id" : "Arpad Toth", "data" : [ [ "Perl 5", 4 ] - ] + ], + "name" : "Arpad Toth", + "id" : "Arpad Toth" }, { - "name" : "Bob Kleemann", "id" : "Bob Kleemann", + "name" : "Bob Kleemann", "data" : [ [ "Perl 5", @@ -404,14 +665,14 @@ ] }, { - "name" : "Chenyf", - "id" : "Chenyf", "data" : [ [ "Perl 6", 4 ] - ] + ], + "name" : "Chenyf", + "id" : "Chenyf" }, { "data" : [ @@ -420,8 +681,8 @@ 4 ] ], - "name" : "David Kayal", - "id" : "David Kayal" + "id" : "David Kayal", + "name" : "David Kayal" }, { "data" : [ @@ -430,38 +691,38 @@ 4 ] ], - "name" : "Jaime Corchado", - "id" : "Jaime Corchado" + "id" : "Jaime Corchado", + "name" : "Jaime Corchado" }, { + "id" : "Matt Latusek", + "name" : "Matt Latusek", "data" : [ [ "Perl 5", 4 ] - ], - "id" : "Matt Latusek", - "name" : "Matt Latusek" + ] }, { - "name" : "Ozzy", - "id" : "Ozzy", "data" : [ [ "Perl 6", 4 ] - ] + ], + "name" : "Ozzy", + "id" : "Ozzy" }, { - "name" : "Simon Reinhardt", - "id" : "Simon Reinhardt", "data" : [ [ "Perl 5", 4 ] - ] + ], + "name" : "Simon Reinhardt", + "id" : "Simon Reinhardt" }, { "data" : [ @@ -484,28 +745,28 @@ ] }, { + "name" : "Ailbhe Tweedie", + "id" : "Ailbhe Tweedie", "data" : [ [ "Perl 5", 3 ] - ], - "name" : "Ailbhe Tweedie", - "id" : "Ailbhe Tweedie" + ] }, { - "name" : "Alicia Bielsa", - "id" : "Alicia Bielsa", "data" : [ [ "Perl 5", 3 ] - ] + ], + "name" : "Alicia Bielsa", + "id" : "Alicia Bielsa" }, { - "name" : "Dave Cross", "id" : "Dave Cross", + "name" : "Dave Cross", "data" : [ [ "Perl 5", @@ -518,30 +779,30 @@ ] }, { - "name" : "Dave Jacoby", - "id" : "Dave Jacoby", "data" : [ - [ - "Blog", - 2 - ], [ "Perl 5", 1 + ], + [ + "Blog", + 2 ] - ] + ], + "name" : "Dave Jacoby", + "id" : "Dave Jacoby" }, { - "id" : "E. Choroba", "name" : "E. Choroba", + "id" : "E. Choroba", "data" : [ - [ - "Blog", - 1 - ], [ "Perl 5", 2 + ], + [ + "Blog", + 1 ] ] }, @@ -556,8 +817,6 @@ "id" : "Freddie B" }, { - "name" : "Jeremy Carman", - "id" : "Jeremy Carman", "data" : [ [ "Perl 5", @@ -567,340 +826,81 @@ "Perl 6", 1 ] - ] + ], + "name" : "Jeremy Carman", + "id" : "Jeremy Carman" }, { - "id" : "Kivanc Yazan", - "name" : "Kivanc Yazan", "data" : [ [ "Perl 5", 3 ] - ] + ], + "id" : "Kivanc Yazan", + "name" : "Kivanc Yazan" }, { + "id" : "Neil Bowers", + "name" : "Neil Bowers", "data" : [ [ "Perl 5", 3 ] - ], - "name" : "Neil Bowers", - "id" : "Neil Bowers" + ] }, { - "id" : "Pete Houston", - "name" : "Pete Houston", "data" : [ [ "Perl 5", 3 ] - ] + ], + "id" : "Pete Houston", + "name" : "Pete Houston" }, { - "id" : "Sean Meininger", - "name" : "Sean Meininger", "data" : [ [ "Perl 6", 3 ] - ] + ], + "id" : "Sean Meininger", + "name" : "Sean Meininger" } ] }, - "chart" : { - "type" : "column" - }, - "legend" : { - "enabled" : "false" - }, "plotOptions" : { "series" : { "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 + "enabled" : 1, + "format" : "{point.y}" }, "borderWidth" : 0 } }, - "tooltip" : { - "followPointer" : "true", - "headerFormat" : "", - "pointFormat" : "{point.name}: {point.y:f}
" + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-05-02 13:28:42 GMT" }, - "series" : [ - { - "name" : "Perl Weekly Challenge Leaders", - "colorByPoint" : "true", - "data" : [ - { - "drilldown" : "Joelle Maslak", - "name" : "#1: Joelle Maslak", - "y" : 50 - }, - { - "y" : 48, - "drilldown" : "Laurent Rosenfeld", - "name" : "#2: Laurent Rosenfeld" - }, - { - "y" : 40, - "drilldown" : "Jaldhar H. Vyas", - "name" : "#3: Jaldhar H. Vyas" - }, - { - "y" : 38, - "name" : "#4: Simon Proctor", - "drilldown" : "Simon Proctor" - }, - { - "drilldown" : "Dr James A. Smith", - "name" : "#5: Dr James A. Smith", - "y" : 36 - }, - { - "y" : 36, - "name" : "#6: Jo Christian Oterhals", - "drilldown" : "Jo Christian Oterhals" - }, - { - "y" : 32, - "name" : "#7: Nick Logan", - "drilldown" : "Nick Logan" - }, - { - "y" : 32, - "drilldown" : "Ruben Westerberg", - "name" : "#8: Ruben Westerberg" - }, - { - "y" : 30, - "name" : "#9: Adam Russell", - "drilldown" : "Adam Russell" - }, - { - "y" : 28, - "drilldown" : "Lars Balker", - "name" : "#10: Lars Balker" - }, - { - "y" : 26, - "drilldown" : "Gustavo Chaves", - "name" : "#11: Gustavo Chaves" - }, - { - "y" : 26, - "name" : "#12: Mark Senn", - "drilldown" : "Mark Senn" - }, - { - "name" : "#13: Andrezgz", - "drilldown" : "Andrezgz", - "y" : 24 - }, - { - "y" : 24, - "drilldown" : "Arne Sommer", - "name" : "#14: Arne Sommer" - }, - { - "drilldown" : "Athanasius", - "name" : "#15: Athanasius", - "y" : 24 - }, - { - "drilldown" : "Kian-Meng Ang", - "name" : "#16: Kian-Meng Ang", - "y" : 24 - }, - { - "name" : "#17: Doug Schrag", - "drilldown" : "Doug Schrag", - "y" : 20 - }, - { - "name" : "#18: Francis Whittle", - "drilldown" : "Francis Whittle", - "y" : 18 - }, - { - "name" : "#19: Duncan C. White", - "drilldown" : "Duncan C. White", - "y" : 16 - }, - { - "y" : 16, - "name" : "#20: Robert Gratza", - "drilldown" : "Robert Gratza" - }, - { - "y" : 14, - "drilldown" : "John Barrett", - "name" : "#21: John Barrett" - }, - { - "name" : "#22: Daniel Mantovani", - "drilldown" : "Daniel Mantovani", - "y" : 12 - }, - { - "drilldown" : "Philippe Bruhat", - "name" : "#23: Philippe Bruhat", - "y" : 12 - }, - { - "drilldown" : "Sergio Iglesias", - "name" : "#24: Sergio Iglesias", - "y" : 12 - }, - { - "drilldown" : "Khalid", - "name" : "#25: Khalid", - "y" : 10 - }, - { - "drilldown" : "Maxim Kolodyazhny", - "name" : "#26: Maxim Kolodyazhny", - "y" : 10 - }, - { - "y" : 10, - "drilldown" : "Steve Rogerson", - "name" : "#27: Steve Rogerson" - }, - { - "y" : 10, - "drilldown" : "Veesh Goldman", - "name" : "#28: Veesh Goldman" - }, - { - "name" : "#29: Alex Daniel", - "drilldown" : "Alex Daniel", - "y" : 8 - }, - { - "name" : "#30: Arpad Toth", - "drilldown" : "Arpad Toth", - "y" : 8 - }, - { - "name" : "#31: Bob Kleemann", - "drilldown" : "Bob Kleemann", - "y" : 8 - }, - { - "y" : 8, - "name" : "#32: Chenyf", - "drilldown" : "Chenyf" - }, - { - "y" : 8, - "name" : "#33: David Kayal", - "drilldown" : "David Kayal" - }, - { - "y" : 8, - "drilldown" : "Jaime Corchado", - "name" : "#34: Jaime Corchado" - }, - { - "drilldown" : "Matt Latusek", - "name" : "#35: Matt Latusek", - "y" : 8 - }, - { - "y" : 8, - "name" : "#36: Ozzy", - "drilldown" : "Ozzy" - }, - { - "y" : 8, - "drilldown" : "Simon Reinhardt", - "name" : "#37: Simon Reinhardt" - }, - { - "y" : 8, - "drilldown" : "Steven Wilson", - "name" : "#38: Steven Wilson" - }, - { - "name" : "#39: Tim Smith", - "drilldown" : "Tim Smith", - "y" : 8 - }, - { - "y" : 6, - "name" : "#40: Ailbhe Tweedie", - "drilldown" : "Ailbhe Tweedie" - }, - { - "y" : 6, - "name" : "#41: Alicia Bielsa", - "drilldown" : "Alicia Bielsa" - }, - { - "y" : 6, - "drilldown" : "Dave Cross", - "name" : "#42: Dave Cross" - }, - { - "y" : 6, - "drilldown" : "Dave Jacoby", - "name" : "#43: Dave Jacoby" - }, - { - "y" : 6, - "name" : "#44: E. Choroba", - "drilldown" : "E. Choroba" - }, - { - "y" : 6, - "drilldown" : "Freddie B", - "name" : "#45: Freddie B" - }, - { - "y" : 6, - "name" : "#46: Jeremy Carman", - "drilldown" : "Jeremy Carman" - }, - { - "name" : "#47: Kivanc Yazan", - "drilldown" : "Kivanc Yazan", - "y" : 6 - }, - { - "drilldown" : "Neil Bowers", - "name" : "#48: Neil Bowers", - "y" : 6 - }, - { - "y" : 6, - "drilldown" : "Pete Houston", - "name" : "#49: Pete Houston" - }, - { - "name" : "#50: Sean Meininger", - "drilldown" : "Sean Meininger", - "y" : 6 - } - ] - } - ], - "xAxis" : { - "type" : "category" + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" }, "yAxis" : { "title" : { "text" : "Total Score" } }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-05-02 09:52:43 GMT" + "legend" : { + "enabled" : "false" }, - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" + "chart" : { + "type" : "column" + }, + "tooltip" : { + "followPointer" : "true", + "headerFormat" : "", + "pointFormat" : "{point.name}: {point.y:f}
" } } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index cac751188d..77a26faae3 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -1,53 +1,4 @@ { - "xAxis" : { - "categories" : [ - "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", - "Dave Cross", - "Dave Jacoby", - "David Kayal", - "Doug Schrag", - "Duncan C. White", - "E. Choroba", - "Eddy HS", - "Finley", - "Francis Whittle", - "Fred Zinn", - "Freddie B", - "Guillermo Ramos", - "Gustavo Chaves" - ] - }, - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-05-02 09:52:36 GMT" - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "chart" : { - "type" : "column" - }, "series" : [ { "data" : [ @@ -85,6 +36,7 @@ "name" : "Perl 5" }, { + "name" : "Perl 6", "data" : [ 0, 0, @@ -116,17 +68,65 @@ 0, 0, 0 - ], - "name" : "Perl 6" + ] } ], - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "chart" : { + "type" : "column" }, "yAxis" : { + "min" : 0, "title" : { "text" : "" - }, - "min" : 0 + } + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-05-02 13:28:30 GMT" + }, + "xAxis" : { + "categories" : [ + "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", + "Dave Cross", + "Dave Jacoby", + "David Kayal", + "Doug Schrag", + "Duncan C. White", + "E. Choroba", + "Eddy HS", + "Finley", + "Francis Whittle", + "Fred Zinn", + "Freddie B", + "Guillermo Ramos", + "Gustavo Chaves" + ] } } diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index 9833d15ebb..0143c47835 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -1,21 +1,10 @@ { - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-05-02 09:52:36 GMT" - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, "chart" : { "type" : "column" }, "series" : [ { + "name" : "Perl 5", "data" : [ 0, 4, @@ -33,7 +22,7 @@ 8, 3, 10, - 10, + 11, 1, 0, 0, @@ -47,11 +36,9 @@ 0, 2, 3 - ], - "name" : "Perl 5" + ] }, { - "name" : "Perl 6", "data" : [ 0, 0, @@ -69,7 +56,7 @@ 0, 0, 4, - 9, + 10, 1, 10, 2, @@ -83,9 +70,28 @@ 4, 0, 0 - ] + ], + "name" : "Perl 6" } ], + "tooltip" : { + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" + } + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, "xAxis" : { "categories" : [ "Jacques Guinnebault", @@ -120,13 +126,7 @@ "Pete Houston" ] }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-05-02 13:28:30 GMT" } } diff --git a/stats/pwc-summary-61-90.json b/stats/pwc-summary-61-90.json index 8d90a838d5..7a1f3e8bcc 100644 --- a/stats/pwc-summary-61-90.json +++ b/stats/pwc-summary-61-90.json @@ -1,14 +1,38 @@ { "subtitle" : { - "text" : "[Champions: 17] Last updated at 2019-05-02 09:52:36 GMT" + "text" : "[Champions: 17] Last updated at 2019-05-02 13:28:30 GMT" }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" + "xAxis" : { + "categories" : [ + "Philippe Bruhat", + "Prajith P", + "Robert Gratza", + "Ruben Westerberg", + "Sean Meininger", + "Sergio Iglesias", + "Simon Proctor", + "Simon Reinhardt", + "Steve Rogerson", + "Steven Lembark", + "Steven Wilson", + "Tiago Stock", + "Tim Smith", + "Tore Andersson", + "Veesh Goldman", + "William Gilmore", + "Yary H" + ] + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } }, "series" : [ { - "name" : "Perl 5", "data" : [ 4, 2, @@ -27,10 +51,10 @@ 5, 1, 1 - ] + ], + "name" : "Perl 5" }, { - "name" : "Perl 6", "data" : [ 0, 0, @@ -49,45 +73,21 @@ 0, 0, 1 - ] + ], + "name" : "Perl 6" } ], - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, "chart" : { "type" : "column" }, - "xAxis" : { - "categories" : [ - "Philippe Bruhat", - "Prajith P", - "Robert Gratza", - "Ruben Westerberg", - "Sean Meininger", - "Sergio Iglesias", - "Simon Proctor", - "Simon Reinhardt", - "Steve Rogerson", - "Steven Lembark", - "Steven Wilson", - "Tiago Stock", - "Tim Smith", - "Tore Andersson", - "Veesh Goldman", - "William Gilmore", - "Yary H" - ] - }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" }, "yAxis" : { + "min" : 0, "title" : { "text" : "" - }, - "min" : 0 + } } } diff --git a/stats/pwc-summary.json b/stats/pwc-summary.json index 9bb6d21b20..0c5e6d6a28 100644 --- a/stats/pwc-summary.json +++ b/stats/pwc-summary.json @@ -1,101 +1,15 @@ { - "chart" : { - "type" : "column" - }, - "subtitle" : { - "text" : "[Champions: 77] Last updated at 2019-05-02 09:52:35 GMT" - }, "plotOptions" : { "column" : { "stacking" : "percent" } }, - "xAxis" : { - "categories" : [ - "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", - "Dave Cross", - "Dave Jacoby", - "David Kayal", - "Doug Schrag", - "Duncan C. White", - "E. Choroba", - "Eddy HS", - "Finley", - "Francis Whittle", - "Fred Zinn", - "Freddie B", - "Guillermo Ramos", - "Gustavo Chaves", - "Jacques Guinnebault", - "Jaime Corchado", - "Jaldhar H. Vyas", - "Dr James A. Smith", - "Jeff", - "Jeremy Carman", - "Jim Bacon", - "JJ Merelo", - "Jo Christian Oterhals", - "Joelle Maslak", - "John Barrett", - "Juan Caballero", - "Khalid", - "Kian-Meng Ang", - "Kivanc Yazan", - "Lars Balker", - "Laurent Rosenfeld", - "Magnus Woldrich", - "Mark Senn", - "Martin Mugeni", - "Matt Latusek", - "Maxim Kolodyazhny", - "Michael Schaap", - "Neil Bowers", - "Nick Logan", - "Chenyf", - "Oleksii Tsvietnov", - "Ozzy", - "Pavel Jurca", - "Pete Houston", - "Philippe Bruhat", - "Prajith P", - "Robert Gratza", - "Ruben Westerberg", - "Sean Meininger", - "Sergio Iglesias", - "Simon Proctor", - "Simon Reinhardt", - "Steve Rogerson", - "Steven Lembark", - "Steven Wilson", - "Tiago Stock", - "Tim Smith", - "Tore Andersson", - "Veesh Goldman", - "William Gilmore", - "Yary H" - ] - }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "subtitle" : { + "text" : "[Champions: 77] Last updated at 2019-05-02 13:28:30 GMT" }, "series" : [ { + "name" : "Perl 5", "data" : [ 2, 10, @@ -143,7 +57,7 @@ 8, 3, 10, - 10, + 11, 1, 0, 0, @@ -174,8 +88,7 @@ 5, 1, 1 - ], - "name" : "Perl 5" + ] }, { "data" : [ @@ -225,7 +138,7 @@ 0, 0, 4, - 9, + 10, 1, 10, 2, @@ -260,14 +173,101 @@ "name" : "Perl 6" } ], - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 - }, "yAxis" : { + "min" : 0, "title" : { "text" : "" - }, - "min" : 0 + } + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "xAxis" : { + "categories" : [ + "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", + "Dave Cross", + "Dave Jacoby", + "David Kayal", + "Doug Schrag", + "Duncan C. White", + "E. Choroba", + "Eddy HS", + "Finley", + "Francis Whittle", + "Fred Zinn", + "Freddie B", + "Guillermo Ramos", + "Gustavo Chaves", + "Jacques Guinnebault", + "Jaime Corchado", + "Jaldhar H. Vyas", + "Dr James A. Smith", + "Jeff", + "Jeremy Carman", + "Jim Bacon", + "JJ Merelo", + "Jo Christian Oterhals", + "Joelle Maslak", + "John Barrett", + "Juan Caballero", + "Khalid", + "Kian-Meng Ang", + "Kivanc Yazan", + "Lars Balker", + "Laurent Rosenfeld", + "Magnus Woldrich", + "Mark Senn", + "Martin Mugeni", + "Matt Latusek", + "Maxim Kolodyazhny", + "Michael Schaap", + "Neil Bowers", + "Nick Logan", + "Chenyf", + "Oleksii Tsvietnov", + "Ozz