From 1a9efd4d05baba135fdb2ef912bbf53589ad2b60 Mon Sep 17 00:00:00 2001 From: ohmycloud Date: Tue, 2 Apr 2019 23:07:07 +0800 Subject: add user ohmycloud --- challenge-002/ohmycloud/README | 1 + challenge-002/ohmycloud/perl6/ch-1.p6 | 3 +++ challenge-002/ohmycloud/perl6/ch-2.p6 | 13 +++++++++++++ 3 files changed, 17 insertions(+) create mode 100644 challenge-002/ohmycloud/README create mode 100644 challenge-002/ohmycloud/perl6/ch-1.p6 create mode 100644 challenge-002/ohmycloud/perl6/ch-2.p6 diff --git a/challenge-002/ohmycloud/README b/challenge-002/ohmycloud/README new file mode 100644 index 0000000000..e993fafea7 --- /dev/null +++ b/challenge-002/ohmycloud/README @@ -0,0 +1 @@ +Solution by Ohmycloud diff --git a/challenge-002/ohmycloud/perl6/ch-1.p6 b/challenge-002/ohmycloud/perl6/ch-1.p6 new file mode 100644 index 0000000000..6cd4ddd03c --- /dev/null +++ b/challenge-002/ohmycloud/perl6/ch-1.p6 @@ -0,0 +1,3 @@ +for <00040 03.5 00.002 .02 .3 0.03> -> $n { + say ($n ~~ /^ 0* %% /).postmatch; +} diff --git a/challenge-002/ohmycloud/perl6/ch-2.p6 b/challenge-002/ohmycloud/perl6/ch-2.p6 new file mode 100644 index 0000000000..fb61967308 --- /dev/null +++ b/challenge-002/ohmycloud/perl6/ch-2.p6 @@ -0,0 +1,13 @@ +# convert from base35 to base10 +sub decimal-to-base35(Str $n) { + :35($n.Str) +} + +say decimal-to-base35("OOM"); + +# convert from base10 to base35 +sub base35-to-decimal(Int $n) { + $n.base(35) +} + +say base35-to-decimal(30262); \ No newline at end of file -- cgit From 01c4ceda01fe634ae72d6f132c20eadbb629fa71 Mon Sep 17 00:00:00 2001 From: Alexander <39702500+threadless-screw@users.noreply.github.com> Date: Wed, 3 Apr 2019 20:50:12 +0000 Subject: Create ch-1.p6 --- challenge-002/ozzy/perl6/ch-1.p6 | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 challenge-002/ozzy/perl6/ch-1.p6 diff --git a/challenge-002/ozzy/perl6/ch-1.p6 b/challenge-002/ozzy/perl6/ch-1.p6 new file mode 100644 index 0000000000..cd98d990b9 --- /dev/null +++ b/challenge-002/ozzy/perl6/ch-1.p6 @@ -0,0 +1,16 @@ +#!/usr/bin/env perl6 +# The simplest solution I could think of was conversion of a numeric (integer) string through +# the use of the built-in Int method. Provide a commandline argument like "004", and the script +# will output: 4. +# +# In a Perl6/Bash one-liner, this would look something like this: +# perl6 -pe '$_=.Int' <<< "004" +# but this, in itself, isn't very practical since Bash can do it with even less fuzz: +# a="004" +# echo ${a##+(0)} + +sub MAIN (Str $numeric_string) { + + say $numeric_string.Int; +} + -- cgit From 4db60445891bf5b0542d858455711b0d11fd5f2d Mon Sep 17 00:00:00 2001 From: Alexander <39702500+threadless-screw@users.noreply.github.com> Date: Wed, 3 Apr 2019 20:52:48 +0000 Subject: Create ch-2.p6 --- challenge-002/ozzy/perl6/ch-2.p6 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 challenge-002/ozzy/perl6/ch-2.p6 diff --git a/challenge-002/ozzy/perl6/ch-2.p6 b/challenge-002/ozzy/perl6/ch-2.p6 new file mode 100644 index 0000000000..bda3f4c372 --- /dev/null +++ b/challenge-002/ozzy/perl6/ch-2.p6 @@ -0,0 +1,12 @@ +#!/usr/bin/env perl6 +# The obvious way to go is probably the use of Perl6' .base and .parse-base methods: + +loop { + + my Str $a = prompt("\nPlease, give me a decimal (base-10) number : "); + say("$a in decimal notation is { $a.Int.base(35) } in base-35 notation."); + + $a = prompt("\nNow give me a base-35 number [A-Y0-9]: "); + say("$a in base-35 notation is { $a.parse-base(35) } in base-10 notation.") + + } -- cgit From e66c99df361b026bb1b7af6dcfeda8a6607767cf Mon Sep 17 00:00:00 2001 From: Alexander <39702500+threadless-screw@users.noreply.github.com> Date: Wed, 3 Apr 2019 20:53:24 +0000 Subject: Update README --- challenge-002/ozzy/README | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/challenge-002/ozzy/README b/challenge-002/ozzy/README index 40d33b4f43..44e39371ef 100644 --- a/challenge-002/ozzy/README +++ b/challenge-002/ozzy/README @@ -1,36 +1 @@ Solution by Ozzy - ------------- -Challenge 1: ------------- -The simplest solution I could think of was conversion of a numeric (integer) string through -the use of the built-in Int method: - - my $a = "004" # Example string representing positive integer with leading zeros - my $b = $a.Int # Convert string to Int using built-in method Int, and so strip zeros - say $b # Print the Int; OUTPUT: 4 - -In a Perl6/Bash one-liner, this would look something like this: - - perl6 -pe '$_=.Int' <<< 004 - -but this, in itself, isn't very practical since Bash can do it with even less fuzz: - - a="004" - echo ${a##+(0)} - ------------- -Challenge 2: ------------- -The obvious way to go is probably the use of Perl6' .base and .parse-base methods: - -loop { - - my Str $a = prompt("\nPlease, give me a decimal (base-10) number : "); - say("$a in decimal notation is { $a.Int.base(35) } in base-35 notation."); - - $a = prompt("\nNow give me a base-35 number [A-Y0-9]: "); - say("$a in base-35 notation is { $a.parse-base(35) } in base-10 notation.") - -} - -- cgit From 9a2b0d4d705046ff50f9ec0a3e953fd5ed62518f Mon Sep 17 00:00:00 2001 From: bagheera-sands Date: Wed, 3 Apr 2019 23:08:31 +0100 Subject: fixes to do 2nd half of problem and to use currying in perl6 --- challenge-002/james-smith/perl5/ch-2.pl | 16 +++++++--------- challenge-002/james-smith/perl6/ch-2.p6 | 13 +++++++++++-- 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/challenge-002/james-smith/perl5/ch-2.pl b/challenge-002/james-smith/perl5/ch-2.pl index e807b1731a..a7922d205f 100644 --- a/challenge-002/james-smith/perl5/ch-2.pl +++ b/challenge-002/james-smith/perl5/ch-2.pl @@ -1,13 +1,11 @@ use strict; +use v5.26; -sub base35 { - my $o = ''; - for( shift; $_; ) { - $_ = ( $_ - (my $t = $_%35) )/ 35; - $o .= chr $t+($t<10?48:55); - } - return scalar reverse $o; -} +sub r35 {$_[0]?r35(substr $_[0],0,-1)*35+z(substr $_[0],-1):0} +sub b35 {$_[0]?b35(int$_[0]/35).x($_[0]%35):''} +sub x {chr$_[0]+($_[0]<10?48:55)} +sub z {(ord$_[0])-($_[0]=~/\d/?48:55)} -print $_,"\t", base35( $_ ),"\n" foreach @ARGV; +say b35 $_ for @ARGV; +say r35 b35 $_ for @ARGV; diff --git a/challenge-002/james-smith/perl6/ch-2.p6 b/challenge-002/james-smith/perl6/ch-2.p6 index 80d37995c2..9b9308b025 100644 --- a/challenge-002/james-smith/perl6/ch-2.p6 +++ b/challenge-002/james-smith/perl6/ch-2.p6 @@ -1,3 +1,12 @@ sub mp($n) {chr $n+($n < 10??48!!55)} -sub b35($n) {$n??b35(floor $n/35)~mp($n%35)!!''} -say b35 $_ for @*ARGS; +sub mb($n) {(ord $n)-($n ~~ /\d/ ?? 48 !! 55)} +sub to_base($r,$n){$n??to_base($r,floor $n/$r)~mp($n%$r)!!''} +sub from_base($r,$n){$n??from_base($r,substr $n,0,*-1)*$r+mb(substr $n,*-1)!!0} +sub convert($from,$to,$n){to_base($to,from_base($from,$n))} +my &to_35 = &to_base.assuming(35); +my &fr_35 = &from_base.assuming(35); +my &hx2b35 = &convert.assuming(16).assuming(35); + +say to_35 $_ for @*ARGS; +say fr_35 to_35 $_ for @*ARGS; +say hx2b35 $_.fmt('%X') for @*ARGS; -- cgit From 2d315d3bcecf214960ec1a9a8db89eed885b0714 Mon Sep 17 00:00:00 2001 From: agimenez Date: Wed, 3 Apr 2019 21:08:48 -0300 Subject: Solution challenge-002 andrezgz --- challenge-002/andrezgz/README | 1 + challenge-002/andrezgz/perl5/ch-1.pl | 41 ++++++++++++++++++++++++++++ challenge-002/andrezgz/perl5/ch-2.pl | 52 ++++++++++++++++++++++++++++++++++++ 3 files changed, 94 insertions(+) create mode 100644 challenge-002/andrezgz/README create mode 100644 challenge-002/andrezgz/perl5/ch-1.pl create mode 100644 challenge-002/andrezgz/perl5/ch-2.pl diff --git a/challenge-002/andrezgz/README b/challenge-002/andrezgz/README new file mode 100644 index 0000000000..f4fd0da88e --- /dev/null +++ b/challenge-002/andrezgz/README @@ -0,0 +1 @@ +Solution by Andrezgz diff --git a/challenge-002/andrezgz/perl5/ch-1.pl b/challenge-002/andrezgz/perl5/ch-1.pl new file mode 100644 index 0000000000..36addeca96 --- /dev/null +++ b/challenge-002/andrezgz/perl5/ch-1.pl @@ -0,0 +1,41 @@ +#!/usr/bin/perl + +# https://perlweeklychallenge.org/blog/perl-weekly-challenge-002/ +# Challenge #1 +# Write a script or one-liner to remove leading zeros from positive numbers. + +# Wikipedia - https://en.wikipedia.org/wiki/Leading_zero +# A leading zero is any 0 digit that comes before the first nonzero digit +# in a number string in positional notation. +# When leading zeros occupy the most significant digits of an integer, +# they could be left blank or omitted for the same numeric value. +# Therefore, the usual decimal notation of integers does not use leading zeros +# except for the zero itself, which would be denoted as an empty string otherwise. + +# Non-numeric data +# 0a -> 0a +# a -> a + +# Non-positive numbers +# 0 -> 0 +# 0. -> 0. +# 0.0 -> 0.0 +# 00 -> 00 +# 00. -> 00. +# 00.0 -> 00.0 +# -01 -> -01 +# -01. -> -01. +# -01.0 -> -01.0 + +# Leading zeros on positive numbers +# 01 -> 1 +# 01. -> 1. +# 01.0 -> 1.0 +# 010.0 -> 10.0 + +use strict; + +my $number = @ARGV[0]; + +$number =~ s/^0+([1-9][0-9]*(:?[.,]\d*)?)$/$1/; +print $number; diff --git a/challenge-002/andrezgz/perl5/ch-2.pl b/challenge-002/andrezgz/perl5/ch-2.pl new file mode 100644 index 0000000000..0f005d4553 --- /dev/null +++ b/challenge-002/andrezgz/perl5/ch-2.pl @@ -0,0 +1,52 @@ +#!/usr/bin/perl + +# https://perlweeklychallenge.org/blog/perl-weekly-challenge-002/ +# Challenge #2 +# Write a script that can convert integers to and from a base35 representation, +# using the characters 0-9 and A-Y. Dave Jacoby came up with nice description about base35, +# in case you needed some background. +# https://gist.github.com/jacoby/764bb4e8a5d3a819b5fbfa497fcb3454 + +#Usage +# ch-2.pl --to-base35 +# ch-2.pl --from-base35 + +use strict; + +my @base = (0..9,'A' .. 'Y'); + +print to_base35($ARGV[1]) if ($ARGV[0] eq '--to-base35'); +print from_base35($ARGV[1]) if ($ARGV[0] eq '--from-base35'); + + +sub to_base35 { + my ($i) = @_; + + return 0 if ($i == 0); + + my $sign = ($i =~ s/-//) ? '-' : ''; + + my $result; + + while ($i > 0) { + $result .= $base[$i % @base]; + $i = int($i / @base); + } + return $sign . reverse $result; +} + +sub from_base35 { + my ($t) = @_; + $t = reverse $t; + + my $sign = ($t =~ s/-//) ? '-' : ''; + + my $result = 0; + + for my $i (0..length($t)-1){ + my $c = substr($t, $i, 1); + my ($index) = grep { $base[$_] eq $c } (0 .. @base-1); + $result += $index * ( @base ** $i ); + } + return $sign . $result; +} -- cgit From aa2d8f2c52a73a2980a13e24e5aba083ee35ef63 Mon Sep 17 00:00:00 2001 From: agimenez Date: Wed, 3 Apr 2019 21:12:58 -0300 Subject: Solution challenge-001 andrezgz --- challenge-001/andrezgz/README | 1 + challenge-001/andrezgz/perl5/ch-1.pl | 14 +++++++++++ challenge-001/andrezgz/perl5/ch-2.sh | 47 ++++++++++++++++++++++++++++++++++++ 3 files changed, 62 insertions(+) create mode 100644 challenge-001/andrezgz/README create mode 100644 challenge-001/andrezgz/perl5/ch-1.pl create mode 100644 challenge-001/andrezgz/perl5/ch-2.sh diff --git a/challenge-001/andrezgz/README b/challenge-001/andrezgz/README new file mode 100644 index 0000000000..f4fd0da88e --- /dev/null +++ b/challenge-001/andrezgz/README @@ -0,0 +1 @@ +Solution by Andrezgz diff --git a/challenge-001/andrezgz/perl5/ch-1.pl b/challenge-001/andrezgz/perl5/ch-1.pl new file mode 100644 index 0000000000..c39458af73 --- /dev/null +++ b/challenge-001/andrezgz/perl5/ch-1.pl @@ -0,0 +1,14 @@ +#!/usr/bin/perl + +# https://perlweeklychallenge.org/blog/a-new-week-a-new-challenge/ +# Challenge #1 +# Write a script to replace the character ‘e’ with ‘E’ in the string ‘Perl Weekly Challenge’. +# Also print the number of times the character ‘e’ found in the string. + +use strict; + +my $str = 'Perl Weekly Challenge'; + +my $c = ($str =~ tr/e/E/); + +print $str . ' had ' . $c . ' e\'s that were replaced by E\'s'; diff --git a/challenge-001/andrezgz/perl5/ch-2.sh b/challenge-001/andrezgz/perl5/ch-2.sh new file mode 100644 index 0000000000..e3471a0222 --- /dev/null +++ b/challenge-001/andrezgz/perl5/ch-2.sh @@ -0,0 +1,47 @@ +# https://perlweeklychallenge.org/blog/a-new-week-a-new-challenge/ +# Challenge #2 +# Write a one-liner to solve the FizzBuzz problem and print the numbers 1 through 20. +# However, any number divisible by 3 should be replaced by the word ‘fizz’ and any divisible by 5 +# by the word ‘buzz’. Those numbers that are both divisible by 3 and 5 become ‘fizzbuzz’. + + +perl -e ' + map { + print ( + (!($_ % 15) + ? "fizzbuzz" + : !($_ % 3) + ? "fizz" + : !($_ % 5) + ? "buzz" + : $_) + . "\n" + ) + } (1..20) +' + +perl -e ' + map { + print ( + (!($_ % 15) + ? "fizzbuzz" : "" + .!($_ % 3) + ? "fizz" : "" + .!($_ % 5) + ? "buzz" : "" + . $_) + . $/ + ) + } (1..20) +' + + +perl -e ' + print join $/, map { + my $d = $_; + $_ = "fizz" unless ($d % 3); + $_ = "buzz" unless ($d % 5); + $_ = "fizzbuzz" unless ($d % 15); + $_ + } (1..20) +' -- cgit From 0e56fa880e077bf8a63a82ecd67758de35061e08 Mon Sep 17 00:00:00 2001 From: bagheera-sands Date: Thu, 4 Apr 2019 09:52:19 +0100 Subject: adding challenge 1 perl solutions and updating readme for challenge2 --- challenge-001/james-smith/perl6/ch-1.sh | 1 + challenge-001/james-smith/perl6/ch-2.sh | 1 + 2 files changed, 2 insertions(+) create mode 100644 challenge-001/james-smith/perl6/ch-1.sh create mode 100644 challenge-001/james-smith/perl6/ch-2.sh diff --git a/challenge-001/james-smith/perl6/ch-1.sh b/challenge-001/james-smith/perl6/ch-1.sh new file mode 100644 index 0000000000..97acafca4b --- /dev/null +++ b/challenge-001/james-smith/perl6/ch-1.sh @@ -0,0 +1 @@ +perl6 -e 'say Int( (my $s = "Perl Weekly Challenge" ) ~~ tr/e/E/); say $s;' diff --git a/challenge-001/james-smith/perl6/ch-2.sh b/challenge-001/james-smith/perl6/ch-2.sh new file mode 100644 index 0000000000..0ca8913e1f --- /dev/null +++ b/challenge-001/james-smith/perl6/ch-2.sh @@ -0,0 +1 @@ +perl6 -e 'say (($_%3??""!!"Fizz") ~ ($_%5??""!!"Buzz")||$_) for 1..20;' -- cgit From a632216a087e7a7a82cc505992259f0e260c81df Mon Sep 17 00:00:00 2001 From: bagheera-sands Date: Thu, 4 Apr 2019 10:20:46 +0100 Subject: added readme. --- challenge-002/james-smith/README | 1 - challenge-002/james-smith/README.md | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) delete mode 100644 challenge-002/james-smith/README create mode 100644 challenge-002/james-smith/README.md diff --git a/challenge-002/james-smith/README b/challenge-002/james-smith/README deleted file mode 100644 index 573d9eb02a..0000000000 --- a/challenge-002/james-smith/README +++ /dev/null @@ -1 +0,0 @@ -Solution by James Smith diff --git a/challenge-002/james-smith/README.md b/challenge-002/james-smith/README.md new file mode 100644 index 0000000000..7ccf2dd6d9 --- /dev/null +++ b/challenge-002/james-smith/README.md @@ -0,0 +1,20 @@ +Solution by James Smith + +## Perl6 solution - currying + +Just learning Perl 6 - so thought I'd look at some of the functionality. +This challenge just asked for the use of **currying** as base conversion (at least <= 36 is similar for all bases....) + +> **Currying** is a technique to reduce the number of argument of a function by creating a wrapper function that substitutes some predefined values of the original function. + +In this case we construct a function which convert functions which convert from decimal to an arbitrary base (<=36) and visa versa. In the code these are `to_base` and `from_base`. Which take two numbers the base (or radix) and the number/string to convert. To *golf* this challenge the code is written recursively. + +To create the specific base35 functions (`to_35` and `fr_35`) we use `assuming` to curry these functions to the ones we want.... + +I've also included an arbitrary base conversion function which again can use currying (twice) to generate a specific converter - here I've created a `hx2b35` function. + +### Notes + +To be honest this is not the most efficient way of completing this challenge the performance of the curried functions is not that good in comparison to a hard coded version of to_base/from_base... + + -- cgit From 407a873e4ed823cf279f57c5b51f7ca5738f1948 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Thu, 4 Apr 2019 11:13:55 +0100 Subject: - Updated chart data. --- stats/pwc-challenge-001.json | 372 ++++++++++++++++++++++--------------------- stats/pwc-current.json | 354 +++++++++++++++++++++------------------- stats/pwc-master-stats.json | 160 +++++++++---------- stats/pwc-summary-1-30.json | 34 ++-- stats/pwc-summary-31-60.json | 48 +++--- stats/pwc-summary.json | 45 +++--- 6 files changed, 525 insertions(+), 488 deletions(-) diff --git a/stats/pwc-challenge-001.json b/stats/pwc-challenge-001.json index 79ab5ce073..115d42a9f4 100644 --- a/stats/pwc-challenge-001.json +++ b/stats/pwc-challenge-001.json @@ -1,32 +1,32 @@ { "subtitle" : { - "text" : "[Champions: 51] Last updated at 2019-04-03 20:00:16 GMT" + "text" : "[Champions: 51] Last updated at 2019-04-04 10:10:08 GMT" + }, + "tooltip" : { + "followPointer" : 1, + "pointerFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "{series.name}
" }, "title" : { "text" : "Perl Weekly Challenge - CURRENT" }, - "legend" : { - "enabled" : 0 - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, "plotOptions" : { "series" : { - "borderWidth" : 0, "dataLabels" : { "format" : "{point.y}", "enabled" : 1 - } + }, + "borderWidth" : 0 } }, + "xAxis" : { + "type" : "category" + }, "drilldown" : { "series" : [ { - "name" : "Adam Russell", "id" : "Adam Russell", + "name" : "Adam Russell", "data" : [ [ "Perl 5", @@ -36,63 +36,63 @@ }, { "id" : "Alex Daniel", + "name" : "Alex Daniel", "data" : [ [ "Perl 6", 2 ] - ], - "name" : "Alex Daniel" + ] }, { "name" : "Antonio Gamiz", + "id" : "Antonio Gamiz", "data" : [ [ "Perl 6", 2 ] - ], - "id" : "Antonio Gamiz" + ] }, { - "name" : "Arpad Toth", - "id" : "Arpad Toth", "data" : [ [ "Perl 5", 2 ] - ] + ], + "name" : "Arpad Toth", + "id" : "Arpad Toth" }, { - "name" : "Athanasius", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Athanasius" + "id" : "Athanasius", + "name" : "Athanasius" }, { + "id" : "Bob Kleemann", + "name" : "Bob Kleemann", "data" : [ [ "Perl 5", 2 ] - ], - "id" : "Bob Kleemann", - "name" : "Bob Kleemann" + ] }, { - "name" : "Daniel Mantovani", - "id" : "Daniel Mantovani", "data" : [ [ "Perl 5", 1 ] - ] + ], + "name" : "Daniel Mantovani", + "id" : "Daniel Mantovani" }, { "data" : [ @@ -105,64 +105,64 @@ "name" : "Dave Cross" }, { + "name" : "Dave Jacoby", + "id" : "Dave Jacoby", "data" : [ [ "Perl 5", 1 ] - ], - "id" : "Dave Jacoby", - "name" : "Dave Jacoby" + ] }, { "name" : "David Kayal", + "id" : "David Kayal", "data" : [ [ "Perl 5", 2 ] - ], - "id" : "David Kayal" + ] }, { - "id" : "Doug Schrag", "data" : [ [ "Perl 6", 2 ] ], - "name" : "Doug Schrag" + "name" : "Doug Schrag", + "id" : "Doug Schrag" }, { - "name" : "Duncan C. White", - "id" : "Duncan C. White", "data" : [ [ "Perl 5", 2 ] - ] + ], + "name" : "Duncan C. White", + "id" : "Duncan C. White" }, { "name" : "Eddy HS", + "id" : "Eddy HS", "data" : [ [ "Perl 5", 2 ] - ], - "id" : "Eddy HS" + ] }, { "name" : "Finley", + "id" : "Finley", "data" : [ [ "Perl 6", 2 ] - ], - "id" : "Finley" + ] }, { "data" : [ @@ -171,17 +171,17 @@ 1 ] ], - "id" : "Fred Zinn", - "name" : "Fred Zinn" + "name" : "Fred Zinn", + "id" : "Fred Zinn" }, { - "id" : "Freddie B", "data" : [ [ "Perl 5", 2 ] ], + "id" : "Freddie B", "name" : "Freddie B" }, { @@ -196,6 +196,7 @@ }, { "name" : "Jaldhar H. Vyas", + "id" : "Jaldhar H. Vyas", "data" : [ [ "Perl 5", @@ -205,32 +206,35 @@ "Perl 6", 2 ] - ], - "id" : "Jaldhar H. Vyas" + ] }, { "name" : "Dr James A. Smith", + "id" : "Dr James A. Smith", "data" : [ [ "Perl 5", 2 + ], + [ + "Perl 6", + 2 ] - ], - "id" : "Dr James A. Smith" + ] }, { - "name" : "Jeff", "data" : [ [ "Perl 5", 2 ] ], + "name" : "Jeff", "id" : "Jeff" }, { - "name" : "Jeremy Carman", "id" : "Jeremy Carman", + "name" : "Jeremy Carman", "data" : [ [ "Perl 5", @@ -263,7 +267,6 @@ ] }, { - "id" : "Jo Christian Oterhals", "data" : [ [ "Perl 5", @@ -274,7 +277,8 @@ 2 ] ], - "name" : "Jo Christian Oterhals" + "name" : "Jo Christian Oterhals", + "id" : "Jo Christian Oterhals" }, { "data" : [ @@ -292,23 +296,23 @@ }, { "id" : "John Barrett", + "name" : "John Barrett", "data" : [ [ "Perl 5", 1 ] - ], - "name" : "John Barrett" + ] }, { "id" : "Juan Caballero", + "name" : "Juan Caballero", "data" : [ [ "Perl 5", 2 ] - ], - "name" : "Juan Caballero" + ] }, { "data" : [ @@ -317,22 +321,22 @@ 2 ] ], - "id" : "Khalid", - "name" : "Khalid" + "name" : "Khalid", + "id" : "Khalid" }, { - "id" : "Kian-Meng Ang", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Kian-Meng Ang" + "name" : "Kian-Meng Ang", + "id" : "Kian-Meng Ang" }, { - "name" : "Kivanc Yazan", "id" : "Kivanc Yazan", + "name" : "Kivanc Yazan", "data" : [ [ "Perl 5", @@ -369,24 +373,24 @@ "name" : "Laurent Rosenfeld" }, { + "name" : "Mark Senn", "id" : "Mark Senn", "data" : [ [ "Perl 6", 2 ] - ], - "name" : "Mark Senn" + ] }, { + "id" : "Martin Mugeni", + "name" : "Martin Mugeni", "data" : [ [ "Perl 6", 2 ] - ], - "id" : "Martin Mugeni", - "name" : "Martin Mugeni" + ] }, { "data" : [ @@ -399,8 +403,8 @@ "name" : "Neil Bowers" }, { - "name" : "Nick Logan", "id" : "Nick Logan", + "name" : "Nick Logan", "data" : [ [ "Perl 5", @@ -413,44 +417,44 @@ ] }, { - "name" : "Oleskii Tsvitenov", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Oleskii Tsvitenov" + "id" : "Oleskii Tsvitenov", + "name" : "Oleskii Tsvitenov" }, { - "id" : "Ozzy", "data" : [ [ "Perl 6", 2 ] ], + "id" : "Ozzy", "name" : "Ozzy" }, { - "name" : "Pavel Jurca", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Pavel Jurca" + "id" : "Pavel Jurca", + "name" : "Pavel Jurca" }, { "name" : "Pete Houston", + "id" : "Pete Houston", "data" : [ [ "Perl 5", 2 ] - ], - "id" : "Pete Houston" + ] }, { "data" : [ @@ -459,32 +463,30 @@ 2 ] ], - "id" : "Philippe Bruhat", - "name" : "Philippe Bruhat" + "name" : "Philippe Bruhat", + "id" : "Philippe Bruhat" }, { "id" : "Prajith P", + "name" : "Prajith P", "data" : [ [ "Perl 5", 1 ] - ], - "name" : "Prajith P" + ] }, { + "name" : "Sean Meininger", "id" : "Sean Meininger", "data" : [ [ "Perl 6", 2 ] - ], - "name" : "Sean Meininger" + ] }, { - "name" : "Simon Proctor", - "id" : "Simon Proctor", "data" : [ [ "Perl 5", @@ -494,20 +496,21 @@ "Perl 6", 2 ] - ] + ], + "id" : "Simon Proctor", + "name" : "Simon Proctor" }, { "name" : "Simon Reinhardt", + "id" : "Simon Reinhardt", "data" : [ [ "Perl 5", 2 ] - ], - "id" : "Simon Reinhardt" + ] }, { - "id" : "Steve Rogerson", "data" : [ [ "Perl 5", @@ -518,27 +521,28 @@ 2 ] ], - "name" : "Steve Rogerson" + "name" : "Steve Rogerson", + "id" : "Steve Rogerson" }, { - "id" : "Steven Wilson", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Steven Wilson" + "name" : "Steven Wilson", + "id" : "Steven Wilson" }, { "id" : "Tiago Stock", + "name" : "Tiago Stock", "data" : [ [ "Perl 5", 1 ] - ], - "name" : "Tiago Stock" + ] }, { "name" : "Tore Andersson", @@ -561,55 +565,53 @@ ] }, { - "name" : "William Gilmore", - "id" : "William Gilmore", "data" : [ [ "Perl 5", 1 ] - ] + ], + "name" : "William Gilmore", + "id" : "William Gilmore" } ] }, - "tooltip" : { - "headerFormat" : "{series.name}
", - "followPointer" : 1, - "pointerFormat" : "{point.name}: {point.y:f}
" + "chart" : { + "type" : "column" }, "series" : [ { - "name" : "Champions", "colorByPoint" : 1, + "name" : "Champions", "data" : [ { - "y" : 2, "name" : "Adam Russell", - "drilldown" : "Adam Russell" + "drilldown" : "Adam Russell", + "y" : 2 }, { - "drilldown" : "Alex Daniel", "name" : "Alex Daniel", - "y" : 2 + "y" : 2, + "drilldown" : "Alex Daniel" }, { "name" : "Antonio Gamiz", - "drilldown" : "Antonio Gamiz", - "y" : 2 + "y" : 2, + "drilldown" : "Antonio Gamiz" }, { - "y" : 2, "drilldown" : "Arpad Toth", + "y" : 2, "name" : "Arpad Toth" }, { + "name" : "Athanasius", "y" : 2, - "drilldown" : "Athanasius", - "name" : "Athanasius" + "drilldown" : "Athanasius" }, { - "y" : 2, "name" : "Bob Kleemann", + "y" : 2, "drilldown" : "Bob Kleemann" }, { @@ -618,19 +620,19 @@ "y" : 1 }, { - "y" : 2, + "name" : "Dave Cross", "drilldown" : "Dave Cross", - "name" : "Dave Cross" + "y" : 2 }, { - "y" : 1, "name" : "Dave Jacoby", + "y" : 1, "drilldown" : "Dave Jacoby" }, { "name" : "David Kayal", - "drilldown" : "David Kayal", - "y" : 2 + "y" : 2, + "drilldown" : "David Kayal" }, { "name" : "Doug Schrag", @@ -638,89 +640,89 @@ "y" : 2 }, { - "y" : 2, "drilldown" : "Duncan C. White", + "y" : 2, "name" : "Duncan C. White" }, { - "drilldown" : "Eddy HS", "name" : "Eddy HS", - "y" : 2 + "y" : 2, + "drilldown" : "Eddy HS" }, { - "y" : 2, + "name" : "Finley", "drilldown" : "Finley", - "name" : "Finley" + "y" : 2 }, { - "name" : "Fred Zinn", + "y" : 1, "drilldown" : "Fred Zinn", - "y" : 1 + "name" : "Fred Zinn" }, { - "name" : "Freddie B", + "y" : 2, "drilldown" : "Freddie B", - "y" : 2 + "name" : "Freddie B" }, { + "y" : 1, "drilldown" : "Gustavo Chaves", - "name" : "Gustavo Chaves", - "y" : 1 + "name" : "Gustavo Chaves" }, { "y" : 4, - "name" : "Jaldhar H. Vyas", - "drilldown" : "Jaldhar H. Vyas" + "drilldown" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas" }, { - "name" : "Dr James A. Smith", "drilldown" : "Dr James A. Smith", - "y" : 2 + "y" : 4, + "name" : "Dr James A. Smith" }, { - "y" : 2, + "name" : "Jeff", "drilldown" : "Jeff", - "name" : "Jeff" + "y" : 2 }, { - "y" : 2, "name" : "Jeremy Carman", - "drilldown" : "Jeremy Carman" + "drilldown" : "Jeremy Carman", + "y" : 2 }, { + "drilldown" : "Jim Bacon", "y" : 1, - "name" : "Jim Bacon", - "drilldown" : "Jim Bacon" + "name" : "Jim Bacon" }, { "drilldown" : "JJ Merelo", - "name" : "JJ Merelo", - "y" : 1 + "y" : 1, + "name" : "JJ Merelo" }, { - "name" : "Jo Christian Oterhals", + "y" : 4, "drilldown" : "Jo Christian Oterhals", - "y" : 4 + "name" : "Jo Christian Oterhals" }, { + "drilldown" : "Joelle Maslak", "y" : 4, - "name" : "Joelle Maslak", - "drilldown" : "Joelle Maslak" + "name" : "Joelle Maslak" }, { - "drilldown" : "John Barrett", "name" : "John Barrett", - "y" : 1 + "y" : 1, + "drilldown" : "John Barrett" }, { + "drilldown" : "Juan Caballero", "y" : 2, - "name" : "Juan Caballero", - "drilldown" : "Juan Caballero" + "name" : "Juan Caballero" }, { - "y" : 2, + "name" : "Khalid", "drilldown" : "Khalid", - "name" : "Khalid" + "y" : 2 }, { "name" : "Kian-Meng Ang", @@ -728,44 +730,44 @@ "y" : 2 }, { - "y" : 2, "name" : "Kivanc Yazan", - "drilldown" : "Kivanc Yazan" + "drilldown" : "Kivanc Yazan", + "y" : 2 }, { + "drilldown" : "Lars Balker", "y" : 4, - "name" : "Lars Balker", - "drilldown" : "Lars Balker" + "name" : "Lars Balker" }, { - "name" : "Laurent Rosenfeld", "drilldown" : "Laurent Rosenfeld", - "y" : 3 + "y" : 3, + "name" : "Laurent Rosenfeld" }, { - "y" : 2, "name" : "Mark Senn", - "drilldown" : "Mark Senn" + "drilldown" : "Mark Senn", + "y" : 2 }, { - "y" : 2, "drilldown" : "Martin Mugeni", + "y" : 2, "name" : "Martin Mugeni" }, { - "y" : 1, "name" : "Neil Bowers", + "y" : 1, "drilldown" : "Neil Bowers" }, { - "name" : "Nick Logan", "drilldown" : "Nick Logan", - "y" : 4 + "y" : 4, + "name" : "Nick Logan" }, { + "drilldown" : "Oleskii Tsvitenov", "y" : 2, - "name" : "Oleskii Tsvitenov", - "drilldown" : "Oleskii Tsvitenov" + "name" : "Oleskii Tsvitenov" }, { "y" : 2, @@ -774,8 +776,8 @@ }, { "drilldown" : "Pavel Jurca", - "name" : "Pavel Jurca", - "y" : 2 + "y" : 2, + "name" : "Pavel Jurca" }, { "name" : "Pete Houston", @@ -783,13 +785,13 @@ "y" : 2 }, { - "name" : "Philippe Bruhat", + "y" : 2, "drilldown" : "Philippe Bruhat", - "y" : 2 + "name" : "Philippe Bruhat" }, { - "y" : 1, "name" : "Prajith P", + "y" : 1, "drilldown" : "Prajith P" }, { @@ -798,52 +800,54 @@ "name" : "Sean Meininger" }, { - "y" : 4, "name" : "Simon Proctor", + "y" : 4, "drilldown" : "Simon Proctor" }, { - "y" : 2, + "name" : "Simon Reinhardt", "drilldown" : "Simon Reinhardt", - "name" : "Simon Reinhardt" + "y" : 2 }, { + "drilldown" : "Steve Rogerson", "y" : 4, - "name" : "Steve Rogerson", - "drilldown" : "Steve Rogerson" + "name" : "Steve Rogerson" }, { + "drilldown" : "Steven Wilson", "y" : 2, - "name" : "Steven Wilson", - "drilldown" : "Steven Wilson" + "name" : "Steven Wilson" }, { - "drilldown" : "Tiago Stock", "name" : "Tiago Stock", + "drilldown" : "Tiago Stock", "y" : 1 }, { + "drilldown" : "Tore Andersson", "y" : 2, - "name" : "Tore Andersson", - "drilldown" : "Tore Andersson" + "name" : "Tore Andersson" }, { + "name" : "Veesh Goldman", "y" : 1, - "drilldown" : "Veesh Goldman", - "name" : "Veesh Goldman" + "drilldown" : "Veesh Goldman" }, { - "name" : "William Gilmore", + "y" : 1, "drilldown" : "William Gilmore", - "y" : 1 + "name" : "William Gilmore" } ] } ], - "xAxis" : { - "type" : "category" + "legend" : { + "enabled" : 0 }, - "chart" : { - "type" : "column" + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } } } diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 45f88ae593..c80894c851 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,14 +1,140 @@ { - "yAxis" : { - "title" : { - "text" : "Total Solutions" + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 } }, + "chart" : { + "type" : "column" + }, + "xAxis" : { + "type" : "category" + }, + "title" : { + "text" : "Perl Weekly Challenge - CURRENT" + }, + "series" : [ + { + "colorByPoint" : 1, + "name" : "Champions", + "data" : [ + { + "y" : 2, + "name" : "Arpad Toth", + "drilldown" : "Arpad Toth" + }, + { + "drilldown" : "Athanasius", + "y" : 2, + "name" : "Athanasius" + }, + { + "y" : 2, + "name" : "Bob Kleemann", + "drilldown" : "Bob Kleemann" + }, + { + "name" : "Daniel Mantovani", + "y" : 1, + "drilldown" : "Daniel Mantovani" + }, + { + "name" : "Fred Zinn", + "y" : 1, + "drilldown" : "Fred Zinn" + }, + { + "name" : "Gustavo Chaves", + "y" : 1, + "drilldown" : "Gustavo Chaves" + }, + { + "name" : "Dr James A. Smith", + "y" : 4, + "drilldown" : "Dr James A. Smith" + }, + { + "y" : 4, + "name" : "Jo Christian Oterhals", + "drilldown" : "Jo Christian Oterhals" + }, + { + "drilldown" : "Joelle Maslak", + "y" : 1, + "name" : "Joelle Maslak" + }, + { + "drilldown" : "John Barrett", + "y" : 2, + "name" : "John Barrett" + }, + { + "drilldown" : "Lars Balker", + "name" : "Lars Balker", + "y" : 4 + }, + { + "name" : "Laurent Rosenfeld", + "y" : 4, + "drilldown" : "Laurent Rosenfeld" + }, + { + "name" : "Magnus Woldrich", + "y" : 2, + "drilldown" : "Magnus Woldrich" + }, + { + "drilldown" : "Nick Logan", + "name" : "Nick Logan", + "y" : 4 + }, + { + "name" : "Chenyf", + "y" : 2, + "drilldown" : "Chenyf" + }, + { + "y" : 2, + "name" : "Ozzy", + "drilldown" : "Ozzy" + }, + { + "drilldown" : "Prajith P", + "y" : 1, + "name" : "Prajith P" + }, + { + "name" : "Robert Gratza", + "y" : 2, + "drilldown" : "Robert Gratza" + }, + { + "drilldown" : "Sean Meininger", + "name" : "Sean Meininger", + "y" : 1 + }, + { + "drilldown" : "Simon Proctor", + "name" : "Simon Proctor", + "y" : 4 + }, + { + "y" : 2, + "name" : "Steven Wilson", + "drilldown" : "Steven Wilson" + } + ] + } + ], "drilldown" : { "series" : [ { - "id" : "Arpad Toth", "name" : "Arpad Toth", + "id" : "Arpad Toth", "data" : [ [ "Perl 5", @@ -17,24 +143,24 @@ ] }, { - "id" : "Athanasius", - "name" : "Athanasius", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "Athanasius", + "name" : "Athanasius" }, { "name" : "Bob Kleemann", + "id" : "Bob Kleemann", "data" : [ [ "Perl 5", 2 ] - ], - "id" : "Bob Kleemann" + ] }, { "id" : "Daniel Mantovani", @@ -47,23 +173,23 @@ ] }, { + "name" : "Fred Zinn", + "id" : "Fred Zinn", "data" : [ [ "Perl 5", 1 ] - ], - "name" : "Fred Zinn", - "id" : "Fred Zinn" + ] }, { - "name" : "Gustavo Chaves", "data" : [ [ "Perl 5", 1 ] ], + "name" : "Gustavo Chaves", "id" : "Gustavo Chaves" }, { @@ -81,7 +207,6 @@ ] }, { - "name" : "Jo Christian Oterhals", "data" : [ [ "Perl 5", @@ -92,29 +217,32 @@ 2 ] ], - "id" : "Jo Christian Oterhals" + "id" : "Jo Christian Oterhals", + "name" : "Jo Christian Oterhals" }, { - "name" : "Joelle Maslak", "data" : [ [ "Perl 6", 1 ] ], - "id" : "Joelle Maslak" + "id" : "Joelle Maslak", + "name" : "Joelle Maslak" }, { - "id" : "John Barrett", - "name" : "John Barrett", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "John Barrett", + "name" : "John Barrett" }, { + "name" : "Lars Balker", + "id" : "Lars Balker", "data" : [ [ "Perl 5", @@ -124,13 +252,9 @@ "Perl 6", 2 ] - ], - "name" : "Lars Balker", - "id" : "Lars Balker" + ] }, { - "id" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld", "data" : [ [ "Perl 5", @@ -140,7 +264,9 @@ "Perl 6", 2 ] - ] + ], + "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld" }, { "id" : "Magnus Woldrich", @@ -157,7 +283,6 @@ ] }, { - "name" : "Nick Logan", "data" : [ [ "Perl 5", @@ -168,7 +293,28 @@ 2 ] ], - "id" : "Nick Logan" + "id" : "Nick Logan", + "name" : "Nick Logan" + }, + { + "data" : [ + [ + "Perl 6", + 2 + ] + ], + "id" : "Chenyf", + "name" : "Chenyf" + }, + { + "data" : [ + [ + "Perl 6", + 2 + ] + ], + "id" : "Ozzy", + "name" : "Ozzy" }, { "data" : [ @@ -177,17 +323,17 @@ 1 ] ], - "name" : "Prajith P", - "id" : "Prajith P" + "id" : "Prajith P", + "name" : "Prajith P" }, { - "name" : "Robert Gratza", "data" : [ [ "Perl 5", 2 ] ], + "name" : "Robert Gratza", "id" : "Robert Gratza" }, { @@ -197,10 +343,12 @@ 1 ] ], - "name" : "Sean Meininger", - "id" : "Sean Meininger" + "id" : "Sean Meininger", + "name" : "Sean Meininger" }, { + "id" : "Simon Proctor", + "name" : "Simon Proctor", "data" : [ [ "Perl 5", @@ -210,13 +358,11 @@ "Perl 6", 2 ] - ], - "name" : "Simon Proctor", - "id" : "Simon Proctor" + ] }, { - "id" : "Steven Wilson", "name" : "Steven Wilson", + "id" : "Steven Wilson", "data" : [ [ "Perl 5", @@ -226,136 +372,20 @@ } ] }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, "tooltip" : { - "pointerFormat" : "{point.name}: {point.y:f}
", + "followPointer" : 1, "headerFormat" : "{series.name}
", - "followPointer" : 1 - }, - "chart" : { - "type" : "column" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } + "pointerFormat" : "{point.name}: {point.y:f}
" }, "legend" : { "enabled" : 0 }, - "xAxis" : { - "type" : "category" - }, "subtitle" : { - "text" : "[Champions: 19] Last updated at 2019-04-03 20:01:18 GMT" - }, - "title" : { - "text" : "Perl Weekly Challenge - CURRENT" - }, - "series" : [ - { - "name" : "Champions", - "data" : [ - { - "name" : "Arpad Toth", - "drilldown" : "Arpad Toth", - "y" : 2 - }, - { - "drilldown" : "Athanasius", - "y" : 2, - "name" : "Athanasius" - }, - { - "y" : 2, - "drilldown" : "Bob Kleemann", - "name" : "Bob Kleemann" - }, - { - "name" : "Daniel Mantovani", - "drilldown" : "Daniel Mantovani", - "y" : 1 - }, - { - "name" : "Fred Zinn", - "drilldown" : "Fred Zinn", - "y" : 1 - }, - { - "drilldown" : "Gustavo Chaves", - "y" : 1, - "name" : "Gustavo Chaves" - }, - { - "name" : "Dr James A. Smith", - "y" : 4, - "drilldown" : "Dr James A. Smith" - }, - { - "y" : 4, - "drilldown" : "Jo Christian Oterhals", - "name" : "Jo Christian Oterhals" - }, - { - "drilldown" : "Joelle Maslak", - "y" : 1, - "name" : "Joelle Maslak" - }, - { - "name" : "John Barrett", - "drilldown" : "John Barrett", - "y" : 2 - }, - { - "drilldown" : "Lars Balker", - "y" : 4, - "name" : "Lars Balker" - }, - { - "name" : "Laurent Rosenfeld", - "y" : 4, - "drilldown" : "Laurent Rosenfeld" - }, - { - "name" : "Magnus Woldrich", - "drilldown" : "Magnus Woldrich", - "y" : 2 - }, - { - "drilldown" : "Nick Logan", - "y" : 4, - "name" : "Nick Logan" - }, - { - "name" : "Prajith P", - "y" : 1, - "drilldown" : "Prajith P" - }, - { - "y" : 2, - "drilldown" : "Robert Gratza", - "name" : "Robert Gratza" - }, - { - "name" : "Sean Meininger", - "drilldown" : "Sean Meininger", - "y" : 1 - }, - { - "y" : 4, - "drilldown" : "Simon Proctor", - "name" : "Simon Proctor" - }, - { - "drilldown" : "Steven Wilson", - "y" : 2, - "name" : "Steven Wilson" - } - ], - "colorByPoint" : 1 - } - ] + "text" : "[Champions: 21] Last updated at 2019-04-04 10:11:45 GMT" + } } diff --git a/stats/pwc-master-stats.json b/stats/pwc-master-stats.json index 82dc9243e8..4c0d05804c 100644 --- a/stats/pwc-master-stats.json +++ b/stats/pwc-master-stats.json @@ -1,19 +1,83 @@ { - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 - }, "title" : { "text" : "Perl Weekly Challenge - 2019" }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, "subtitle" : { - "text" : "[Champions: 58] Last updated at 2019-04-03 20:00:16 GMT" + "text" : "[Champions: 58] Last updated at 2019-04-04 10:10:08 GMT" }, - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "xAxis" : { + "categories" : [ + "Adam Russell", + "Alex Daniel", + "Alexander Karelas", + "Alexey Melezhik", + "Antonio Gamiz", + "Arpad Toth", + "Athanasius", + "Aubrey Quarcoo", + "Bob Kleemann", + "Daniel Mantovani", + "Dave Cross", + "Dave Jacoby", + "David Kayal", + "Doug Schrag", + "Duncan C. White", + "Eddy HS", + "Finley", + "Fred Zinn", + "Freddie B", + "Gustavo Chaves", + "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", + "Michael Schaap", + "Neil Bowers", + "Nick Logan", + "Oleskii Tsvitenov", + "Ozzy", + "Pavel Jurca", + "Pete Houston", + "Philippe Bruhat", + "Prajith P", + "Ruben Westerberg", + "Sean Meininger", + "Simon Proctor", + "Simon Reinhardt", + "Steve Rogerson", + "Steven Lembark", + "Steven Wilson", + "Tiago Stock", + "Tore Andersson", + "Veesh Goldman", + "William Gilmore" + ] + }, + "chart" : { + "type" : "column" }, "series" : [ { @@ -103,7 +167,7 @@ 0, 0, 2, - 0, + 2, 0, 1, 0, @@ -143,74 +207,10 @@ ] } ], - "xAxis" : { - "categories" : [ - "Adam Russell", - "Alex Daniel", - "Alexander Karelas", - "Alexey Melezhik", - "Antonio Gamiz", - "Arpad Toth", - "Athanasius", - "Aubrey Quarcoo", - "Bob Kleemann", - "Daniel Mantovani", - "Dave Cross", - "Dave Jacoby", - "David Kayal", - "Doug Schrag", - "Duncan C. White", - "Eddy HS", - "Finley", - "Fred Zinn", - "Freddie B", - "Gustavo Chaves", - "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", - "Michael Schaap", - "Neil Bowers", - "Nick Logan", - "Oleskii Tsvitenov", - "Ozzy", - "Pavel Jurca", - "Pete Houston", - "Philippe Bruhat", - "Prajith P", - "Ruben Westerberg", - "Sean Meininger", - "Simon Proctor", - "Simon Reinhardt", - "Steve Rogerson", - "Steven Lembark", - "Steven Wilson", - "Tiago Stock", - "Tore Andersson", - "Veesh Goldman", - "William Gilmore" - ] - }, - "chart" : { - "type" : "column" - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 } } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index 5c4f127433..1906b231d9 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -1,11 +1,10 @@ { - "chart" : { - "type" : "column" + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-04-04 10:12:01 GMT" }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" + "plotOptions" : { + "column" : { + "stacking" : "percent" } }, "title" : { @@ -48,6 +47,7 @@ "name" : "Perl 5" }, { + "name" : "Perl 6", "data" : [ 0, 0, @@ -71,7 +71,7 @@ 0, 0, 2, - 2, + 4, 0, 1, 0, @@ -79,21 +79,21 @@ 4, 3, 0 - ], - "name" : "Perl 6" + ] } ], - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-04-03 20:03:44 GMT" + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 }, "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } + "chart" : { + "type" : "column" }, "xAxis" : { "categories" : [ diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index 26128529bf..2fcbc0a5df 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -1,13 +1,4 @@ { - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 - }, - "chart" : { - "type" : "column" - }, "xAxis" : { "categories" : [ "Juan Caballero", @@ -22,6 +13,7 @@ "Michael Schaap", "Neil Bowers", "Nick Logan", + "Chenyf", "Oleskii Tsvitenov", "Ozzy", "Pavel Jurca", @@ -38,17 +30,21 @@ "Steven Wilson", "Tiago Stock", "Tore Andersson", - "Veesh Goldman", - "William Gilmore" + "Veesh Goldman" ] }, - "plotOptions" : { - "column" : { - "stacking" : "percent" + "chart" : { + "type" : "column" + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" } }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-04-03 20:03:44 GMT" + "tooltip" : { + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 }, "series" : [ { @@ -65,6 +61,7 @@ 0, 1, 4, + 0, 2, 0, 2, @@ -81,13 +78,11 @@ 4, 1, 2, - 1, 1 ], "name" : "Perl 5" }, { - "name" : "Perl 6", "data" : [ 0, 0, @@ -102,7 +97,8 @@ 0, 4, 0, - 2, + 0, + 4, 0, 0, 0, @@ -117,16 +113,20 @@ 0, 0, 0, - 0, 0 - ] + ], + "name" : "Perl 6" } ], - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 + "plotOptions" : { + "column" : { + "stacking" : "percent" + } }, "title" : { "text" : "Perl Weekly Challenge - 2019" + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-04-04 10:12:01 GMT" } } diff --git a/stats/pwc-summary.json b/stats/pwc-summary.json index c80f37eb08..37bba8aa9b 100644 --- a/stats/pwc-summary.json +++ b/stats/pwc-summary.json @@ -1,4 +1,7 @@ { + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, "xAxis" : { "categories" : [ "Abigail", @@ -43,6 +46,7 @@ "Michael Schaap", "Neil Bowers", "Nick Logan", + "Chenyf", "Oleskii Tsvitenov", "Ozzy", "Pavel Jurca", @@ -63,21 +67,6 @@ "William Gilmore" ] }, - "chart" : { - "type" : "column" - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, - "subtitle" : { - "text" : "[Champions: 60] Last updated at 2019-04-03 20:01:18 GMT" - }, "series" : [ { "name" : "Perl 5", @@ -124,6 +113,7 @@ 0, 1, 4, + 0, 2, 0, 2, @@ -168,7 +158,7 @@ 0, 0, 2, - 2, + 4, 0, 1, 0, @@ -189,7 +179,8 @@ 0, 4, 0, - 2, + 0, + 4, 0, 0, 0, @@ -210,13 +201,25 @@ "name" : "Perl 6" } ], - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "chart" : { + "type" : "column" + }, + "subtitle" : { + "text" : "[Champions: 61] Last updated at 2019-04-04 10:11:45 GMT" }, "yAxis" : { + "min