From e8ed467d1c33495ed7827caec1821e032354eb9c Mon Sep 17 00:00:00 2001 From: Randy Lauen Date: Wed, 14 Aug 2019 23:31:29 -0500 Subject: challenge 1 in perl5 --- challenge-021/randy-lauen/perl5/ch-1.pl | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 challenge-021/randy-lauen/perl5/ch-1.pl diff --git a/challenge-021/randy-lauen/perl5/ch-1.pl b/challenge-021/randy-lauen/perl5/ch-1.pl new file mode 100644 index 0000000000..ddd6c78111 --- /dev/null +++ b/challenge-021/randy-lauen/perl5/ch-1.pl @@ -0,0 +1,32 @@ +#!/usr/bin/env perl + +use 5.020; +use strict; +use warnings; + +use Math::Big (); +use Math::NumberCruncher (); +use Math::Pari (); +use Math::Symbolic (); +use Math::AnyNum (); +use Sidef (); +use Text::Table::Tiny (); + +my @eulers = ( + [ 'Math::Big::euler', sub { Math::Big::euler(1, 47) } ], + [ 'Math::NumberCruncher::ECONST', sub { Math::NumberCruncher::ECONST( 46 ) } ], + [ 'Math::Symbolic::EULER', sub { Math::Symbolic::EULER } ], + [ 'Math::AnyNum::euler', sub { Math::AnyNum->e } ], + [ 'Sidef', sub { Sidef->new()->execute_code("Number.e()") } ], + # [ 'Math::Pari::Euler', sub { Math::Pari::Euler() } ], NOPE! Euler's constant is not the same as Euler's number! +); + +my @table = [ 'Module', q{Euler's Number} ]; +foreach my $euler ( @eulers ) { + push @table, [ $euler->[0], $euler->[1]->() ]; +} + +say Text::Table::Tiny::generate_table( header_row => 1, rows => \@table ); + +exit 0; + -- cgit From 9b4ee579b7202e132821028ed67ce6beb163be2a Mon Sep 17 00:00:00 2001 From: Randy Lauen Date: Fri, 16 Aug 2019 16:42:18 -0500 Subject: perl6 solution for challenge 1 --- challenge-021/randy-lauen/perl6/ch-1.p6 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 challenge-021/randy-lauen/perl6/ch-1.p6 diff --git a/challenge-021/randy-lauen/perl6/ch-1.p6 b/challenge-021/randy-lauen/perl6/ch-1.p6 new file mode 100644 index 0000000000..f2e000010f --- /dev/null +++ b/challenge-021/randy-lauen/perl6/ch-1.p6 @@ -0,0 +1,15 @@ +#!/usr/bin/env perl6 + +# Write a script to calculate the value of e, also known as Euler’s number and Napier’s constant. + +my $e = 0; +for ^20 -> $n { + $e += 1/factorial($n); +} +say "Calculated e = $e"; +say "Perl6 e = {e}"; + +sub factorial( Int $n where * >= 0 ) { + return 1 if $n == 0; + return $n * factorial( $n - 1 ); +} -- cgit From e9087ef23415d5b64eccf74db4d12249e3c26907 Mon Sep 17 00:00:00 2001 From: andrezgz Date: Sat, 17 Aug 2019 00:52:04 -0300 Subject: challenge-021 andrezgz solution --- challenge-021/andrezgz/perl5/ch-1.pl | 19 ++++++++ challenge-021/andrezgz/perl5/ch-2.pl | 92 ++++++++++++++++++++++++++++++++++++ 2 files changed, 111 insertions(+) create mode 100644 challenge-021/andrezgz/perl5/ch-1.pl create mode 100644 challenge-021/andrezgz/perl5/ch-2.pl diff --git a/challenge-021/andrezgz/perl5/ch-1.pl b/challenge-021/andrezgz/perl5/ch-1.pl new file mode 100644 index 0000000000..22014b8f25 --- /dev/null +++ b/challenge-021/andrezgz/perl5/ch-1.pl @@ -0,0 +1,19 @@ +#!/usr/bin/perl + +# https://perlweeklychallenge.org/blog/perl-weekly-challenge-021/ +# Task #1 +# Write a script to calculate the value of e, also known as Euler's number and Napier's constant. +# Please checkout wiki page for more information. +# https://en.wikipedia.org/wiki/E_(mathematical_constant) + +use strict; +use warnings; + +my $e_aprox = 0; +my $fact = 1; +for (1, 1 .. 100) { + $fact *= $_; + $e_aprox += 1/$fact; +} + +print $e_aprox; diff --git a/challenge-021/andrezgz/perl5/ch-2.pl b/challenge-021/andrezgz/perl5/ch-2.pl new file mode 100644 index 0000000000..b20bb2c2da --- /dev/null +++ b/challenge-021/andrezgz/perl5/ch-2.pl @@ -0,0 +1,92 @@ +#!/usr/bin/perl + +# https://perlweeklychallenge.org/blog/perl-weekly-challenge-021/ +# Task #2 +# Write a script for URL normalization based on rfc3986. This task was shared by Anonymous Contributor. +# https://en.wikipedia.org/wiki/URL_normalization +# According to Wikipedia, URL normalization is the process by which URLs are modified and standardized +# in a consistent manner. The goal of the normalization process is to transform a URL into a normalized URL +# so it is possible to determine if two syntactically different URLs may be equivalent. + +use strict; +use warnings; + +my $url_in = $ARGV[0] + || 'HTTPS://www.Example.com:443/a%c2%b1b/%7Eandrezgz/bar.html?pi=3%2e14#hi%2Dthere'; + +print 'Original:'.$/; +print $url_in.$/.$/; + +my ($scheme, $auth, $path, $query, $frag, $userinfo, $host, $port); + +($scheme, $auth, $path, $query, $frag) = uri_split($url_in); +($userinfo, $host, $port) = auth_split($auth) if $auth; + +# Normalizations that preserve semantics + +## Converts the scheme and host to lower case. +($scheme, $host) = map { lc $_ } ($scheme, $host); + +## Capitalizes letters in escape sequences. +## Decodes percent-encoded octets of unreserved characters. +($path, $query, $frag) = + map { my $comp = $_; + $comp =~ s{%([A-Fa-f0-9]{2})} + { my $chr = chr(hex($1)); + $chr =~ /^[A-Za-z0-9\-_\.~]$/ ? $chr : '%'.uc $1; + }ge if $comp; + $comp; + } ($path, $query, $frag); + +## Removes the default port (port 80 for http). +my %default_ports = ( + ftp => 21, gopher => 70, http => 80, https => 443, + ldap => 389, ldaps => 636, mms => 1755, news => 119, + pop => 110, rlogin => 513, rsync => 873, rtsp => 554, + rstpu => 554, sip => 5060, sips => 5061, snews => 563, + ssh => 22, telnet => 23, tn3270 => 23, +); +$port = '' if ($port == $default_ports{$scheme}); + +print 'Normalized:'.$/; +print uri_join($scheme, $userinfo, $host, $port, $path, $query, $frag).$/; + + +sub uri_join { + my ($scheme, $userinfo, $host, $port, $path, $query, $frag) = @_; + + my $uri = $scheme . ':'; + if ($host) { + $uri .= '//'; + $uri .= $userinfo . '@' if ($userinfo); + $uri .= $host; + $uri .= ':' . $port if ($port); + } + $uri .= $path; + $uri .= '?' . $query if ($query); + $uri .= '#' . $frag if ($frag); + + return $uri; +} + + +# functions created in challenge-017/andrezgz/perl5/ch-2.pl +sub uri_split { + return $_[0] =~ m| + ^ # string start + ([^/?\#]+) : # scheme + (?: // ([^/?\#]*) )? # authority (optional) + ([^?\#]*) # path + (?: \? ([^\#]*) )? # query (optional) + (?: \# (.*) )? # fragment (optional) + $ # string end + |x; +} + +sub auth_split { + return $_[0] =~ m| + (?: ([^@]+) @ )? # userinfo (optional) + ([^:/?\#]+) # host + (?: : (\d+) )? # port (optional) + |x; +} -- cgit From bcc6cfc303c6343606f2ce75762c403a385feb52 Mon Sep 17 00:00:00 2001 From: andrezgz Date: Sat, 17 Aug 2019 00:57:43 -0300 Subject: challenge-021 ch-1 comment --- challenge-021/andrezgz/perl5/ch-1.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-021/andrezgz/perl5/ch-1.pl b/challenge-021/andrezgz/perl5/ch-1.pl index 22014b8f25..c7bb8de8d7 100644 --- a/challenge-021/andrezgz/perl5/ch-1.pl +++ b/challenge-021/andrezgz/perl5/ch-1.pl @@ -11,7 +11,7 @@ use warnings; my $e_aprox = 0; my $fact = 1; -for (1, 1 .. 100) { +for (1, 1 .. 100) { #tricky - additional 1 to represent 0! $fact *= $_; $e_aprox += 1/$fact; } -- cgit From bd7d9876b41b4cca6440225855bdf88cdd17a1dc Mon Sep 17 00:00:00 2001 From: Randy Lauen Date: Fri, 16 Aug 2019 23:30:37 -0500 Subject: comments plus another module --- challenge-021/randy-lauen/perl5/ch-1.pl | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/challenge-021/randy-lauen/perl5/ch-1.pl b/challenge-021/randy-lauen/perl5/ch-1.pl index ddd6c78111..d39415e039 100644 --- a/challenge-021/randy-lauen/perl5/ch-1.pl +++ b/challenge-021/randy-lauen/perl5/ch-1.pl @@ -4,9 +4,13 @@ use 5.020; use strict; use warnings; +# Write a script to calculate the value of e, also known as Euler’s number and Napier’s constant. + +# Instead of implementing it myself, I took a tour through +# some of the CPAN modules that do it for you. + use Math::Big (); use Math::NumberCruncher (); -use Math::Pari (); use Math::Symbolic (); use Math::AnyNum (); use Sidef (); @@ -15,10 +19,11 @@ use Text::Table::Tiny (); my @eulers = ( [ 'Math::Big::euler', sub { Math::Big::euler(1, 47) } ], [ 'Math::NumberCruncher::ECONST', sub { Math::NumberCruncher::ECONST( 46 ) } ], + [ 'Math::NumberCruncher::_e_', sub { substr( $Math::NumberCruncher::_e_, 0, 48 ) . '...' } ], [ 'Math::Symbolic::EULER', sub { Math::Symbolic::EULER } ], [ 'Math::AnyNum::euler', sub { Math::AnyNum->e } ], - [ 'Sidef', sub { Sidef->new()->execute_code("Number.e()") } ], - # [ 'Math::Pari::Euler', sub { Math::Pari::Euler() } ], NOPE! Euler's constant is not the same as Euler's number! + [ 'Sidef Number.e', sub { Sidef->new()->execute_code("Number.e()") } ], + [ 'bigrat::e', sub { require bigrat; bigrat::e() } ], ); my @table = [ 'Module', q{Euler's Number} ]; @@ -28,5 +33,3 @@ foreach my $euler ( @eulers ) { say Text::Table::Tiny::generate_table( header_row => 1, rows => \@table ); -exit 0; - -- cgit From ec5563f624bec6c302622c020496644d28d0b26f Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Sat, 17 Aug 2019 06:08:14 +0100 Subject: - Added solutions by Andrezgz. --- stats/pwc-current.json | 159 +++++----- stats/pwc-language-breakdown-summary.json | 48 +-- stats/pwc-language-breakdown.json | 200 ++++++------ stats/pwc-leaders.json | 498 +++++++++++++++--------------- stats/pwc-summary-1-30.json | 98 +++--- stats/pwc-summary-31-60.json | 38 +-- stats/pwc-summary-61-90.json | 38 +-- stats/pwc-summary-91-120.json | 48 +-- stats/pwc-summary.json | 252 +++++++-------- 9 files changed, 697 insertions(+), 682 deletions(-) diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 60078c5b04..32cf7cd7e5 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,82 +1,41 @@ { "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
", "headerFormat" : "{series.name}
" }, - "chart" : { - "type" : "column" - }, - "legend" : { - "enabled" : 0 - }, "yAxis" : { "title" : { "text" : "Total Solutions" } }, - "series" : [ - { - "colorByPoint" : 1, - "data" : [ - { - "name" : "Dave Cross", - "y" : 2, - "drilldown" : "Dave Cross" - }, - { - "name" : "Dave Jacoby", - "y" : 2, - "drilldown" : "Dave Jacoby" - }, - { - "name" : "Duane Powell", - "y" : 2, - "drilldown" : "Duane Powell" - }, - { - "drilldown" : "E. Choroba", - "y" : 2, - "name" : "E. Choroba" - }, - { - "drilldown" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld", - "y" : 5 - }, - { - "drilldown" : "Roger Bell West", - "y" : 4, - "name" : "Roger Bell West" - }, - { - "drilldown" : "Simon Proctor", - "y" : 1, - "name" : "Simon Proctor" - }, - { - "drilldown" : "Steven Wilson", - "y" : 1, - "name" : "Steven Wilson" - } - ], - "name" : "Perl Weekly Challenge - 021" - } - ], "xAxis" : { "type" : "category" }, + "subtitle" : { + "text" : "[Champions: 9] Last updated at 2019-08-17 05:07:46 GMT" + }, "drilldown" : { "series" : [ { - "name" : "Dave Cross", - "id" : "Dave Cross", + "name" : "Andrezgz", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "Andrezgz" + }, + { + "data" : [ + [ + "Perl 5", + 2 + ] + ], + "id" : "Dave Cross", + "name" : "Dave Cross" }, { "id" : "Dave Jacoby", @@ -93,27 +52,28 @@ "name" : "Dave Jacoby" }, { - "name" : "Duane Powell", + "id" : "Duane Powell", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Duane Powell" + "name" : "Duane Powell" }, { + "id" : "E. Choroba", "data" : [ [ "Perl 5", 2 ] ], - "id" : "E. Choroba", "name" : "E. Choroba" }, { "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld", "data" : [ [ "Perl 5", @@ -127,10 +87,11 @@ "Blog", 1 ] - ], - "id" : "Laurent Rosenfeld" + ] }, { + "name" : "Roger Bell West", + "id" : "Roger Bell West", "data" : [ [ "Perl 5", @@ -144,29 +105,27 @@ "Blog", 1 ] - ], - "id" : "Roger Bell West", - "name" : "Roger Bell West" + ] }, { "name" : "Simon Proctor", + "id" : "Simon Proctor", "data" : [ [ "Perl 6", 1 ] - ], - "id" : "Simon Proctor" + ] }, { - "id" : "Steven Wilson", + "name" : "Steven Wilson", "data" : [ [ "Perl 5", 1 ] ], - "name" : "Steven Wilson" + "id" : "Steven Wilson" } ] }, @@ -179,10 +138,66 @@ "borderWidth" : 0 } }, + "chart" : { + "type" : "column" + }, "title" : { "text" : "Perl Weekly Challenge - 021" }, - "subtitle" : { - "text" : "[Champions: 8] Last updated at 2019-08-16 10:32:35 GMT" + "series" : [ + { + "name" : "Perl Weekly Challenge - 021", + "data" : [ + { + "name" : "Andrezgz", + "y" : 2, + "drilldown" : "Andrezgz" + }, + { + "drilldown" : "Dave Cross", + "name" : "Dave Cross", + "y" : 2 + }, + { + "y" : 2, + "name" : "Dave Jacoby", + "drilldown" : "Dave Jacoby" + }, + { + "drilldown" : "Duane Powell", + "y" : 2, + "name" : "Duane Powell" + }, + { + "drilldown" : "E. Choroba", + "name" : "E. Choroba", + "y" : 2 + }, + { + "drilldown" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", + "y" : 5 + }, + { + "drilldown" : "Roger Bell West", + "y" : 4, + "name" : "Roger Bell West" + }, + { + "y" : 1, + "name" : "Simon Proctor", + "drilldown" : "Simon Proctor" + }, + { + "drilldown" : "Steven Wilson", + "y" : 1, + "name" : "Steven Wilson" + } + ], + "colorByPoint" : 1 + } + ], + "legend" : { + "enabled" : 0 } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 3ada4ef64f..17edc211e7 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,39 +1,21 @@ { - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - }, "subtitle" : { - "text" : "Last updated at 2019-08-16 10:34:01 GMT" + "text" : "Last updated at 2019-08-17 05:08:04 GMT" }, "title" : { "text" : "Perl Weekly Challenge Contributions - 2019" }, "xAxis" : { + "type" : "category", "labels" : { "style" : { "fontSize" : "13px", "fontFamily" : "Verdana, sans-serif" } - }, - "type" : "category" - }, - "chart" : { - "type" : "column" + } }, "series" : [ { - "dataLabels" : { - "color" : "#FFFFFF", - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - }, - "rotation" : -90, - "enabled" : "true", - "format" : "{point.y:.0f}", - "align" : "right", - "y" : 10 - }, "data" : [ [ "Blog", @@ -41,23 +23,41 @@ ], [ "Perl 5", - 860 + 862 ], [ "Perl 6", 508 ] ], + "dataLabels" : { + "y" : 10, + "enabled" : "true", + "align" : "right", + "rotation" : -90, + "format" : "{point.y:.0f}", + "color" : "#FFFFFF", + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + }, "name" : "Contributions" } ], "yAxis" : { + "min" : 0, "title" : { "text" : null - }, - "min" : 0 + } }, "legend" : { "enabled" : "false" + }, + "tooltip" : { + "pointFormat" : "{point.y:.0f}" + }, + "chart" : { + "type" : "column" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 126802417e..2fafdb9a98 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,13 +1,13 @@ { - "tooltip" : { - "followPointer" : "true", - "headerFormat" : "", - "pointFormat" : "Challenge {point.name}: {point.y:f}
" + "chart" : { + "type" : "column" + }, + "legend" : { + "enabled" : "false" }, "drilldown" : { "series" : [ { - "name" : "001", "data" : [ [ "Perl 5", @@ -22,9 +22,12 @@ 10 ] ], - "id" : "001" + "id" : "001", + "name" : "001" }, { + "name" : "002", + "id" : "002", "data" : [ [ "Perl 5", @@ -38,11 +41,10 @@ "Blog", 9 ] - ], - "id" : "002", - "name" : "002" + ] }, { + "id" : "003", "name" : "003", "data" : [ [ @@ -57,8 +59,7 @@ "Blog", 8 ] - ], - "id" : "003" + ] }, { "data" : [ @@ -75,11 +76,10 @@ 9 ] ], - "id" : "004", - "name" : "004" + "name" : "004", + "id" : "004" }, { - "name" : "005", "data" : [ [ "Perl 5", @@ -94,7 +94,8 @@ 11 ] ], - "id" : "005" + "id" : "005", + "name" : "005" }, { "name" : "006", @@ -133,8 +134,8 @@ "name" : "007" }, { - "name" : "008", "id" : "008", + "name" : "008", "data" : [ [ "Perl 5", @@ -151,6 +152,8 @@ ] }, { + "id" : "009", + "name" : "009", "data" : [ [ "Perl 5", @@ -164,11 +167,11 @@ "Blog", 11 ] - ], - "id" : "009", - "name" : "009" + ] }, { + "name" : "010", + "id" : "010", "data" : [ [ "Perl 5", @@ -182,12 +185,11 @@ "Blog", 9 ] - ], - "id" : "010", - "name" : "010" + ] }, { "id" : "011", + "name" : "011", "data" : [ [ "Perl 5", @@ -201,10 +203,10 @@ "Blog", 8 ] - ], - "name" : "011" + ] }, { + "id" : "012", "name" : "012", "data" : [ [ @@ -219,12 +221,9 @@ "Blog", 9 ] - ], - "id" : "012" + ] }, { - "name" : "013", - "id" : "013", "data" : [ [ "Perl 5", @@ -238,11 +237,11 @@ "Blog", 11 ] - ] + ], + "name" : "013", + "id" : "013" }, { - "name" : "014", - "id" : "014", "data" : [ [ "Perl 5", @@ -256,7 +255,9 @@ "Blog", 13 ] - ] + ], + "name" : "014", + "id" : "014" }, { "data" : [ @@ -273,8 +274,8 @@ 12 ] ], - "id" : "015", - "name" : "015" + "name" : "015", + "id" : "015" }, { "data" : [ @@ -291,8 +292,8 @@ 10 ] ], - "id" : "016", - "name" : "016" + "name" : "016", + "id" : "016" }, { "name" : "017", @@ -313,7 +314,6 @@ ] }, { - "name" : "018", "data" : [ [ "Perl 5", @@ -328,10 +328,10 @@ 11 ] ], + "name" : "018", "id" : "018" }, { - "name" : "019", "data" : [ [ "Perl 5", @@ -346,9 +346,12 @@ 10 ] ], + "name" : "019", "id" : "019" }, { + "id" : "020", + "name" : "020", "data" : [ [ "Perl 5", @@ -362,16 +365,15 @@ "Blog", 9 ] - ], - "id" : "020", - "name" : "020" + ] }, { "id" : "021", + "name" : "021", "data" : [ [ "Perl 5", - 12 + 14 ], [ "Perl 6", @@ -381,85 +383,70 @@ "Blog", 3 ] - ], - "name" : "021" + ] } ] }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-08-16 10:34:01 GMT" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } + "tooltip" : { + "followPointer" : "true", + "pointFormat" : "Challenge {point.name}: {point.y:f}
", + "headerFormat" : "" }, "xAxis" : { "type" : "category" }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, - "chart" : { - "type" : "column" - }, "series" : [ { - "colorByPoint" : "true", "data" : [ { + "y" : 123, "drilldown" : "001", - "name" : "#001", - "y" : 123 + "name" : "#001" }, { - "name" : "#002", "drilldown" : "002", + "name" : "#002", "y" : 104 }, { - "name" : "#003", + "y" : 66, "drilldown" : "003", - "y" : 66 + "name" : "#003" }, { "y" : 84, - "drilldown" : "004", - "name" : "#004" + "name" : "#004", + "drilldown" : "004" }, { - "drilldown" : "005", "name" : "#005", + "drilldown" : "005", "y" : 66 }, { - "y" : 47, + "drilldown" : "006", "name" : "#006", - "drilldown" : "006" + "y" : 47 }, { + "y" : 54, "name" : "#007", - "drilldown" : "007", - "y" : 54 + "drilldown" : "007" }, { + "y" : 67, "drilldown" : "008", - "name" : "#008", - "y" : 67 + "name" : "#008" }, { - "name" : "#009", + "y" : 65, "drilldown" : "009", - "y" : 65 + "name" : "#009" }, { - "y" : 58, "drilldown" : "010", - "name" : "#010" + "name" : "#010", + "y" : 58 }, { "drilldown" : "011", @@ -467,9 +454,9 @@ "y" : 77 }, { - "y" : 81, + "name" : "#012", "drilldown" : "012", - "name" : "#012" + "y" : 81 }, { "y" : 74, @@ -477,55 +464,68 @@ "drilldown" : "013" }, { - "name" : "#014", + "y" : 94, "drilldown" : "014", - "y" : 94 + "name" : "#014" }, { - "y" : 90, + "drilldown" : "015", "name" : "#015", - "drilldown" : "015" + "y" : 90 }, { - "name" : "#016", + "y" : 64, "drilldown" : "016", - "y" : 64 + "name" : "#016" }, { - "y" : 77, "name" : "#017", - "drilldown" : "017" + "drilldown" : "017", + "y" : 77 }, { - "y" : 73, + "drilldown" : "018", "name" : "#018", - "drilldown" : "018" + "y" : 73 }, { + "y" : 92, "name" : "#019", - "drilldown" : "019", - "y" : 92 + "drilldown" : "019" }, { - "y" : 89, + "drilldown" : "020", "name" : "#020", - "drilldown" : "020" + "y" : 89 }, { "name" : "#021", "drilldown" : "021", - "y" : 19 + "y" : 21 } ], - "name" : "Perl Weekly Challenge Languages" + "name" : "Perl Weekly Challenge Languages", + "colorByPoint" : "true" } ], + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } + }, "yAxis" : { "title" : { "text" : "Total Solutions" } }, - "legend" : { - "enabled" : "false" + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-08-17 05:08:04 GMT" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index e24a850eb9..4a4a505bd7 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,21 +1,12 @@ { - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } + "xAxis" : { + "type" : "category" }, "drilldown" : { "series" : [ { + "name" : "Laurent Rosenfeld", "data" : [ - [ - "Perl 5", - 42 - ], [ "Blog", 26 @@ -23,60 +14,63 @@ [ "Perl 6", 41 + ], + [ + "Perl 5", + 42 ] ], - "id" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld" + "id" : "Laurent Rosenfeld" }, { - "name" : "Joelle Maslak", "id" : "Joelle Maslak", + "name" : "Joelle Maslak", "data" : [ [ - "Perl 5", - 52 + "Blog", + 4 ], [ "Perl 6", 52 ], [ - "Blog", - 4 + "Perl 5", + 52 ] ] }, { "id" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas", "data" : [ - [ - "Perl 5", - 40 - ], [ "Blog", 7 ], + [ + "Perl 5", + 40 + ], [ "Perl 6", 39 ] - ], - "name" : "Jaldhar H. Vyas" + ] }, { - "name" : "Ruben Westerberg", + "id" : "Ruben Westerberg", "data" : [ [ - "Perl 6", + "Perl 5", 37 ], [ - "Perl 5", + "Perl 6", 37 ] ], - "id" : "Ruben Westerberg" + "name" : "Ruben Westerberg" }, { "name" : "Athanasius", @@ -98,7 +92,12 @@ }, { "id" : "Adam Russell", + "name" : "Adam Russell", "data" : [ + [ + "Perl 5", + 41 + ], [ "Perl 6", 2 @@ -106,16 +105,11 @@ [ "Blog", 20 - ], - [ - "Perl 5", - 41 ] - ], - "name" : "Adam Russell" + ] }, { - "id" : "Arne Sommer", + "name" : "Arne Sommer", "data" : [ [ "Perl 6", @@ -126,10 +120,9 @@ 19 ] ], - "name" : "Arne Sommer" + "id" : "Arne Sommer" }, { - "id" : "E. Choroba", "data" : [ [ "Blog", @@ -140,10 +133,11 @@ 34 ] ], - "name" : "E. Choroba" + "name" : "E. Choroba", + "id" : "E. Choroba" }, { - "id" : "Francis Whittle", + "name" : "Francis Whittle", "data" : [ [ "Perl 6", @@ -154,10 +148,9 @@ 9 ] ], - "name" : "Francis Whittle" + "id" : "Francis Whittle" }, { - "id" : "Dave Jacoby", "data" : [ [ "Perl 5", @@ -172,11 +165,16 @@ 18 ] ], - "name" : "Dave Jacoby" + "name" : "Dave Jacoby", + "id" : "Dave Jacoby" }, { "name" : "Simon Proctor", "data" : [ + [ + "Perl 5", + 4 + ], [ "Perl 6", 34 @@ -184,27 +182,33 @@ [ "Blog", 7 - ], - [ - "Perl 5", - 4 ] ], "id" : "Simon Proctor" }, { - "name" : "Kian-Meng Ang", - "id" : "Kian-Meng Ang", "data" : [ + [ + "Perl 5", + 33 + ], [ "Blog", 11 - ], + ] + ], + "name" : "Kian-Meng Ang", + "id" : "Kian-Meng Ang" + }, + { + "data" : [ [ "Perl 5", - 33 + 40 ] - ] + ], + "name" : "Andrezgz", + "id" : "Andrezgz" }, { "id" : "Feng Chang", @@ -221,26 +225,16 @@ "name" : "Feng Chang" }, { - "name" : "Andrezgz", - "id" : "Andrezgz", + "id" : "Gustavo Chaves", + "name" : "Gustavo Chaves", "data" : [ [ "Perl 5", - 38 - ] - ] - }, - { - "name" : "Gustavo Chaves", - "id" : "Gustavo Chaves", - "data" : [ + 32 + ], [ "Blog", 4 - ], - [ - "Perl 5", - 32 ] ] }, @@ -255,32 +249,30 @@ 14 ] ], - "id" : "Yozen Hernandez", - "name" : "Yozen Hernandez" + "name" : "Yozen Hernandez", + "id" : "Yozen Hernandez" }, { "name" : "Daniel Mantovani", - "id" : "Daniel Mantovani", "data" : [ [ "Perl 5", 34 ] - ] + ], + "id" : "Daniel Mantovani" }, { "name" : "Duncan C. White", - "id" : "Duncan C. White", "data" : [ [ "Perl 5", 34 ] - ] + ], + "id" : "Duncan C. White" }, { - "name" : "Steven Wilson", - "id" : "Steven Wilson", "data" : [ [ "Blog", @@ -290,14 +282,12 @@ "Perl 5", 31 ] - ] + ], + "name" : "Steven Wilson", + "id" : "Steven Wilson" }, { "data" : [ - [ - "Blog", - 7 - ], [ "Perl 6", 15 @@ -305,32 +295,34 @@ [ "Perl 5", 6 + ], + [ + "Blog", + 7 ] ], - "id" : "Jo Christian Oterhals", - "name" : "Jo Christian Oterhals" + "name" : "Jo Christian Oterhals", + "id" : "Jo Christian Oterhals" }, { - "name" : "Roger Bell West", + "id" : "Roger Bell West", "data" : [ - [ - "Perl 5", - 16 - ], [ "Blog", 5 ], + [ + "Perl 5", + 16 + ], [ "Perl 6", 5 ] ], - "id" : "Roger Bell West" + "name" : "Roger Bell West" }, { - "name" : "Mark Senn", - "id" : "Mark Senn", "data" : [ [ "Perl 6", @@ -340,11 +332,13 @@ "Blog", 7 ] - ] + ], + "name" : "Mark Senn", + "id" : "Mark Senn" }, { - "name" : "Dr James A. Smith", "id" : "Dr James A. Smith", + "name" : "Dr James A. Smith", "data" : [ [ "Perl 6", @@ -367,22 +361,18 @@ "id" : "Guillermo Ramos" }, { + "id" : "Ozzy", "data" : [ [ "Perl 6", 21 ] ], - "id" : "Ozzy", "name" : "Ozzy" }, { - "name" : "Veesh Goldman", + "id" : "Veesh Goldman", "data" : [ - [ - "Perl 6", - 2 - ], [ "Blog", 3 @@ -390,56 +380,59 @@ [ "Perl 5", 16 + ], + [ + "Perl 6", + 2 ] ], - "id" : "Veesh Goldman" + "name" : "Veesh Goldman" }, { "id" : "Kevin Colyer", + "name" : "Kevin Colyer", "data" : [ [ "Perl 6", 17 ] - ], - "name" : "Kevin Colyer" + ] }, { - "name" : "Lubos Kolouch", - "id" : "Lubos Kolouch", "data" : [ [ "Perl 5", 17 ] - ] + ], + "name" : "Lubos Kolouch", + "id" : "Lubos Kolouch" }, { - "name" : "Nick Logan", "data" : [ [ - "Perl 6", + "Perl 5", 8 ], [ - "Perl 5", + "Perl 6", 8 ] ], + "name" : "Nick Logan", "id" : "Nick Logan" }, { - "id" : "Duane Powell", + "name" : "Duane Powell", "data" : [ [ "Perl 5", 15 ] ], - "name" : "Duane Powell" + "id" : "Duane Powell" }, { - "id" : "Lars Balker", "data" : [ [ "Perl 6", @@ -450,7 +443,8 @@ 10 ] ], - "name" : "Lars Balker" + "name" : "Lars Balker", + "id" : "Lars Balker" }, { "id" : "Noud", @@ -473,37 +467,37 @@ "id" : "Jaime Corchado" }, { - "name" : "Maxim Nechaev", - "id" : "Maxim Nechaev", "data" : [ [ "Perl 5", 12 ] - ] + ], + "name" : "Maxim Nechaev", + "id" : "Maxim Nechaev" }, { - "name" : "Alicia Bielsa", - "id" : "Alicia Bielsa", "data" : [ [ "Perl 5", 11 ] - ] + ], + "name" : "Alicia Bielsa", + "id" : "Alicia Bielsa" }, { - "name" : "Doug Schrag", + "id" : "Doug Schrag", "data" : [ [ "Perl 6", 10 ] ], - "id" : "Doug Schrag" + "name" : "Doug Schrag" }, { - "name" : "Neil Bowers", + "id" : "Neil Bowers", "data" : [ [ "Blog", @@ -514,11 +508,9 @@ 6 ] ], - "id" : "Neil Bowers" + "name" : "Neil Bowers" }, { - "name" : "Dave Cross", - "id" : "Dave Cross", "data" : [ [ "Blog", @@ -528,11 +520,13 @@ "Perl 5", 6 ] - ] + ], + "name" : "Dave Cross", + "id" : "Dave Cross" }, { - "name" : "Pete Houston", "id" : "Pete Houston", + "name" : "Pete Houston", "data" : [ [ "Perl 5", @@ -551,66 +545,66 @@ "name" : "Randy Lauen" }, { - "id" : "Robert Gratza", + "name" : "Robert Gratza", "data" : [ - [ - "Perl 5", - 2 - ], [ "Perl 6", 6 + ], + [ + "Perl 5", + 2 ] ], - "name" : "Robert Gratza" + "id" : "Robert Gratza" }, { - "id" : "John Barrett", "data" : [ [ "Perl 5", 7 ] ], - "name" : "John Barrett" + "name" : "John Barrett", + "id" : "John Barrett" }, { + "id" : "Khalid", + "name" : "Khalid", "data" : [ [ "Perl 6", 2 ], - [ - "Blog", - 1 - ], [ "Perl 5", 4 + ], + [ + "Blog", + 1 ] - ], - "id" : "Khalid", - "name" : "Khalid" + ] }, { - "name" : "Walt Mankowski", - "id" : "Walt Mankowski", "data" : [ [ "Perl 5", 7 ] - ] + ], + "name" : "Walt Mankowski", + "id" : "Walt Mankowski" }, { - "name" : "Aaron Sherman", "id" : "Aaron Sherman", "data" : [ [ "Perl 6", 6 ] - ] + ], + "name" : "Aaron Sherman" }, { "id" : "Donald Hunter", @@ -627,28 +621,27 @@ "name" : "Donald Hunter" }, { - "id" : "Kivanc Yazan", "data" : [ [ "Perl 5", 6 ] ], - "name" : "Kivanc Yazan" + "name" : "Kivanc Yazan", + "id" : "Kivanc Yazan" }, { + "id" : "Maxim Kolodyazhny", "name" : "Maxim Kolodyazhny", "data" : [ [ "Perl 5", 6 ] - ], - "id" : "Maxim Kolodyazhny" + ] }, { "name" : "Philippe Bruhat", - "id" : "Philippe Bruhat", "data" : [ [ "Blog", @@ -658,7 +651,8 @@ "Perl 5", 4 ] - ] + ], + "id" : "Philippe Bruhat" }, { "id" : "Sergio Iglesias", @@ -672,88 +666,68 @@ } ] }, - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" - }, "chart" : { "type" : "column" }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : "true", - "headerFormat" : "" - }, - "yAxis" : { - "title" : { - "text" : "Total Score" - } - }, - "xAxis" : { - "type" : "category" - }, - "legend" : { - "enabled" : "false" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-08-16 10:33:57 GMT" - }, "series" : [ { + "colorByPoint" : "true", + "name" : "Perl Weekly Challenge Leaders", "data" : [ { - "y" : 218, + "drilldown" : "Laurent Rosenfeld", "name" : "#1: Laurent Rosenfeld", - "drilldown" : "Laurent Rosenfeld" + "y" : 218 }, { + "y" : 216, "drilldown" : "Joelle Maslak", - "name" : "#2: Joelle Maslak", - "y" : 216 + "name" : "#2: Joelle Maslak" }, { + "y" : 172, "name" : "#3: Jaldhar H. Vyas", - "drilldown" : "Jaldhar H. Vyas", - "y" : 172 + "drilldown" : "Jaldhar H. Vyas" }, { + "y" : 148, "name" : "#4: Ruben Westerberg", - "drilldown" : "Ruben Westerberg", - "y" : 148 + "drilldown" : "Ruben Westerberg" }, { - "y" : 130, "drilldown" : "Athanasius", - "name" : "#5: Athanasius" + "name" : "#5: Athanasius", + "y" : 130 }, { - "name" : "#6: Adam Russell", + "y" : 126, "drilldown" : "Adam Russell", - "y" : 126 + "name" : "#6: Adam Russell" }, { + "y" : 112, "name" : "#7: Arne Sommer", - "drilldown" : "Arne Sommer", - "y" : 112 + "drilldown" : "Arne Sommer" }, { - "y" : 102, "drilldown" : "E. Choroba", - "name" : "#8: E. Choroba" + "name" : "#8: E. Choroba", + "y" : 102 }, { - "y" : 92, + "drilldown" : "Francis Whittle", "name" : "#9: Francis Whittle", - "drilldown" : "Francis Whittle" + "y" : 92 }, { - "y" : 90, "drilldown" : "Dave Jacoby", - "name" : "#10: Dave Jacoby" + "name" : "#10: Dave Jacoby", + "y" : 90 }, { "y" : 90, - "name" : "#11: Simon Proctor", - "drilldown" : "Simon Proctor" + "drilldown" : "Simon Proctor", + "name" : "#11: Simon Proctor" }, { "y" : 88, @@ -762,13 +736,13 @@ }, { "y" : 80, - "drilldown" : "Feng Chang", - "name" : "#13: Feng Chang" + "name" : "#13: Andrezgz", + "drilldown" : "Andrezgz" }, { - "drilldown" : "Andrezgz", - "name" : "#14: Andrezgz", - "y" : 76 + "y" : 80, + "name" : "#14: Feng Chang", + "drilldown" : "Feng Chang" }, { "y" : 72, @@ -776,24 +750,24 @@ "name" : "#15: Gustavo Chaves" }, { - "name" : "#16: Yozen Hernandez", "drilldown" : "Yozen Hernandez", + "name" : "#16: Yozen Hernandez", "y" : 70 }, { + "y" : 68, "name" : "#17: Daniel Mantovani", - "drilldown" : "Daniel Mantovani", - "y" : 68 + "drilldown" : "Daniel Mantovani" }, { + "y" : 68, "drilldown" : "Duncan C. White", - "name" : "#18: Duncan C. White", - "y" : 68 + "name" : "#18: Duncan C. White" }, { + "y" : 68, "drilldown" : "Steven Wilson", - "name" : "#19: Steven Wilson", - "y" : 68 + "name" : "#19: Steven Wilson" }, { "y" : 56, @@ -801,14 +775,14 @@ "drilldown" : "Jo Christian Oterhals" }, { - "drilldown" : "Roger Bell West", + "y" : 52, "name" : "#21: Roger Bell West", - "y" : 52 + "drilldown" : "Roger Bell West" }, { - "drilldown" : "Mark Senn", + "y" : 46, "name" : "#22: Mark Senn", - "y" : 46 + "drilldown" : "Mark Senn" }, { "y" : 44, @@ -816,9 +790,9 @@ "name" : "#23: Dr James A. Smith" }, { + "y" : 42, "name" : "#24: Guillermo Ramos", - "drilldown" : "Guillermo Ramos", - "y" : 42 + "drilldown" : "Guillermo Ramos" }, { "y" : 42, @@ -826,9 +800,9 @@ "name" : "#25: Ozzy" }, { + "y" : 42, "drilldown" : "Veesh Goldman", - "name" : "#26: Veesh Goldman", - "y" : 42 + "name" : "#26: Veesh Goldman" }, { "y" : 34, @@ -837,8 +811,8 @@ }, { "y" : 34, - "name" : "#28: Lubos Kolouch", - "drilldown" : "Lubos Kolouch" + "drilldown" : "Lubos Kolouch", + "name" : "#28: Lubos Kolouch" }, { "y" : 32, @@ -846,14 +820,14 @@ "name" : "#29: Nick Logan" }, { + "y" : 30, "name" : "#30: Duane Powell", - "drilldown" : "Duane Powell", - "y" : 30 + "drilldown" : "Duane Powell" }, { - "name" : "#31: Lars Balker", + "y" : 28, "drilldown" : "Lars Balker", - "y" : 28 + "name" : "#31: Lars Balker" }, { "drilldown" : "Noud", @@ -861,9 +835,9 @@ "y" : 28 }, { - "y" : 24, + "drilldown" : "Jaime Corchado", "name" : "#33: Jaime Corchado", - "drilldown" : "Jaime Corchado" + "y" : 24 }, { "y" : 24, @@ -876,14 +850,14 @@ "y" : 22 }, { - "name" : "#36: Doug Schrag", + "y" : 20, "drilldown" : "Doug Schrag", - "y" : 20 + "name" : "#36: Doug Schrag" }, { + "y" : 18, "drilldown" : "Neil Bowers", - "name" : "#37: Neil Bowers", - "y" : 18 + "name" : "#37: Neil Bowers" }, { "name" : "#38: Dave Cross", @@ -891,9 +865,9 @@ "y" : 16 }, { + "y" : 16, "name" : "#39: Pete Houston", - "drilldown" : "Pete Houston", - "y" : 16 + "drilldown" : "Pete Houston" }, { "y" : 16, @@ -901,58 +875,84 @@ "name" : "#40: Randy Lauen" }, { - "name" : "#41: Robert Gratza", + "y" : 16, "drilldown" : "Robert Gratza", - "y" : 16 + "name" : "#41: Robert Gratza" }, { + "y" : 14, "drilldown" : "John Barrett", - "name" : "#42: John Barrett", - "y" : 14 + "name" : "#42: John Barrett" }, { - "y" : 14, "name" : "#43: Khalid", - "drilldown" : "Khalid" + "drilldown" : "Khalid", + "y" : 14 }, { - "name" : "#44: Walt Mankowski", "drilldown" : "Walt Mankowski", + "name" : "#44: Walt Mankowski", "y" : 14 }, { - "y" : 12, + "name" : "#45: Aaron Sherman", "drilldown" : "Aaron Sherman", - "name" : "#45: Aaron Sherman" + "y" : 12 }, { "y" : 12, - "drilldown" : "Donald Hunter", - "name" : "#46: Donald Hunter" + "name" : "#46: Donald Hunter", + "drilldown" : "Donald Hunter" }, { "y" : 12, - "drilldown" : "Kivanc Yazan", - "name" : "#47: Kivanc Yazan" + "name" : "#47: Kivanc Yazan", + "drilldown" : "Kivanc Yazan" }, { - "name" : "#48: Maxim Kolodyazhny", + "y" : 12, "drilldown" : "Maxim Kolodyazhny", - "y" : 12 + "name" : "#48: Maxim Kolodyazhny" }, { - "name" : "#49: Philippe Bruhat", + "y" : 12, "drilldown" : "Philippe Bruhat", - "y" : 12 + "name" : "#49: Philippe Bruhat" }, { "y" : 12, "drilldown" : "Sergio Iglesias", "name" : "#50: Sergio Iglesias" } - ], - "colorByPoint" : "true", - "name" : "Perl Weekly Challenge Leaders" + ] + } + ], + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-08-17 05:07:58 GMT" + }, + "yAxis" : { + "title" : { + "text" : "Total Score" + } + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } } - ] + }, + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : "true", + "headerFormat" : "" + }, + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" + }, + "legend" : { + "enabled" : "false" + } } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index d4db2a223c..b0d617d582 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -1,56 +1,20 @@ { + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-08-17 05:07:46 GMT" + }, "tooltip" : { "pointFormat" : "{series.name}: {point.y}
", "shared" : 1 }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-08-16 10:32:35 GMT" - }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" } }, "chart" : { "type" : "column" }, - "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", @@ -63,7 +27,7 @@ 0, 0, 11, - 38, + 40, 0, 0, 5, @@ -158,10 +122,46 @@ "name" : "Blog" } ], - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "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" + ] + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" } } diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index bfc4d86efe..6476ee768f 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -1,22 +1,7 @@ { - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-08-16 10:32:35 GMT" - }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, "title" : { "text" : "Perl Weekly Challenge - 2019" }, - "chart" : { - "type" : "column" - }, "xAxis" : { "categories" : [ "Finley", @@ -88,7 +73,6 @@ "name" : "Perl 5" }, { - "name" : "Perl 6", "data" : [ 4, 37, @@ -120,7 +104,8 @@ 1, 0, 0 - ] + ], + "name" : "Perl 6" }, { "data" : [ @@ -158,10 +143,25 @@ "name" : "Blog" } ], + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "chart" : { + "type" : "column" + }, "yAxis" : { + "min" : 0, "title" : { "text" : "" - }, - "min" : 0 + } + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-08-17 05:07:46 GMT" } } diff --git a/stats/pwc-summary-61-90.json b/stats/pwc-summary-61-90.json index b35bb7364d..952f25b599 100644 --- a/stats/pwc-summary-61-90.json +++ b/stats/pwc-summary-61-90.json @@ -1,10 +1,22 @@ { + "chart" : { + "type" : "column" + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" + } + }, "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 }, "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-08-16 10:32:35 GMT" + "text" : "[Champions: 30] Last updated at 2019-08-17 05:07:46 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" }, "xAxis" : { "categories" : [ @@ -40,23 +52,11 @@ "Sean Meininger" ] }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, - "chart" : { - "type" : "column" - }, "plotOptions" : { "column" : { "stacking" : "percent" } }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } - }, "series" : [ { "name" : "Perl 5", @@ -94,7 +94,6 @@ ] }, { - "name" : "Perl 6", "data" : [ 16, 3, @@ -126,10 +125,10 @@ 5, 37, 3 - ] + ], + "name" : "Perl 6" }, { - "name" : "Blog", "data" : [ 7, 0, @@ -161,7 +160,8 @@ 5, 0, 0 - ] + ], + "name" : "Blog" } ] } diff --git a/stats/pwc-summary-91-120.json b/stats/pwc-s