From 4f3deee0773ee5d5c2c3832278cf4bb0a33c7a57 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Wed, 19 Jun 2019 11:31:11 +0100 Subject: - Added solutions by Laurent Rosenfeld. --- challenge-013/laurent-rosenfeld/blog.txt | 1 + challenge-013/laurent-rosenfeld/perl5/ch-1.pl | 19 + challenge-013/laurent-rosenfeld/perl5/ch-1a.pl | 26 + challenge-013/laurent-rosenfeld/perl5/ch-2.pl | 21 + challenge-013/laurent-rosenfeld/perl5/ch-2a.pl | 21 + challenge-013/laurent-rosenfeld/perl6/ch-1.p6 | 19 + challenge-013/laurent-rosenfeld/perl6/ch-2.p6 | 15 + challenge-013/laurent-rosenfeld/perl6/ch-2a.p6 | 15 + stats/pwc-current.json | 145 +++-- stats/pwc-language-breakdown-summary.json | 68 +-- stats/pwc-language-breakdown.json | 226 +++---- stats/pwc-leaders.json | 814 ++++++++++++------------- stats/pwc-summary-1-30.json | 102 ++-- stats/pwc-summary-31-60.json | 114 ++-- stats/pwc-summary-61-90.json | 44 +- stats/pwc-summary-91-120.json | 42 +- stats/pwc-summary.json | 56 +- 17 files changed, 954 insertions(+), 794 deletions(-) create mode 100644 challenge-013/laurent-rosenfeld/blog.txt create mode 100644 challenge-013/laurent-rosenfeld/perl5/ch-1.pl create mode 100644 challenge-013/laurent-rosenfeld/perl5/ch-1a.pl create mode 100644 challenge-013/laurent-rosenfeld/perl5/ch-2.pl create mode 100644 challenge-013/laurent-rosenfeld/perl5/ch-2a.pl create mode 100644 challenge-013/laurent-rosenfeld/perl6/ch-1.p6 create mode 100644 challenge-013/laurent-rosenfeld/perl6/ch-2.p6 create mode 100644 challenge-013/laurent-rosenfeld/perl6/ch-2a.p6 diff --git a/challenge-013/laurent-rosenfeld/blog.txt b/challenge-013/laurent-rosenfeld/blog.txt new file mode 100644 index 0000000000..6aefa9f2cb --- /dev/null +++ b/challenge-013/laurent-rosenfeld/blog.txt @@ -0,0 +1 @@ +http://blogs.perl.org/users/laurent_r/2019/06/perl-weekly-challenge-13-fridays-and-mutually-recursive-subroutines.html diff --git a/challenge-013/laurent-rosenfeld/perl5/ch-1.pl b/challenge-013/laurent-rosenfeld/perl5/ch-1.pl new file mode 100644 index 0000000000..a6dc05c549 --- /dev/null +++ b/challenge-013/laurent-rosenfeld/perl5/ch-1.pl @@ -0,0 +1,19 @@ +#!/usr/bin/perl +use strict; +use warnings; +use feature "say"; +use Time::Local qw/timegm_nocheck/ ; + + +my $year = shift // 2019; +for my $month (0..11) { + my @last_friday; + for my $day (20..31) { + my $epoch = + timegm_nocheck(0, 0, 12, $day, $month, $year - 1900); + my @date_details = gmtime $epoch; + last if $date_details[3] != $day; + @last_friday = @date_details if $date_details[6] == 5; + } + printf "%d/%02d/%d\n", $year, $month + 1, $last_friday[3]; +} diff --git a/challenge-013/laurent-rosenfeld/perl5/ch-1a.pl b/challenge-013/laurent-rosenfeld/perl5/ch-1a.pl new file mode 100644 index 0000000000..e4795b3c6e --- /dev/null +++ b/challenge-013/laurent-rosenfeld/perl5/ch-1a.pl @@ -0,0 +1,26 @@ +#!/usr/bin/perl +use strict; +use warnings; +use feature "say"; +use Time::Local; + +sub is_leap_year { + my $year = shift; + return $year % 4 == 0; # works for years between 1901 and 2099 +} + +my @month_lengths = qw/ 31 28 31 30 31 30 31 31 30 31 30 31/; +my $year = shift // 2019; + +for my $month (0..11) { + my $month_length = $month_lengths[$month]; + $month_length = 29 if $month == 1 + and is_leap_year $year; # Feb is 1 + my @last_friday; + for my $day (20..$month_length) { + my $epoch = timegm(0, 0, 12, $day, $month, $year - 1900); + my @date_details = gmtime $epoch; + @last_friday = @date_details if $date_details[6] == 5; + } + printf "%d/%02d/%d\n", $year, $month + 1, $last_friday[3]; +} diff --git a/challenge-013/laurent-rosenfeld/perl5/ch-2.pl b/challenge-013/laurent-rosenfeld/perl5/ch-2.pl new file mode 100644 index 0000000000..5b67ade8ed --- /dev/null +++ b/challenge-013/laurent-rosenfeld/perl5/ch-2.pl @@ -0,0 +1,21 @@ +#!/usr/bin/perl +use strict; +use warnings; +use feature "say"; + +sub female { + my $n = shift; + return 1 if $n == 0; # base case + return $n - male (female ($n - 1)); +} +sub male { + my $n = shift; + return 0 if $n == 0; #base case + return $n - female (male ($n - 1)); +} +say "Female sequence: "; +printf "%d ", female $_ for 0..30; +say ""; +say "Male sequence:"; +printf "%d ", male $_ for 0..30; +say ""; diff --git a/challenge-013/laurent-rosenfeld/perl5/ch-2a.pl b/challenge-013/laurent-rosenfeld/perl5/ch-2a.pl new file mode 100644 index 0000000000..a54ca1c19d --- /dev/null +++ b/challenge-013/laurent-rosenfeld/perl5/ch-2a.pl @@ -0,0 +1,21 @@ +#!/usr/bin/perl +use strict; +use warnings; +use feature "say"; +no warnings "recursion"; +use Memoize; + +memoize('female', 'male'); + +sub female { + my $n = shift; + return 1 if $n == 0; # base case + return $n - male (female ($n - 1)); +} +sub male { + my $n = shift; + return 0 if $n == 0; #base case + return $n - female (male ($n - 1)); +} +say "Female sequence: "; +say female shift; diff --git a/challenge-013/laurent-rosenfeld/perl6/ch-1.p6 b/challenge-013/laurent-rosenfeld/perl6/ch-1.p6 new file mode 100644 index 0000000000..82ed14d21a --- /dev/null +++ b/challenge-013/laurent-rosenfeld/perl6/ch-1.p6 @@ -0,0 +1,19 @@ +use v6; + +sub MAIN (UInt $year = 2019) { + my $year-length = + DateTime.new(:year($year)).is-leap-year ?? 366 !! 365; + my $day = Date.new("$year-01-01"); + my $month = 1; + my $last-friday; + for 1..$year-length { + $day = $day.succ; + next unless $day.day-of-week == 5; + if $day.month != $month { + $month = $day.month; + say $last-friday; + } + $last-friday = $day; + } + say $last-friday; +} diff --git a/challenge-013/laurent-rosenfeld/perl6/ch-2.p6 b/challenge-013/laurent-rosenfeld/perl6/ch-2.p6 new file mode 100644 index 0000000000..9a107feeec --- /dev/null +++ b/challenge-013/laurent-rosenfeld/perl6/ch-2.p6 @@ -0,0 +1,15 @@ +use v6; + +sub female (UInt:D $n) { + return 1 if $n == 0; # base case + return $n - male (female ($n - 1)); +} +sub male (UInt:D $n) { + return 0 if $n == 0; #base case + return $n - female (male ($n - 1)); +} +say "Female sequence:"; +printf "%d ", female $_ for 0..30; +say ""; +say "Male sequence:"; +printf "%d ", male $_ for 0..30; diff --git a/challenge-013/laurent-rosenfeld/perl6/ch-2a.p6 b/challenge-013/laurent-rosenfeld/perl6/ch-2a.p6 new file mode 100644 index 0000000000..3bebf1379b --- /dev/null +++ b/challenge-013/laurent-rosenfeld/perl6/ch-2a.p6 @@ -0,0 +1,15 @@ +use v6; + +multi sub female (0) { 1; } # base case +multi sub female (UInt:D $n) { + return $n - male (female ($n - 1)); +} +multi sub male (0) { 0; } # base case +multi sub male (UInt:D $n) { + return $n - female (male ($n - 1)); +} +say "Female sequence:"; +printf "%d ", female $_ for 0..30; +say ""; +say "Male sequence:"; +printf "%d ", male $_ for 0..30; diff --git a/stats/pwc-current.json b/stats/pwc-current.json index f1bd8cd396..416b9c9497 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -2,37 +2,36 @@ "drilldown" : { "series" : [ { + "id" : "Andrezgz", "name" : "Andrezgz", "data" : [ [ "Perl 5", 2 ] - ], - "id" : "Andrezgz" + ] }, { + "id" : "Dave Jacoby", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Dave Jacoby", - "id" : "Dave Jacoby" + "name" : "Dave Jacoby" }, { + "id" : "Gustavo Chaves", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Gustavo Chaves", - "id" : "Gustavo Chaves" + "name" : "Gustavo Chaves" }, { - "id" : "Joelle Maslak", "name" : "Joelle Maslak", "data" : [ [ @@ -43,83 +42,75 @@ "Perl 6", 2 ] - ] + ], + "id" : "Joelle Maslak" }, { "id" : "Kevin Colyer", + "name" : "Kevin Colyer", + "data" : [ + [ + "Perl 6", + 2 + ] + ] + }, + { "data" : [ + [ + "Perl 5", + 2 + ], [ "Perl 6", 2 + ], + [ + "Blog", + 1 ] ], - "name" : "Kevin Colyer" + "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld" }, { - "name" : "Ozzy", + "id" : "Ozzy", "data" : [ [ "Perl 6", 1 ] ], - "id" : "Ozzy" + "name" : "Ozzy" }, { - "id" : "Pete Houston", "name" : "Pete Houston", "data" : [ [ "Perl 5", 1 ] - ] + ], + "id" : "Pete Houston" }, { + "id" : "Simon Proctor", "name" : "Simon Proctor", "data" : [ [ "Perl 6", 2 ] - ], - "id" : "Simon Proctor" + ] } ] }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "chart" : { - "type" : "column" - }, - "title" : { - "text" : "Perl Weekly Challenge - 013" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, - "subtitle" : { - "text" : "[Champions: 8] Last updated at 2019-06-19 10:20:31 GMT" - }, - "tooltip" : { - "headerFormat" : "{series.name}
", - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1 - }, - "xAxis" : { - "type" : "category" + "legend" : { + "enabled" : 0 }, "series" : [ { + "name" : "Perl Weekly Challenge - 013", "colorByPoint" : 1, "data" : [ { @@ -128,45 +119,77 @@ "name" : "Andrezgz" }, { + "name" : "Dave Jacoby", "y" : 2, - "drilldown" : "Dave Jacoby", - "name" : "Dave Jacoby" + "drilldown" : "Dave Jacoby" }, { "y" : 2, - "drilldown" : "Gustavo Chaves", - "name" : "Gustavo Chaves" + "name" : "Gustavo Chaves", + "drilldown" : "Gustavo Chaves" }, { - "name" : "Joelle Maslak", "drilldown" : "Joelle Maslak", + "name" : "Joelle Maslak", "y" : 4 }, { - "drilldown" : "Kevin Colyer", "y" : 2, - "name" : "Kevin Colyer" + "name" : "Kevin Colyer", + "drilldown" : "Kevin Colyer" + }, + { + "name" : "Laurent Rosenfeld", + "y" : 5, + "drilldown" : "Laurent Rosenfeld" }, { - "name" : "Ozzy", "drilldown" : "Ozzy", + "name" : "Ozzy", "y" : 1 }, { - "drilldown" : "Pete Houston", "y" : 1, - "name" : "Pete Houston" + "name" : "Pete Houston", + "drilldown" : "Pete Houston" }, { - "y" : 2, "drilldown" : "Simon Proctor", - "name" : "Simon Proctor" + "name" : "Simon Proctor", + "y" : 2 } - ], - "name" : "Perl Weekly Challenge - 013" + ] } ], - "legend" : { - "enabled" : 0 + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } + } + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "chart" : { + "type" : "column" + }, + "tooltip" : { + "headerFormat" : "{series.name}
", + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
" + }, + "xAxis" : { + "type" : "category" + }, + "subtitle" : { + "text" : "[Champions: 9] Last updated at 2019-06-19 10:30:50 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge - 013" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 10d30de95d..57a3ec5f84 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,63 +1,63 @@ { - "legend" : { - "enabled" : "false" - }, - "xAxis" : { - "labels" : { - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - } - }, - "type" : "category" - }, "yAxis" : { "min" : 0, "title" : { "text" : null } }, - "title" : { - "text" : "Perl Weekly Challenge Contributions - 2019" - }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - }, - "chart" : { - "type" : "column" - }, - "subtitle" : { - "text" : "Last updated at 2019-06-19 10:13:28 GMT" - }, "series" : [ { "dataLabels" : { + "enabled" : "true", "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" }, + "color" : "#FFFFFF", + "y" : 10, "format" : "{point.y:.0f}", - "enabled" : "true", - "rotation" : -90, "align" : "right", - "y" : 10, - "color" : "#FFFFFF" + "rotation" : -90 }, "data" : [ [ "Blog", - 107 + 108 ], [ "Perl 5", - 497 + 501 ], [ "Perl 6", - 296 + 298 ] ], "name" : "Contributions" } - ] + ], + "legend" : { + "enabled" : "false" + }, + "chart" : { + "type" : "column" + }, + "xAxis" : { + "labels" : { + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + } + }, + "type" : "category" + }, + "tooltip" : { + "pointFormat" : "{point.y:.0f}" + }, + "subtitle" : { + "text" : "Last updated at 2019-06-19 10:31:01 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge Contributions - 2019" + } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 44996d81a7..3f601b70fd 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,4 +1,94 @@ { + "legend" : { + "enabled" : "false" + }, + "series" : [ + { + "name" : "Perl Weekly Challenge Languages", + "data" : [ + { + "y" : 123, + "name" : "#001", + "drilldown" : "001" + }, + { + "drilldown" : "002", + "y" : 104, + "name" : "#002" + }, + { + "y" : 66, + "name" : "#003", + "drilldown" : "003" + }, + { + "y" : 84, + "name" : "#004", + "drilldown" : "004" + }, + { + "y" : 66, + "name" : "#005", + "drilldown" : "005" + }, + { + "drilldown" : "006", + "y" : 47, + "name" : "#006" + }, + { + "y" : 54, + "name" : "#007", + "drilldown" : "007" + }, + { + "y" : 67, + "name" : "#008", + "drilldown" : "008" + }, + { + "name" : "#009", + "y" : 62, + "drilldown" : "009" + }, + { + "drilldown" : "010", + "name" : "#010", + "y" : 58 + }, + { + "drilldown" : "011", + "y" : 75, + "name" : "#011" + }, + { + "drilldown" : "012", + "name" : "#012", + "y" : 80 + }, + { + "drilldown" : "013", + "name" : "#013", + "y" : 21 + } + ], + "colorByPoint" : "true" + } + ], + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, "drilldown" : { "series" : [ { @@ -38,7 +128,6 @@ "id" : "002" }, { - "id" : "003", "name" : "003", "data" : [ [ @@ -53,9 +142,12 @@ "Blog", 8 ] - ] + ], + "id" : "003" }, { + "id" : "004", + "name" : "004", "data" : [ [ "Perl 5", @@ -69,11 +161,10 @@ "Blog", 9 ] - ], - "name" : "004", - "id" : "004" + ] }, { + "id" : "005", "name" : "005", "data" : [ [ @@ -88,8 +179,7 @@ "Blog", 11 ] - ], - "id" : "005" + ] }, { "id" : "006", @@ -128,7 +218,7 @@ "id" : "007" }, { - "id" : "008", + "name" : "008", "data" : [ [ "Perl 5", @@ -143,10 +233,10 @@ 9 ] ], - "name" : "008" + "id" : "008" }, { - "name" : "009", + "id" : "009", "data" : [ [ "Perl 5", @@ -161,7 +251,7 @@ 11 ] ], - "id" : "009" + "name" : "009" }, { "data" : [ @@ -182,6 +272,7 @@ "id" : "010" }, { + "id" : "011", "data" : [ [ "Perl 5", @@ -196,8 +287,7 @@ 8 ] ], - "name" : "011", - "id" : "011" + "name" : "011" }, { "name" : "012", @@ -222,126 +312,36 @@ "data" : [ [ "Perl 5", - 7 + 11 ], [ "Perl 6", - 7 + 9 ], [ "Blog", - 0 + 1 ] ], "name" : "013" } ] }, - "series" : [ - { - "colorByPoint" : "true", - "name" : "Perl Weekly Challenge Languages", - "data" : [ - { - "name" : "#001", - "y" : 123, - "drilldown" : "001" - }, - { - "drilldown" : "002", - "y" : 104, - "name" : "#002" - }, - { - "name" : "#003", - "drilldown" : "003", - "y" : 66 - }, - { - "drilldown" : "004", - "y" : 84, - "name" : "#004" - }, - { - "drilldown" : "005", - "y" : 66, - "name" : "#005" - }, - { - "drilldown" : "006", - "y" : 47, - "name" : "#006" - }, - { - "name" : "#007", - "y" : 54, - "drilldown" : "007" - }, - { - "y" : 67, - "drilldown" : "008", - "name" : "#008" - }, - { - "y" : 62, - "drilldown" : "009", - "name" : "#009" - }, - { - "drilldown" : "010", - "y" : 58, - "name" : "#010" - }, - { - "name" : "#011", - "y" : 75, - "drilldown" : "011" - }, - { - "drilldown" : "012", - "y" : 80, - "name" : "#012" - }, - { - "drilldown" : "013", - "y" : 14, - "name" : "#013" - } - ] - } - ], - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-19 10:13:28 GMT" + "title" : { + "text" : "Perl Weekly Challenge Language" }, "tooltip" : { "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "followPointer" : "true", - "headerFormat" : "" + "headerFormat" : "", + "followPointer" : "true" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-19 10:31:01 GMT" }, "chart" : { "type" : "column" }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, "xAxis" : { "type" : "category" - }, - "legend" : { - "enabled" : "false" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index db44a84d04..aaf3ba1297 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,333 +1,65 @@ { - "xAxis" : { - "type" : "category" - }, - "chart" : { - "type" : "column" + "legend" : { + "enabled" : "false" }, "plotOptions" : { "series" : { "borderWidth" : 0, "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" + "format" : "{point.y}", + "enabled" : 1 } } }, - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" - }, - "series" : [ - { - "name" : "Perl Weekly Challenge Leaders", - "data" : [ - { - "drilldown" : "Joelle Maslak", - "name" : "#1: Joelle Maslak", - "y" : 132 - }, - { - "name" : "#2: Laurent Rosenfeld", - "drilldown" : "Laurent Rosenfeld", - "y" : 122 - }, - { - "y" : 96, - "name" : "#3: Jaldhar H. Vyas", - "drilldown" : "Jaldhar H. Vyas" - }, - { - "drilldown" : "Ruben Westerberg", - "name" : "#4: Ruben Westerberg", - "y" : 84 - }, - { - "name" : "#5: Adam Russell", - "drilldown" : "Adam Russell", - "y" : 72 - }, - { - "drilldown" : "Arne Sommer", - "name" : "#6: Arne Sommer", - "y" : 64 - }, - { - "y" : 64, - "drilldown" : "Kian-Meng Ang", - "name" : "#7: Kian-Meng Ang" - }, - { - "y" : 64, - "name" : "#8: Simon Proctor", - "drilldown" : "Simon Proctor" - }, - { - "y" : 56, - "name" : "#9: Athanasius", - "drilldown" : "Athanasius" - }, - { - "y" : 54, - "drilldown" : "Gustavo Chaves", - "name" : "#10: Gustavo Chaves" - }, - { - "name" : "#11: Andrezgz", - "drilldown" : "Andrezgz", - "y" : 50 - }, - { - "drilldown" : "Francis Whittle", - "name" : "#12: Francis Whittle", - "y" : 50 - }, - { - "y" : 48, - "drilldown" : "Dave Jacoby", - "name" : "#13: Dave Jacoby" - }, - { - "name" : "#14: E. Choroba", - "drilldown" : "E. Choroba", - "y" : 48 - }, - { - "drilldown" : "Jo Christian Oterhals", - "name" : "#15: Jo Christian Oterhals", - "y" : 48 - }, - { - "name" : "#16: Dr James A. Smith", - "drilldown" : "Dr James A. Smith", - "y" : 44 - }, - { - "drilldown" : "Daniel Mantovani", - "name" : "#17: Daniel Mantovani", - "y" : 36 - }, - { - "name" : "#18: Duncan C. White", - "drilldown" : "Duncan C. White", - "y" : 36 - }, - { - "name" : "#19: Mark Senn", - "drilldown" : "Mark Senn", - "y" : 32 - }, - { - "drilldown" : "Nick Logan", - "name" : "#20: Nick Logan", - "y" : 32 - }, - { - "y" : 28, - "name" : "#21: Lars Balker", - "drilldown" : "Lars Balker" - }, - { - "y" : 28, - "drilldown" : "Yozen Hernandez", - "name" : "#22: Yozen Hernandez" - }, - { - "y" : 26, - "name" : "#23: Steven Wilson", - "drilldown" : "Steven Wilson" - }, - { - "name" : "#24: Ozzy", - "drilldown" : "Ozzy", - "y" : 24 - }, - { - "drilldown" : "Alicia Bielsa", - "name" : "#25: Alicia Bielsa", - "y" : 22 - }, - { - "drilldown" : "Feng Chang", - "name" : "#26: Feng Chang", - "y" : 22 - }, - { - "drilldown" : "Doug Schrag", - "name" : "#27: Doug Schrag", - "y" : 20 - }, - { - "drilldown" : "Maxim Nechaev", - "name" : "#28: Maxim Nechaev", - "y" : 20 - }, - { - "drilldown" : "Guillermo Ramos", - "name" : "#29: Guillermo Ramos", - "y" : 18 - }, - { - "y" : 16, - "drilldown" : "Robert Gratza", - "name" : "#30: Robert Gratza" - }, - { - "name" : "#31: John Barrett", - "drilldown" : "John Barrett", - "y" : 14 - }, - { - "name" : "#32: Khalid", - "drilldown" : "Khalid", - "y" : 14 - }, - { - "y" : 12, - "name" : "#33: Jaime Corchado", - "drilldown" : "Jaime Corchado" - }, - { - "drilldown" : "Kevin Colyer", - "name" : "#34: Kevin Colyer", - "y" : 12 - }, - { - "y" : 12, - "drilldown" : "Kivanc Yazan", - "name" : "#35: Kivanc Yazan" - }, - { - "name" : "#36: Maxim Kolodyazhny", - "drilldown" : "Maxim Kolodyazhny", - "y" : 12 - }, - { - "drilldown" : "Philippe Bruhat", - "name" : "#37: Philippe Bruhat", - "y" : 12 - }, - { - "y" : 12, - "name" : "#38: Sergio Iglesias", - "drilldown" : "Sergio Iglesias" - }, - { - "drilldown" : "Arpad Toth", - "name" : "#39: Arpad Toth", - "y" : 10 - }, - { - "y" : 10, - "name" : "#40: Pete Houston", - "drilldown" : "Pete Houston" - }, - { - "drilldown" : "Steve Rogerson", - "name" : "#41: Steve Rogerson", - "y" : 10 - }, - { - "y" : 10, - "drilldown" : "Veesh Goldman", - "name" : "#42: Veesh Goldman" - }, - { - "drilldown" : "Aaron Sherman", - "name" : "#43: Aaron Sherman", - "y" : 8 - }, - { - "drilldown" : "Alex Daniel", - "name" : "#44: Alex Daniel", - "y" : 8 - }, - { - "y" : 8, - "drilldown" : "Bob Kleemann", - "name" : "#45: Bob Kleemann" - }, - { - "y" : 8, - "drilldown" : "Chenyf", - "name" : "#46: Chenyf" - }, - { - "y" : 8, - "drilldown" : "David Kayal", - "name" : "#47: David Kayal" - }, - { - "y" : 8, - "drilldown" : "Finley", - "name" : "#48: Finley" - }, - { - "y" : 8, - "drilldown" : "Luis F. Uceta", - "name" : "#49: Luis F. Uceta" - }, - { - "y" : 8, - "name" : "#50: Matt Latusek", - "drilldown" : "Matt Latusek" - } - ], - "colorByPoint" : "true" - } - ], - "tooltip" : { - "headerFormat" : "", - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : "true" - }, "yAxis" : { "title" : { "text" : "Total Score" } }, - "legend" : { - "enabled" : "false" + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-06-19 10:30:57 GMT" }, "drilldown" : { "series" : [ { "name" : "Joelle Maslak", + "id" : "Joelle Maslak", "data" : [ [ - "Perl 5", - 31 + "Blog", + 4 ], [ "Perl 6", 31 ], [ - "Blog", - 4 + "Perl 5", + 31 ] - ], - "id" : "Joelle Maslak" + ] }, { - "id" : "Laurent Rosenfeld", "data" : [ [ "Perl 5", - 24 + 26 ], [ - "Perl 6", - 23 + "Blog", + 15 ], [ - "Blog", - 14 + "Perl 6", + 25 ] ], - "name" : "Laurent Rosenfeld" + "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld" }, { "id" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas", "data" : [ [ "Perl 5", @@ -337,25 +69,23 @@ "Perl 6", 24 ] - ], - "name" : "Jaldhar H. Vyas" + ] }, { + "name" : "Ruben Westerberg", "id" : "Ruben Westerberg", "data" : [ [ - "Perl 6", + "Perl 5", 21 ], [ - "Perl 5", + "Perl 6", 21 ] - ], - "name" : "Ruben Westerberg" + ] }, { - "name" : "Adam Russell", "data" : [ [ "Blog", @@ -366,24 +96,24 @@ 24 ] ], + "name" : "Adam Russell", "id" : "Adam Russell" }, { "data" : [ - [ - "Blog", - 11 - ], [ "Perl 6", 21 + ], + [ + "Blog", + 11 ] ], "id" : "Arne Sommer", "name" : "Arne Sommer" }, { - "id" : "Kian-Meng Ang", "data" : [ [ "Blog", @@ -394,25 +124,26 @@ 21 ] ], + "id" : "Kian-Meng Ang", "name" : "Kian-Meng Ang" }, { - "name" : "Simon Proctor", "data" : [ [ "Blog", 6 ], - [ - "Perl 5", - 4 - ], [ "Perl 6", 22 + ], + [ + "Perl 5", + 4 ] ], - "id" : "Simon Proctor" + "id" : "Simon Proctor", + "name" : "Simon Proctor" }, { "data" : [ @@ -430,30 +161,29 @@ }, { "data" : [ - [ - "Blog", - 4 - ], [ "Perl 5", 23 + ], + [ + "Blog", + 4 ] ], - "id" : "Gustavo Chaves", - "name" : "Gustavo Chaves" + "name" : "Gustavo Chaves", + "id" : "Gustavo Chaves" }, { - "name" : "Andrezgz", "data" : [ [ "Perl 5", 25 ] ], + "name" : "Andrezgz", "id" : "Andrezgz" }, { - "name" : "Francis Whittle", "data" : [ [ "Blog", @@ -464,37 +194,40 @@ 19 ] ], + "name" : "Francis Whittle", "id" : "Francis Whittle" }, { - "id" : "Dave Jacoby", "data" : [ - [ - "Perl 5", - 13 - ], [ "Blog", 11 + ], + [ + "Perl 5", + 13 ] ], - "name" : "Dave Jacoby" + "name" : "Dave Jacoby", + "id" : "Dave Jacoby" }, { - "name" : "E. Choroba", "data" : [ - [ - "Perl 5", - 16 - ], [ "Blog", 8 + ], + [ + "Perl 5", + 16 ] ], + "name" : "E. Choroba", "id" : "E. Choroba" }, { + "name" : "Jo Christian Oterhals", + "id" : "Jo Christian Oterhals", "data" : [ [ "Blog", @@ -508,12 +241,11 @@ "Perl 5", 6 ] - ], - "id" : "Jo Christian Oterhals", - "name" : "Jo Christian Oterhals" + ] }, { "name" : "Dr James A. Smith", + "id" : "Dr James A. Smith", "data" : [ [ "Perl 5", @@ -523,30 +255,30 @@ "Perl 6", 10 ] - ], - "id" : "Dr James A. Smith" + ] }, { - "name" : "Daniel Mantovani", "data" : [ [ "Perl 5", 18 ] ], - "id" : "Daniel Mantovani" + "id" : "Daniel Mantovani", + "name" : "Daniel Mantovani" }, { + "id" : "Duncan C. White", + "name" : "Duncan C. White", "data" : [ [ "Perl 5", 18 ] - ], - "id" : "Duncan C. White", - "name" : "Duncan C. White" + ] }, { + "name" : "Mark Senn", "id" : "Mark Senn", "data" : [ [ @@ -557,10 +289,11 @@ "Blog", 4 ] - ], - "name" : "Mark Senn" + ] }, { + "id" : "Nick Logan", + "name" : "Nick Logan", "data" : [ [ "Perl 5", @@ -570,12 +303,11 @@ "Perl 6", 8 ] - ], - "id" : "Nick Logan", - "name" : "Nick Logan" + ] }, { "name" : "Lars Balker", + "id" : "Lars Balker", "data" : [ [ "Perl 6", @@ -585,42 +317,41 @@ "Perl 5", 10 ] - ], - "id" : "Lars Balker" + ] }, { - "id" : "Yozen Hernandez", "data" : [ - [ - "Blog", - 4 - ], [ "Perl 5", 10 + ], + [ + "Blog", + 4 ] ], + "id" : "Yozen Hernandez", "name" : "Yozen Hernandez" }, { - "id" : "Steven Wilson", "data" : [ [ "Perl 5", 13 ] ], - "name" : "Steven Wilson" + "name" : "Steven Wilson", + "id" : "Steven Wilson" }, { "name" : "Ozzy", + "id" : "Ozzy", "data" : [ [ "Perl 6", 12 ] - ], - "id" : "Ozzy" + ] }, { "data" : [ @@ -629,10 +360,11 @@ 11 ] ], - "id" : "Alicia Bielsa", - "name" : "Alicia Bielsa" + "name" : "Alicia Bielsa", + "id" : "Alicia Bielsa" }, { + "name" : "Feng Chang", "id" : "Feng Chang", "data" : [ [ @@ -643,8 +375,7 @@ "Perl 5", 4 ] - ], - "name" : "Feng Chang" + ] }, { "data" : [ @@ -657,106 +388,106 @@ "name" : "Doug Schrag" }, { + "id" : "Maxim Nechaev", "name" : "Maxim Nechaev", "data" : [ [ "Perl 5", 10 ] - ], - "id" : "Maxim Nechaev" + ] }, { - "name" : "Guillermo Ramos", - "id" : "Guillermo Ramos", "data" : [ [ "Perl 5", 9 ] - ] + ], + "name" : "Guillermo Ramos", + "id" : "Guillermo Ramos" }, { "name" : "Robert Gratza", "id" : "Robert Gratza", "data" : [ - [ - "Perl 6", - 6 - ], [ "Perl 5", 2 + ], + [ + "Perl 6", + 6 ] ] }, { - "name" : "John Barrett", "data" : [ [ "Perl 5", 7 ] ], + "name" : "John Barrett", "id" : "John Barrett" }, { - "name" : "Khalid", - "id" : "Khalid", "data" : [ [ - "Blog", - 1 + "Perl 5", + 4 ], [ "Perl 6", 2 ], [ - "Perl 5", - 4 + "Blog", + 1 ] - ] + ], + "name" : "Khalid", + "id" : "Khalid" }, { + "name" : "Jaime Corchado", "id" : "Jaime Corchado", "data" : [ [ "Perl 5", 6 ] - ], - "name" : "Jaime Corchado" + ] }, { - "id" : "Kevin Colyer", "data" : [ [ "Perl 6", 6 ] ], + "id" : "Kevin Colyer", "name" : "Kevin Colyer" }, { - "id" : "Kivanc Yazan", "data" : [ [ "Perl 5", 6 ] ], + "id" : "Kivanc Yazan", "name" : "Kivanc Yazan" }, { - "id" : "Maxim Kolodyazhny", "data" : [ [ "Perl 5", 6 ] ], - "name" : "Maxim Kolodyazhny" + "name" : "Maxim Kolodyazhny", + "id" : "Maxim Kolodyazhny" }, { "name" : "Philippe Bruhat", @@ -773,36 +504,38 @@ ] }, { + "name" : "Sergio Iglesias", + "id" : "Sergio Iglesias", "data" : [ [ "Perl 5", 6 ] - ], - "id" : "Sergio Iglesias", - "name" : "Sergio Iglesias" + ] }, { - "id" : "Arpad Toth", "data" : [ [ "Perl 5", 5 ] ], - "name" : "Arpad Toth" + "name" : "Arpad Toth", + "id" : "Arpad Toth" }, { "id" : "Pete Houston", + "name" : "Pete Houston", "data" : [ [ "Perl 5", 5 ] - ], - "name" : "Pete Houston" + ] }, { + "id" : "Steve Rogerson", + "name" : "Steve Rogerson", "data" : [ [ "Perl 5", @@ -812,103 +545,370 @@ "Perl 6", 2 ] - ], - "id" : "Steve Rogerson", - "name" : "Steve Rogerson" + ] }, { - "name" : "Veesh Goldman", - "id" : "Veesh Goldman", "data" : [ [ "Perl 5", 5 ] - ] + ], + "name" : "Veesh Goldman", + "id" : "Veesh Goldman" }, { + "name" : "Aaron Sherman", "id" : "Aaron Sherman", "data" : [ [ "Perl 6", 4 ] - ], - "name" : "Aaron Sherman" + ] }, { "name" : "Alex Daniel", + "id" : "Alex Daniel", "data" : [ [ "Perl 6", 4 ] - ], - "id" : "Alex Daniel" + ] }, { + "id" : "Bob Kleemann", "name" : "Bob Kleemann", "data" : [ [ "Perl 5", 4 ] - ], - "id" : "Bob Kleemann" + ] }, { + "name" : "Chenyf", "id" : "Chenyf", "data" : [ [ "Perl 6", 4 ] - ], - "name" : "Chenyf" + ] }, { - "name" : "David Kayal", "data" : [ [ "Perl 5", 4 ] ], + "name" : "David Kayal", "id" : "David Kayal" }, { - "name" : "Finley", "data" : [ [ "Perl 6", 4 ] ], - "id" : "Finley" + "id" : "Finley", + "name" : "Finley" }, { + "id" : "Luis F. Uceta", "name" : "Luis F. Uceta", "data" : [ [ "Perl 6", 4 ] - ], - "id" : "Luis F. Uceta" + ] }, { - "id" : "Matt Latusek", "data" : [ [ "Perl 5", 4 ] ], + "id" : "Matt Latusek", "name" : "Matt Latusek" } ] }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-06-19 10:20:48 GMT" + "chart" : { + "type" : "column" + }, + "series" : [ + { + "colorByPoint" : "true", + "name" : "Perl Weekly Challenge Leaders", + "data" : [ + { + "y" : 132, + "drilldown" : "Joelle Maslak", + "name" : "#1: Joelle Maslak" + }, + { + "drilldown" : "Laurent Rosenfeld", + "y" : 132, + "name" : "#2: Laurent Rosenfeld" + }, + { + "drilldown" : "Jaldhar H. Vyas", + "y" : 96, + "name" : "#3: Jaldhar H. Vyas" + }, + { + "name" : "#4: Ruben Westerberg", + "y" : 84, + "drilldown" : "Ruben Westerberg" + }, + { + "name" : "#5: Adam Russell", + "drilldown" : "Adam Russell", + "y" : 72 + }, + { + "name" : "#6: Arne Sommer", + "drilldown" : "Arne Sommer", + "y" : 64 + }, + { + "drilldown" : "Kian-Meng Ang", + "y" : 64, + "name" : "#7: Kian-Meng Ang" + }, + { + "name" : "#8: Simon Proctor", + "drilldown" : "Simon Proctor", + "y" : 64 + }, + { + "name" : "#9: Athanasius", + "drilldown" : "Athanasius", + "y" : 56 + }, + { + "name" : "#10: Gustavo Chaves", + "drilldown" : "Gustavo Chaves", + "y" : 54 + }, + { + "drilldown" : "Andrezgz", + "y" : 50, + "name" : "#11: Andrezgz" + }, + { + "y" : 50, + "drilldown" : "Francis Whittle", + "name" : "#12: Francis Whittle" + }, + { + "drilldown" : "Dave Jacoby", + "y" : 48, + "name" : "#13: Dave Jacoby" + }, + { + "y" : 48, + "drilldown" : "E. Choroba", + "name" : "#14: E. Choroba" + }, + { + "y" : 48, + "drilldown" : "Jo Christian Oterhals", + "name" : "#15: Jo Christian Oterhals" + }, + { + "name" : "#16: Dr James A. Smith", + "drilldown" : "Dr James A. Smith", + "y" : 44 + }, + { + "name" : "#17: Daniel Mantovani", + "y" : 36, + "drilldown" : "Daniel Mantovani" + }, + { + "name" : "#18: Duncan C. White", + "y" : 36, + "drilldown" : "Duncan C. White" + }, + { + "name" : "#19: Mark Senn", + "y" : 32, + "drilldown" : "Mark Senn" + }, + { + "name" : "#20: Nick Logan", + "y" : 32, + "drilldown" : "Nick Logan" + }, + { + "drilldown" : "Lars Balker", + "y" : 28, + "name" : "#21: Lars Balker" + }, + { + "drilldown" : "Yozen Hernandez", + "y" : 28, + "name" : "#22: Yozen Hernandez" + }, + { + "y" : 26, + "drilldown" : "Steven Wilson", + "name" : "#23: Steven Wilson" + }, + { + "drilldown" : "Ozzy", + "y" : 24, + "name" : "#24: Ozzy" + }, + { + "y" : 22, + "drilldown" : "Alicia Bielsa", + "name" : "#25: Alicia Bielsa" + }, + { + "drilldown" : "Feng Chang", + "y" : 22, + "name" : "#26: Feng Chang" + }, + { + "name" : "#27: Doug Schrag", + "y" : 20, + "drilldown" : "Doug Schrag" + }, + { + "name" : "#28: Maxim Nechaev", + "drilldown" : "Maxim Nechaev", + "y" : 20 + }, + { + "name" : "#29: Guillermo Ramos", + "drilldown" : "Guillermo Ramos", + "y" : 18 + }, + { + "drilldown" : "Robert Gratza", + "y" : 16, + "name" : "#30: Robert Gratza" + }, + { + "y" : 14, + "drilldown" : "John Barrett", + "name" : "#31: John Barrett" + }, + { + "y" : 14, + "drilldown" : "Khalid", + "name" : "#32: Khalid" + }, + { + "drilldown" : "Jaime Corchado", + "y" : 12, + "name" : "#33: Jaime Corchado" + }, + { + "name" : "#34: Kevin Colyer", + "drilldown" : "Kevin Colyer", + "y" : 12 + }, + { + "drilldown" : "Kivanc Yazan", + "y" : 12, + "name" : "#35: Kivanc Yazan" + }, + { + "name" : "#36: Maxim Kolodyazhny", + "drilldown" : "Maxim Kolodyazhny", + "y" : 12 + }, + { + "name" : "#37: Philippe Bruhat", + "y" : 12, + "drilldown" : "Philippe Bruhat" + }, + { + "name" : "#38: Sergio Iglesias", + "drilldown" : "Sergio Iglesias", + "y" : 12 + }, + { + "y" : 10, + "drilldown" : "Arpad Toth", + "name" : "#39: Arpad Toth" + }, + { + "drilldown" : "Pete Houston", + "y" : 10, + "name" : "#40: Pete Houston" + }, + { + "name" : "#41: Steve Rogerson", + "drilldown" : "Steve Rogerson", + "y" : 10 + }, + { + "drilldown" : "Veesh Goldman", + "y" : 10, + "name" : "#42: Veesh Goldman" + }, + { + "y" : 8, + "drilldown" : "Aaron Sherman", + "name" : "#43: Aaron Sherman" + }, + { + "name" : "#44: Alex Daniel", + "y" : 8, + "drilldown" : "Alex Daniel" + }, + { + "y" : 8, + "drilldown" : "Bob Kleemann", + "name" : "#45: Bob Kleemann" + }, + { + "name" : "#46: Chenyf", + "drilldown" : "Chenyf", + "y" : 8 + }, + { + "drilldown" : "David Kayal", + "y" : 8, + "name" : "#47: David Kayal" + }, + { + "y" : 8, + "drilldown" : "Finley", + "name" : "#48: Finley" + }, + { + "name" : "#49: Luis F. Uceta", + "y" : 8, + "drilldown" : "Luis F. Uceta" + }, + { + "name" : "#50: Matt Latusek", + "y" : 8, + "drilldown" : "Matt Latusek" + } + ] + } + ], + "tooltip" : { + "followPointer" : "true", + "headerFormat" : "", + "pointFormat" : "{point.name}: {point.y:f}
" + }, + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" + }, + "xAxis" : { + "type" : "category" } } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index 3e48279a4a..2f6e821477 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -1,31 +1,57 @@ { - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } + "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", + "Duncan C. White", + "E. Choroba", + "Eddy HS", + "Feng Chang", + "Finley" + ] }, "plotOptions" : { "column" : { "stacking" : "percent" } }, + "chart" : { + "type" : "column" + }, "title" : { "text" : "Perl Weekly Challenge - 2019" }, - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-06-19 10:20:31 GMT" - }, - "chart" : { - "type" : "column" + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 }, "series" : [ { - "name" : "Perl 5", "data" : [ 0, 2, @@ -57,10 +83,10 @@ 2, 4, 0 - ] + ], + "name" : "Perl 5" }, { - "name" : "Perl 6", "data" : [ 4, 0, @@ -92,7 +118,8 @@ 0, 7, 4 - ] + ], + "name" : "Perl 6" }, { "data" : [ @@ -130,38 +157,11 @@ "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", - "Duncan C. White", - "E. Choroba", - "Eddy HS", - "Feng Chang", - "Finley" - ] + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-06-19 10:30:51 GMT" } } diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index 2aadbceb74..3be9d72148 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -1,14 +1,58 @@ { - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" + "xAxis" : { + "categories" : [ + "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", + "Joe Tym", + "Joelle Maslak", + "John Barrett", + "Juan Caballero", + "Kevin Colyer", + "Khalid", + "Kian-Meng Ang", + "Kivanc Yazan", + "Lars Balker", + "Laurent Rosenfeld", + "Magnus Woldrich", + "Mano Chandar", + "Mark Senn", + "Martin Barth", + "Martin Mugeni", + "Matt Latusek" + ] }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-06-19 10:20:31 GMT" + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } }, "chart" : { "type" : "column" }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" + } + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-06-19 10:30:51 GMT" + }, "series" : [ { "name" : "Perl 5", @@ -36,7 +80,7 @@ 21, 6, 10, - 24, + 26, 1, 0, 0, @@ -46,7 +90,6 @@ ] }, { - "name" : "Perl 6", "data" : [ 19, 0, @@ -71,14 +114,15 @@ 0, 0, 4, - 23, + 25, 1, 0, 12, 1, 2, 0 - ] + ], + "name" : "Perl 6" }, { "name" : "Blog", @@ -106,7 +150,7 @@ 11, 0, 0, - 14, + 15, 0, 0, 4, @@ -116,52 +160,8 @@ ] } ], - "xAxis" : { - "categories" : [ - "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", - "Joe Tym", - "Joelle Maslak", - "John Barrett", - "Juan Caballero", - "Kevin Colyer", - "Khalid", - "Kian-Meng Ang", - "Kivanc Yazan", - "Lars Balker", - "Laurent Rosenfeld", - "Magnus Woldrich", - "Mano Chandar", - "Mark Senn", - "Martin Barth", - "Martin Mugeni", - "Matt Latusek" - ] - }, - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" } } diff --git a/stats/pwc-summary-61-90.json b/stats/pwc-summary-61-90.json index b572fac2d8..460a881cf1 100644 --- a/stats/pwc-summary-61-90.json +++ b/stats/pwc-summary-61-90.json @@ -1,4 +1,15 @@ { + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "chart" : { + "type" : "column" + }, "xAxis" : { "categories" : [ "Matthew O. Persico", @@ -33,9 +44,11 @@ "Veesh Goldman" ] }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-06-19 10:30:51 GMT" + }, "series" : [ { - "name" : "Perl 5", "data" : [ 0, 6, @@ -67,7 +80,8 @@ 2, 0, 5 - ] + ], + "name" : "Perl 5" }, { "data" : [ @@ -105,7 +119,6 @@ "name" : "Perl 6" }, { - "name" : "Blog", "data" : [ 0, 0, @@ -137,31 +150,18 @@ 0,