From d4b277b14cf4fa525814ff76e0665f2151022fe0 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Sun, 9 Jun 2019 05:30:01 +0100 Subject: - Added solutions by Arne Sommer. --- challenge-011/arne-sommer/blog.txt | 1 + challenge-011/arne-sommer/perl6/ch-1.p6 | 19 ++ challenge-011/arne-sommer/perl6/ch-1a.p6 | 3 + challenge-011/arne-sommer/perl6/ch-2.p6 | 9 + challenge-011/arne-sommer/perl6/ch-2a.p6 | 26 ++ challenge-011/arne-sommer/perl6/ch-2b.p6 | 17 + challenge-011/arne-sommer/perl6/ch-2c.p6 | 10 + challenge-011/arne-sommer/perl6/ch-2d.p6 | 10 + stats/pwc-current.json | 321 ++++++++++--------- stats/pwc-language-breakdown-summary.json | 70 ++--- stats/pwc-language-breakdown.json | 118 +++---- stats/pwc-leaders.json | 500 +++++++++++++++--------------- stats/pwc-summary-1-30.json | 100 +++--- stats/pwc-summary-31-60.json | 26 +- stats/pwc-summary-61-90.json | 90 +++--- stats/pwc-summary-91-120.json | 38 +-- stats/pwc-summary.json | 246 +++++++-------- 17 files changed, 857 insertions(+), 747 deletions(-) create mode 100644 challenge-011/arne-sommer/blog.txt create mode 100755 challenge-011/arne-sommer/perl6/ch-1.p6 create mode 100755 challenge-011/arne-sommer/perl6/ch-1a.p6 create mode 100755 challenge-011/arne-sommer/perl6/ch-2.p6 create mode 100755 challenge-011/arne-sommer/perl6/ch-2a.p6 create mode 100755 challenge-011/arne-sommer/perl6/ch-2b.p6 create mode 100755 challenge-011/arne-sommer/perl6/ch-2c.p6 create mode 100755 challenge-011/arne-sommer/perl6/ch-2d.p6 diff --git a/challenge-011/arne-sommer/blog.txt b/challenge-011/arne-sommer/blog.txt new file mode 100644 index 0000000000..ff33263a07 --- /dev/null +++ b/challenge-011/arne-sommer/blog.txt @@ -0,0 +1 @@ +https://perl6.eu/fc-matrix.html diff --git a/challenge-011/arne-sommer/perl6/ch-1.p6 b/challenge-011/arne-sommer/perl6/ch-1.p6 new file mode 100755 index 0000000000..8160d12bfe --- /dev/null +++ b/challenge-011/arne-sommer/perl6/ch-1.p6 @@ -0,0 +1,19 @@ +#! /usr/bin/env perl6 + +my $c = 0; + +loop +{ + my $f = celcius2fahrenheit($c); + if $f <= $c + { + say "Fahrenheit ($f) and Celsius ($c) are equal(ish)."; + last; + } + $c--; +} + +sub celcius2fahrenheit ($c) +{ + return $c * 1.8 + 32; +} diff --git a/challenge-011/arne-sommer/perl6/ch-1a.p6 b/challenge-011/arne-sommer/perl6/ch-1a.p6 new file mode 100755 index 0000000000..9799e85810 --- /dev/null +++ b/challenge-011/arne-sommer/perl6/ch-1a.p6 @@ -0,0 +1,3 @@ +#! /usr/bin/env perl6 + +say "Fahrenheit and Celsius are equal at -40."; diff --git a/challenge-011/arne-sommer/perl6/ch-2.p6 b/challenge-011/arne-sommer/perl6/ch-2.p6 new file mode 100755 index 0000000000..89ff615443 --- /dev/null +++ b/challenge-011/arne-sommer/perl6/ch-2.p6 @@ -0,0 +1,9 @@ +#! /usr/bin/env perl6 + +use Math::Matrix; + +unit sub MAIN (Int $size where $size > 0); + +my $im = Math::Matrix.new-identity( $size ); + +say $im; diff --git a/challenge-011/arne-sommer/perl6/ch-2a.p6 b/challenge-011/arne-sommer/perl6/ch-2a.p6 new file mode 100755 index 0000000000..0dd48982f3 --- /dev/null +++ b/challenge-011/arne-sommer/perl6/ch-2a.p6 @@ -0,0 +1,26 @@ +#! /usr/bin/env perl6 + +unit sub MAIN (Int $size where $size > 0); + +my @im[$size;$size] = 0 xx $size xx $size; + +@im[$_;$_] = 1 for ^$size; + +print @im.&nice-format; + +sub nice-format (@shaped) +{ + my ($row, $col) = @shaped.shape; + + my $result; + + for ^$row -> $x + { + for ^$col -> $y + { + $result ~= @shaped[$x;$y] ~ " "; + } + $result ~= "\n"; + } + return $result; +} \ No newline at end of file diff --git a/challenge-011/arne-sommer/perl6/ch-2b.p6 b/challenge-011/arne-sommer/perl6/ch-2b.p6 new file mode 100755 index 0000000000..6c95394f34 --- /dev/null +++ b/challenge-011/arne-sommer/perl6/ch-2b.p6 @@ -0,0 +1,17 @@ +#! /usr/bin/env perl6 + +unit sub MAIN (Int $size where $size > 0); + +# my @im = 0 xx $size xx $size; +# @im[$_;$_] = 1 for ^$size; + +my @row = (1, 0 xx $size -1).flat; +my @x; @x.push: @row.rotate(- $_) for ^$size; +my @im = @x; + +print @im.&nice-format; + +sub nice-format (@array) +{ + return (@($_).join(" ") for @array).join("\n") ~ "\n"; +} \ No newline at end of file diff --git a/challenge-011/arne-sommer/perl6/ch-2c.p6 b/challenge-011/arne-sommer/perl6/ch-2c.p6 new file mode 100755 index 0000000000..2979c44550 --- /dev/null +++ b/challenge-011/arne-sommer/perl6/ch-2c.p6 @@ -0,0 +1,10 @@ +#! /usr/bin/env perl6 + +unit sub MAIN (Int $size where $size > 0); + +my @im[$size;$size] = 0 xx $size xx $size; + +@im[$_;$_] = 1 for ^$size; + +say @im; + diff --git a/challenge-011/arne-sommer/perl6/ch-2d.p6 b/challenge-011/arne-sommer/perl6/ch-2d.p6 new file mode 100755 index 0000000000..2458666409 --- /dev/null +++ b/challenge-011/arne-sommer/perl6/ch-2d.p6 @@ -0,0 +1,10 @@ +#! /usr/bin/env perl6 + +unit sub MAIN (Int $size where $size > 0); + +my @row = (1, 0 xx $size -1).flat; +my @x; @x.push: @row.rotate(- $_) for ^$size; +my @im[$size;$size] = @x; + +say @im; + diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 4700434fe5..8f1b1655d2 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,54 +1,179 @@ { + "legend" : { + "enabled" : 0 + }, "xAxis" : { "type" : "category" }, - "legend" : { - "enabled" : 0 + "series" : [ + { + "data" : [ + { + "drilldown" : "Aaron Sherman", + "y" : 2, + "name" : "Aaron Sherman" + }, + { + "name" : "Alicia Bielsa", + "y" : 2, + "drilldown" : "Alicia Bielsa" + }, + { + "name" : "Andrezgz", + "drilldown" : "Andrezgz", + "y" : 2 + }, + { + "name" : "Arne Sommer", + "drilldown" : "Arne Sommer", + "y" : 2 + }, + { + "y" : 2, + "drilldown" : "Dave Jacoby", + "name" : "Dave Jacoby" + }, + { + "name" : "E. Choroba", + "y" : 2, + "drilldown" : "E. Choroba" + }, + { + "name" : "Feng Chang", + "y" : 4, + "drilldown" : "Feng Chang" + }, + { + "drilldown" : "Francis Whittle", + "y" : 2, + "name" : "Francis Whittle" + }, + { + "drilldown" : "Gustavo Chaves", + "y" : 2, + "name" : "Gustavo Chaves" + }, + { + "name" : "Jo Christian Oterhals", + "drilldown" : "Jo Christian Oterhals", + "y" : 1 + }, + { + "y" : 6, + "drilldown" : "Joelle Maslak", + "name" : "Joelle Maslak" + }, + { + "name" : "Khalid", + "y" : 2, + "drilldown" : "Khalid" + }, + { + "name" : "Kivanc Yazan", + "y" : 2, + "drilldown" : "Kivanc Yazan" + }, + { + "drilldown" : "Laurent Rosenfeld", + "y" : 4, + "name" : "Laurent Rosenfeld" + }, + { + "name" : "Maxim Nechaev", + "drilldown" : "Maxim Nechaev", + "y" : 2 + }, + { + "y" : 1, + "drilldown" : "Pete Houston", + "name" : "Pete Houston" + }, + { + "name" : "Simon Proctor", + "drilldown" : "Simon Proctor", + "y" : 2 + }, + { + "name" : "Steven Wilson", + "y" : 3, + "drilldown" : "Steven Wilson" + }, + { + "y" : 2, + "drilldown" : "Yozen Hernandez", + "name" : "Yozen Hernandez" + } + ], + "name" : "Champions", + "colorByPoint" : 1 + } + ], + "title" : { + "text" : "Perl Weekly Challenge - 011" }, - "subtitle" : { - "text" : "[Champions: 18] Last updated at 2019-06-07 22:36:23 GMT" + "chart" : { + "type" : "column" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } + } }, "drilldown" : { "series" : [ { + "id" : "Aaron Sherman", "data" : [ [ "Perl 6", 2 ] ], - "name" : "Aaron Sherman", - "id" : "Aaron Sherman" + "name" : "Aaron Sherman" }, { + "id" : "Alicia Bielsa", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Alicia Bielsa", "name" : "Alicia Bielsa" }, { - "name" : "Andrezgz", - "id" : "Andrezgz", "data" : [ [ "Perl 5", 2 ] + ], + "id" : "Andrezgz", + "name" : "Andrezgz" + }, + { + "name" : "Arne Sommer", + "id" : "Arne Sommer", + "data" : [ + [ + "Perl 6", + 2 + ] ] }, { + "name" : "Dave Jacoby", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Dave Jacoby", - "name" : "Dave Jacoby" + "id" : "Dave Jacoby" }, { "name" : "E. Choroba", @@ -61,6 +186,7 @@ ] }, { + "name" : "Feng Chang", "data" : [ [ "Perl 5", @@ -71,12 +197,11 @@ 3 ] ], - "id" : "Feng Chang", - "name" : "Feng Chang" + "id" : "Feng Chang" }, { - "id" : "Francis Whittle", "name" : "Francis Whittle", + "id" : "Francis Whittle", "data" : [ [ "Perl 6", @@ -85,18 +210,18 @@ ] }, { + "name" : "Gustavo Chaves", + "id" : "Gustavo Chaves", "data" : [ [ "Perl 5", 2 ] - ], - "id" : "Gustavo Chaves", - "name" : "Gustavo Chaves" + ] }, { - "id" : "Jo Christian Oterhals", "name" : "Jo Christian Oterhals", + "id" : "Jo Christian Oterhals", "data" : [ [ "Perl 6", @@ -106,7 +231,6 @@ }, { "id" : "Joelle Maslak", - "name" : "Joelle Maslak", "data" : [ [ "Perl 5", @@ -116,31 +240,31 @@ "Perl 6", 3 ] - ] + ], + "name" : "Joelle Maslak" }, { "name" : "Khalid", - "id" : "Khalid", "data" : [ [ "Perl 6", 2 ] - ] + ], + "id" : "Khalid" }, { "id" : "Kivanc Yazan", - "name" : "Kivanc Yazan", "data" : [ [ "Perl 5", 2 ] - ] + ], + "name" : "Kivanc Yazan" }, { "name" : "Laurent Rosenfeld", - "id" : "Laurent Rosenfeld", "data" : [ [ "Perl 5", @@ -150,181 +274,72 @@ "Perl 6", 2 ] - ] + ], + "id" : "Laurent Rosenfeld" }, { "id" : "Maxim Nechaev", - "name" : "Maxim Nechaev", "data" : [ [ "Perl 5", 2 ] - ] + ], + "name" : "Maxim Nechaev" }, { + "name" : "Pete Houston", + "id" : "Pete Houston", "data" : [ [ "Perl 5", 1 ] - ], - "name" : "Pete Houston", - "id" : "Pete Houston" + ] }, { - "name" : "Simon Proctor", "id" : "Simon Proctor", "data" : [ [ "Perl 6", 2 ] - ] + ], + "name" : "Simon Proctor" }, { "id" : "Steven Wilson", - "name" : "Steven Wilson", "data" : [ [ "Perl 5", 3 ] - ] + ], + "name" : "Steven Wilson" }, { + "name" : "Yozen Hernandez", + "id" : "Yozen Hernandez", "data" : [ [ "Perl 5", 2 ] - ], - "id" : "Yozen Hernandez", - "name" : "Yozen Hernandez" + ] } ] }, + "subtitle" : { + "text" : "[Champions: 19] Last updated at 2019-06-09 04:28:32 GMT" + }, "tooltip" : { - "followPointer" : 1, + "headerFormat" : "{series.name}
", "pointerFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "{series.name}
" + "followPointer" : 1 }, "yAxis" : { "title" : { "text" : "Total Solutions" } - }, - "series" : [ - { - "colorByPoint" : 1, - "data" : [ - { - "drilldown" : "Aaron Sherman", - "name" : "Aaron Sherman", - "y" : 2 - }, - { - "y" : 2, - "name" : "Alicia Bielsa", - "drilldown" : "Alicia Bielsa" - }, - { - "drilldown" : "Andrezgz", - "y" : 2, - "name" : "Andrezgz" - }, - { - "name" : "Dave Jacoby", - "y" : 2, - "drilldown" : "Dave Jacoby" - }, - { - "y" : 2, - "name" : "E. Choroba", - "drilldown" : "E. Choroba" - }, - { - "drilldown" : "Feng Chang", - "y" : 4, - "name" : "Feng Chang" - }, - { - "y" : 2, - "name" : "Francis Whittle", - "drilldown" : "Francis Whittle" - }, - { - "y" : 2, - "name" : "Gustavo Chaves", - "drilldown" : "Gustavo Chaves" - }, - { - "drilldown" : "Jo Christian Oterhals", - "name" : "Jo Christian Oterhals", - "y" : 1 - }, - { - "drilldown" : "Joelle Maslak", - "y" : 6, - "name" : "Joelle Maslak" - }, - { - "drilldown" : "Khalid", - "name" : "Khalid", - "y" : 2 - }, - { - "drilldown" : "Kivanc Yazan", - "name" : "Kivanc Yazan", - "y" : 2 - }, - { - "drilldown" : "Laurent Rosenfeld", - "y" : 4, - "name" : "Laurent Rosenfeld" - }, - { - "name" : "Maxim Nechaev", - "y" : 2, - "drilldown" : "Maxim Nechaev" - }, - { - "name" : "Pete Houston", - "y" : 1, - "drilldown" : "Pete Houston" - }, - { - "drilldown" : "Simon Proctor", - "y" : 2, - "name" : "Simon Proctor" - }, - { - "y" : 3, - "name" : "Steven Wilson", - "drilldown" : "Steven Wilson" - }, - { - "y" : 2, - "name" : "Yozen Hernandez", - "drilldown" : "Yozen Hernandez" - } - ], - "name" : "Champions" - } - ], - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - } - } - }, - "title" : { - "text" : "Perl Weekly Challenge - 011" - }, - "chart" : { - "type" : "column" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index a8a198b173..35a773cfc4 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,29 +1,26 @@ { - "chart" : { - "type" : "column" + "yAxis" : { + "title" : { + "text" : null + }, + "min" : 0 + }, + "subtitle" : { + "text" : "Last updated at 2019-06-09 04:29:10 GMT" }, "tooltip" : { "pointFormat" : "{point.y:.0f}" }, + "legend" : { + "enabled" : "false" + }, "series" : [ { "name" : "Contributions", - "dataLabels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - }, - "rotation" : -90, - "align" : "right", - "enabled" : "true", - "format" : "{point.y:.0f}", - "color" : "#FFFFFF", - "y" : 10 - }, "data" : [ [ "Blog", - 94 + 95 ], [ "Perl 5", @@ -31,33 +28,36 @@ ], [ "Perl 6", - 251 + 253 ] - ] + ], + "dataLabels" : { + "format" : "{point.y:.0f}", + "y" : 10, + "align" : "right", + "enabled" : "true", + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + }, + "color" : "#FFFFFF", + "rotation" : -90 + } } ], - "yAxis" : { - "min" : 0, - "title" : { - "text" : null - } + "chart" : { + "type" : "column" + }, + "title" : { + "text" : "Perl Weekly Challenge Contributions - 2019" }, "xAxis" : { + "type" : "category", "labels" : { "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" } - }, - "type" : "category" - }, - "title" : { - "text" : "Perl Weekly Challenge Contributions - 2019" - }, - "legend" : { - "enabled" : "false" - }, - "subtitle" : { - "text" : "Last updated at 2019-06-07 22:36:40 GMT" + } } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 0d1c61cda9..47aa071120 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,49 +1,37 @@ { - "chart" : { - "type" : "column" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } + "xAxis" : { + "type" : "category" }, - "tooltip" : { - "headerFormat" : "", - "followPointer" : "true", - "pointFormat" : "{point.name}: {point.y:f}
" + "title" : { + "text" : "Perl Weekly Challenge Language" }, "series" : [ { - "colorByPoint" : "true", "data" : [ { "drilldown" : "001", - "name" : "#001 [P5=76 P6=37]", - "y" : 113 + "y" : 113, + "name" : "#001 [P5=76 P6=37]" }, { + "drilldown" : "002", "y" : 95, - "name" : "#002 [P5=63 P6=32]", - "drilldown" : "002" + "name" : "#002 [P5=63 P6=32]" }, { "drilldown" : "003", - "name" : "#003 [P5=32 P6=26]", - "y" : 58 + "y" : 58, + "name" : "#003 [P5=32 P6=26]" }, { - "drilldown" : "004", + "name" : "#004 [P5=46 P6=29]", "y" : 75, - "name" : "#004 [P5=46 P6=29]" + "drilldown" : "004" }, { - "drilldown" : "005", + "y" : 55, "name" : "#005 [P5=33 P6=22]", - "y" : 55 + "drilldown" : "005" }, { "name" : "#006 [P5=27 P6=14]", @@ -56,39 +44,39 @@ "name" : "#007 [P5=26 P6=20]" }, { - "y" : 56, "name" : "#008 [P5=36 P6=20]", + "y" : 56, "drilldown" : "008" }, { - "y" : 51, + "drilldown" : "009", "name" : "#009 [P5=33 P6=18]", - "drilldown" : "009" + "y" : 51 }, { "drilldown" : "010", - "y" : 45, - "name" : "#010 [P5=30 P6=15]" + "name" : "#010 [P5=30 P6=15]", + "y" : 45 }, { - "name" : "#011 [P5=26 P6=18]", - "y" : 44, + "y" : 46, + "name" : "#011 [P5=26 P6=20]", "drilldown" : "011" } ], - "name" : "Perl Weekly Challenge Languages" + "name" : "Perl Weekly Challenge Languages", + "colorByPoint" : "true" } ], - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } + "chart" : { + "type" : "column" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-09 04:29:10 GMT" }, "drilldown" : { "series" : [ { - "id" : "001", - "name" : "001", "data" : [ [ "Perl 5", @@ -98,10 +86,11 @@ "Perl 6", 37 ] - ] + ], + "name" : "001", + "id" : "001" }, { - "id" : "002", "data" : [ [ "Perl 5", @@ -112,10 +101,11 @@ 32 ] ], - "name" : "002" + "name" : "002", + "id" : "002" }, { - "id" : "003", + "name" : "003", "data" : [ [ "Perl 5", @@ -126,7 +116,7 @@ 26 ] ], - "name" : "003" + "id" : "003" }, { "name" : "004", @@ -143,7 +133,7 @@ "id" : "004" }, { - "id" : "005", + "name" : "005", "data" : [ [ "Perl 5", @@ -154,10 +144,10 @@ 22 ] ], - "name" : "005" + "id" : "005" }, { - "id" : "006", + "name" : "006", "data" : [ [ "Perl 5", @@ -168,7 +158,7 @@ 14 ] ], - "name" : "006" + "id" : "006" }, { "data" : [ @@ -185,6 +175,7 @@ "id" : "007" }, { + "name" : "008", "data" : [ [ "Perl 5", @@ -195,11 +186,10 @@ 20 ] ], - "name" : "008", "id" : "008" }, { - "id" : "009", + "name" : "009", "data" : [ [ "Perl 5", @@ -210,7 +200,7 @@ 18 ] ], - "name" : "009" + "id" : "009" }, { "id" : "010", @@ -236,22 +226,32 @@ ], [ "Perl 6", - 18 + 20 ] ] } ] }, - "xAxis" : { - "type" : "category" + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } }, - "title" : { - "text" : "Perl Weekly Challenge Language" + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } }, "legend" : { "enabled" : "false" }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-07 22:36:40 GMT" + "tooltip" : { + "headerFormat" : "", + "followPointer" : "true", + "pointFormat" : "{point.name}: {point.y:f}
" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index eca09ce373..49e283d290 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,133 +1,125 @@ { - "legend" : { - "enabled" : "false" - }, - "xAxis" : { - "type" : "category" - }, - "tooltip" : { - "followPointer" : "true", - "headerFormat" : "", - "pointFormat" : "{point.name}: {point.y:f}
" + "chart" : { + "type" : "column" }, "series" : [ { - "colorByPoint" : "true", "name" : "Perl Weekly Challenge Leaders", + "colorByPoint" : "true", "data" : [ { - "drilldown" : "Laurent Rosenfeld", + "y" : 112, "name" : "#1: Laurent Rosenfeld", - "y" : 112 + "drilldown" : "Laurent Rosenfeld" }, { - "drilldown" : "Joelle Maslak", + "name" : "#2: Joelle Maslak", "y" : 110, - "name" : "#2: Joelle Maslak" + "drilldown" : "Joelle Maslak" }, { - "name" : "#3: Jaldhar H. Vyas", "drilldown" : "Jaldhar H. Vyas", - "y" : 80 + "y" : 80, + "name" : "#3: Jaldhar H. Vyas" }, { - "name" : "#4: Ruben Westerberg", "drilldown" : "Ruben Westerberg", + "name" : "#4: Ruben Westerberg", "y" : 68 }, { - "name" : "#5: Adam Russell", "drilldown" : "Adam Russell", + "name" : "#5: Adam Russell", "y" : 60 }, { - "name" : "#6: Simon Proctor", - "drilldown" : "Simon Proctor", - "y" : 56 + "drilldown" : "Arne Sommer", + "y" : 58, + "name" : "#6: Arne Sommer" }, { - "name" : "#7: Kian-Meng Ang", - "drilldown" : "Kian-Meng Ang", - "y" : 54 + "y" : 56, + "name" : "#7: Simon Proctor", + "drilldown" : "Simon Proctor" }, { - "drilldown" : "Arne Sommer", - "name" : "#8: Arne Sommer", - "y" : 52 + "drilldown" : "Kian-Meng Ang", + "y" : 54, + "name" : "#8: Kian-Meng Ang" }, { - "drilldown" : "Gustavo Chaves", + "name" : "#9: Gustavo Chaves", "y" : 46, - "name" : "#9: Gustavo Chaves" + "drilldown" : "Gustavo Chaves" }, { - "name" : "#10: Jo Christian Oterhals", "drilldown" : "Jo Christian Oterhals", + "name" : "#10: Jo Christian Oterhals", "y" : 46 }, { - "drilldown" : "Dr James A. Smith", "y" : 44, - "name" : "#11: Dr James A. Smith" + "name" : "#11: Dr James A. Smith", + "drilldown" : "Dr James A. Smith" }, { - "name" : "#12: Francis Whittle", "drilldown" : "Francis Whittle", + "name" : "#12: Francis Whittle", "y" : 44 }, { "drilldown" : "Andrezgz", - "y" : 42, - "name" : "#13: Andrezgz" + "name" : "#13: Andrezgz", + "y" : 42 }, { + "y" : 40, "name" : "#14: Athanasius", - "drilldown" : "Athanasius", - "y" : 40 + "drilldown" : "Athanasius" }, { "name" : "#15: E. Choroba", - "drilldown" : "E. Choroba", - "y" : 40 + "y" : 40, + "drilldown" : "E. Choroba" }, { - "y" : 36, "drilldown" : "Dave Jacoby", + "y" : 36, "name" : "#16: Dave Jacoby" }, { - "name" : "#17: Nick Logan", "drilldown" : "Nick Logan", + "name" : "#17: Nick Logan", "y" : 32 }, { - "drilldown" : "Daniel Mantovani", "name" : "#18: Daniel Mantovani", - "y" : 30 + "y" : 30, + "drilldown" : "Daniel Mantovani" }, { - "y" : 28, "drilldown" : "Lars Balker", - "name" : "#19: Lars Balker" + "name" : "#19: Lars Balker", + "y" : 28 }, { "name" : "#20: Mark Senn", - "drilldown" : "Mark Senn", - "y" : 26 + "y" : 26, + "drilldown" : "Mark Senn" }, { + "y" : 22, "name" : "#21: Yozen Hernandez", - "drilldown" : "Yozen Hernandez", - "y" : 22 + "drilldown" : "Yozen Hernandez" }, { "drilldown" : "Doug Schrag", - "y" : 20, - "name" : "#22: Doug Schrag" + "name" : "#22: Doug Schrag", + "y" : 20 }, { - "name" : "#23: Duncan C. White", "drilldown" : "Duncan C. White", + "name" : "#23: Duncan C. White", "y" : 20 }, { @@ -136,14 +128,14 @@ "y" : 20 }, { - "drilldown" : "Alicia Bielsa", "y" : 18, - "name" : "#25: Alicia Bielsa" + "name" : "#25: Alicia Bielsa", + "drilldown" : "Alicia Bielsa" }, { - "y" : 18, "drilldown" : "Guillermo Ramos", - "name" : "#26: Guillermo Ramos" + "name" : "#26: Guillermo Ramos", + "y" : 18 }, { "drilldown" : "Maxim Nechaev", @@ -151,34 +143,34 @@ "y" : 18 }, { - "name" : "#28: Robert Gratza", "drilldown" : "Robert Gratza", - "y" : 16 + "y" : 16, + "name" : "#28: Robert Gratza" }, { - "drilldown" : "John Barrett", + "y" : 14, "name" : "#29: John Barrett", - "y" : 14 + "drilldown" : "John Barrett" }, { - "drilldown" : "Khalid", + "y" : 14, "name" : "#30: Khalid", - "y" : 14 + "drilldown" : "Khalid" }, { - "name" : "#31: Ozzy", "drilldown" : "Ozzy", + "name" : "#31: Ozzy", "y" : 14 }, { - "name" : "#32: Kivanc Yazan", "drilldown" : "Kivanc Yazan", + "name" : "#32: Kivanc Yazan", "y" : 12 }, { - "drilldown" : "Maxim Kolodyazhny", "name" : "#33: Maxim Kolodyazhny", - "y" : 12 + "y" : 12, + "drilldown" : "Maxim Kolodyazhny" }, { "drilldown" : "Philippe Bruhat", @@ -186,111 +178,119 @@ "name" : "#34: Philippe Bruhat" }, { - "name" : "#35: Sergio Iglesias", "drilldown" : "Sergio Iglesias", + "name" : "#35: Sergio Iglesias", "y" : 12 }, { - "name" : "#36: Arpad Toth", "drilldown" : "Arpad Toth", - "y" : 10 + "y" : 10, + "name" : "#36: Arpad Toth" }, { - "name" : "#37: Steve Rogerson", "drilldown" : "Steve Rogerson", + "name" : "#37: Steve Rogerson", "y" : 10 }, { + "y" : 10, "name" : "#38: Veesh Goldman", - "drilldown" : "Veesh Goldman", - "y" : 10 + "drilldown" : "Veesh Goldman" }, { + "y" : 8, "name" : "#39: Alex Daniel", - "drilldown" : "Alex Daniel", - "y" : 8 + "drilldown" : "Alex Daniel" }, { "drilldown" : "Bob Kleemann", - "name" : "#40: Bob Kleemann", - "y" : 8 + "y" : 8, + "name" : "#40: Bob Kleemann" }, { - "drilldown" : "Chenyf", "y" : 8, - "name" : "#41: Chenyf" + "name" : "#41: Chenyf", + "drilldown" : "Chenyf" }, { - "name" : "#42: David Kayal", "drilldown" : "David Kayal", - "y" : 8 + "y" : 8, + "name" : "#42: David Kayal" }, { - "drilldown" : "Feng Chang", + "name" : "#43: Feng Chang", "y" : 8, - "name" : "#43: Feng Chang" + "drilldown" : "Feng Chang" }, { - "name" : "#44: Finley", "drilldown" : "Finley", + "name" : "#44: Finley", "y" : 8 }, { - "drilldown" : "Jaime Corchado", "y" : 8, - "name" : "#45: Jaime Corchado" + "name" : "#45: Jaime Corchado", + "drilldown" : "Jaime Corchado" }, { - "name" : "#46: Luis F. Uceta", "drilldown" : "Luis F. Uceta", - "y" : 8 + "y" : 8, + "name" : "#46: Luis F. Uceta" }, { "name" : "#47: Matt Latusek", - "drilldown" : "Matt Latusek", - "y" : 8 + "y" : 8, + "drilldown" : "Matt Latusek" }, { "y" : 8, - "drilldown" : "Neil Bowers", - "name" : "#48: Neil Bowers" + "name" : "#48: Neil Bowers", + "drilldown" : "Neil Bowers" }, { - "name" : "#49: Pete Houston", "drilldown" : "Pete Houston", + "name" : "#49: Pete Houston", "y" : 8 }, { - "drilldown" : "Simon Reinhardt", "name" : "#50: Simon Reinhardt", - "y" : 8 + "y" : 8, + "drilldown" : "Simon Reinhardt" } ] } ], + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-06-09 04:29:00 GMT" + }, "plotOptions" : { "series" : { "borderWidth" : 0, "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" + "format" : "{point.y}", + "enabled" : 1 } } }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-06-07 22:36:35 GMT" + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" }, - "chart" : { - "type" : "column" + "legend" : { + "enabled" : "false" + }, + "tooltip" : { + "headerFormat" : "", + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : "true" + }, + "xAxis" : { + "type" : "category" }, "drilldown" : { "series" : [ { + "id" : "Laurent Rosenfeld", "data" : [ - [ - "Perl 5", - 22 - ], [ "Perl 6", 21 @@ -298,51 +298,54 @@ [ "Blog", 13 + ], + [ + "Perl 5", + 22 ] ], - "id" : "Laurent Rosenfeld", "name" : "Laurent Rosenfeld" }, { + "name" : "Joelle Maslak", "data" : [ [ "Perl 6", 26 ], - [ - "Perl 5", - 26 - ], [ "Blog", 3 + ], + [ + "Perl 5", + 26 ] ], - "name" : "Joelle Maslak", "id" : "Joelle Maslak" }, { - "name" : "Jaldhar H. Vyas", - "id" : "Jaldhar H. Vyas", "data" : [ [ - "Perl 6", + "Perl 5", 20 ], [ - "Perl 5", + "Perl 6", 20 ] - ] + ], + "id" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas" }, { "data" : [ [ - "Perl 5", + "Perl 6", 17 ], [ - "Perl 6", + "Perl 5", 17 ] ], @@ -350,66 +353,67 @@ "name" : "Ruben Westerberg" }, { + "id" : "Adam Russell", "data" : [ - [ - "Blog", - 10 - ], [ "Perl 5", 20 + ], + [ + "Blog", + 10 ] ], - "id" : "Adam Russell", "name" : "Adam Russell" }, { - "name" : "Simon Proctor", - "id" : "Simon Proctor", "data" : [ - [ - "Perl 5", - 4 - ], [ "Perl 6", - 18 + 19 ], [ "Blog", - 6 + 10 ] - ] + ], + "id" : "Arne Sommer", + "name" : "Arne Sommer" }, { - "name" : "Kian-Meng Ang", - "id" : "Kian-Meng Ang", + "name" : "Simon Proctor", + "id" : "Simon Proctor", "data" : [ + [ + "Perl 6", + 18 + ], [ "Perl 5", - 17 + 4 ], [ "Blog", - 10 + 6 ] ] }, { + "name" : "Kian-Meng Ang", + "id" : "Kian-Meng Ang", "data" : [ [ - "Perl 6", - 17 + "Blog", + 10 ], [ - "Blog", - 9 + "Perl 5", + 17 ] - ], - "name" : "Arne Sommer", - "id" : "Arne Sommer" + ] }, { + "name" : "Gustavo Chaves", "data" : [ [ "Perl 5", @@ -420,44 +424,42 @@ 4 ] ], - "id" : "Gustavo Chaves", - "name" : "Gustavo Chaves" + "id" : "Gustavo Chaves" }, { "id" : "Jo Christian Oterhals", - "name" : "Jo Christian Oterhals", "data" : [ - [ - "Blog", - 6 - ], [ "Perl 6", 11 ], + [ + "Blog", + 6 + ], [ "Perl 5", 6 ] - ] + ], + "name" : "Jo Christian Oterhals" }, { + "name" : "Dr James A. Smith", "data" : [ - [ - "Perl 6", - 10 - ], [ "Perl 5", 12 + ], + [ + "Perl 6", + 10 ] ], - "id" : "Dr James A. Smith", - "name" : "Dr James A. Smith" + "id" : "Dr James A. Smith" }, { "name" : "Francis Whittle", - "id" : "Francis Whittle", "data" : [ [ "Perl 6", @@ -467,17 +469,18 @@ "Blog", 6 ] - ] + ], + "id" : "Francis Whittle" }, { - "name" : "Andrezgz", "id" : "Andrezgz", "data" : [ [ "Perl 5", 21 ] - ] + ], + "name" : "Andrezgz" }, { "data" : [ @@ -486,74 +489,74 @@ 20 ] ], - "name" : "Athanasius", - "id" : "Athanasius" + "id" : "Athanasius", + "name" : "Athanasius" }, { - "id" : "E. Choroba", "name" : "E. Choroba", + "id" : "E. Choroba", "data" : [ - [ - "Perl 5", - 14 - ], [ "Blog", 6 + ], + [ + "Perl 5", + 14 ] ] }, { "name" : "Dave Jacoby", - "id" : "Dave Jacoby", "data" : [ [ - "Perl 5", + "Blog", 9 ], [ - "Blog", + "Perl 5", 9 ] - ] + ], + "id" : "Dave Jacoby" }, { + "id" : "Nick Logan", "data" : [ [ - "Perl 6", + "Perl 5", 8 ], [ - "Perl 5", + "Perl 6", 8 ] ], - "id" : "Nick Logan", "name" : "Nick Logan" }, { - "name" : "Daniel Mantovani", - "id" : "Daniel Mantovani", "data" : [ [ "Perl 5", 15 ] - ] + ], + "id" : "Daniel Mantovani", + "name" : "Daniel Mantovani" }, { - "name" : "Lars Balker", - "id" : "Lars Balker", "data" : [ - [ - "Perl 6", - 4 - ], [ "Perl 5", 10 + ], + [ + "Perl 6", + 4 ] - ] + ], + "id" : "Lars Balker", + "name" : "Lars Balker" }, { "name" : "Mark Senn", @@ -584,14 +587,14 @@ "name" : "Yozen Hernandez" }, { - "name" : "Doug Schrag", "id" : "Doug Schrag", "data" : [ [ "Perl 6", 10 ] - ] + ], + "name" : "Doug Schrag" }, { "data" : [ @@ -614,14 +617,14 @@ ] }, { - "name" : "Alicia Bielsa", - "id" : "Alicia Bielsa", "data" : [ [ "Perl 5", 9 ] - ] + ], + "id" : "Alicia Bielsa", + "name" : "Alicia Bielsa" }, { "name" : "Guillermo Ramos", @@ -634,32 +637,32 @@ ] }, { + "name" : "Maxim Nechaev", + "id" : "Maxim Nechaev", "data" : [ [ "Perl 5", 9 ] - ], - "id" : "Maxim Nechaev", - "name" : "Maxim Nechaev" + ] }, { + "name" : "Robert Gratza", "data" : [ - [ - "Perl 5", - 2 - ], [ "Perl 6", 6 + ], + [ + "Perl 5", + 2 ] ], - "id" : "Robert Gratza", - "name" : "Robert Gratza" + "id" : "Robert Gratza" }, { - "id" : "John Barrett", "name" : "John Barrett", + "id" : "John Barrett", "data" : [ [ "Perl 5", @@ -669,8 +672,11 @@ }, { "name" : "Khalid", - "id" : "Khalid", "data" : [ + [ + "Blog", + 1 + ], [ "Perl 5", 4 @@ -678,55 +684,52 @@ [ "Perl 6", 2 - ], - [ - "Blog", - 1 ] - ] + ], + "id" : "Khalid" }, { "name" : "Ozzy", - "id" : "Ozzy", "data" : [ [ "Perl 6", 7 ] - ] + ], + "id" : "Ozzy" }, { + "name" : "Kivanc Yazan", + "id" : "Kivanc Yazan", "data" : [ [ "Perl 5", 6 ] - ], - "name" : "Kivanc Yazan", - "id" : "Kivanc Yazan" + ] }, { + "name" : "Maxim Kolodyazhny", "data" : [ [ "Perl 5", 6 ] ], - "name" : "Maxim Kolodyazhny", "id" : "Maxim Kolodyazhny" }, { + "name" : "Philippe Bruhat", "data" : [ - [ - "Perl 5", - 4 - ], [ "Blog", 2 + ], + [ + "Perl 5", + 4 ] ], - "name" : "Philippe Bruhat", "id" : "Philippe Bruhat" }, { @@ -740,18 +743,18 @@ ] }, { - "name" : "Arpad Toth", "id" : "Arpad Toth", "data" : [ [ "Perl 5", 5 ] - ] + ], + "name" : "Arpad Toth" }, { - "id" : "Steve Rogerson", "name" : "Steve Rogerson", + "id" : "Steve Rogerson", "data" : [ [ "Perl 6", @@ -764,44 +767,44 @@ ] }, { - "name" : "Veesh Goldman", "id" : "Veesh Goldman", "data" : [ [ "Perl 5", 5 ] - ] + ], + "name" : "Veesh Goldman" }, { "name" : "Alex Daniel", - "id" : "Alex Daniel", "data" : [ [ "Perl 6", 4 ] - ] + ], + "id" : "Alex Daniel" }, { - "name" : "Bob Kleemann", "id" : "Bob Kleemann", "data" : [ [ "Perl 5", 4 ] - ] + ], + "name" : "Bob Kleemann" }, { + "id" : "Chenyf", "data" : [ [ "Perl 6", 4 ] ], - "name" : "Chenyf", - "id" : "Chenyf" + "name" : "Chenyf" }, { "name" : "David Kayal", @@ -814,42 +817,42 @@ ] }, { + "id" : "Feng Chang", "data" : [ - [ - "Perl 5", - 1 - ], [ "Perl 6", 3 + ], + [ + "Perl 5", + 1 ] ], - "name" : "Feng Chang", - "id" : "Feng Chang" + "name" : "Feng Chang" }, { + "id" : "Finley", "data" : [ [ "Perl 6", 4 ] ], - "name" : "Finley", - "id" : "Finley" + "name" : "Finley" }, { - "id" : "Jaime Corchado", - "name" : "Jaime Corchado", "data" : [ [ "Perl 5", 4 ] - ] + ], + "id" : "Jaime Corchado", + "name" : "Jaime Corchado" }, { - "id" : "Luis F. Uceta", "name" : "Luis F. Uceta", + "id" : "Luis F. Uceta", "data" : [ [ "Perl 6", @@ -858,8 +861,8 @@ ] }, { - "id" : "Matt Latusek", "name" : "Matt Latusek", + "id" : "Matt Latusek", "data" : [ [ "Perl 5", @@ -874,28 +877,28 @@ 4 ] ], - "name" : "Neil Bowers", - "id" : "Neil Bowers" + "id" : "Neil Bowers", + "name" : "Neil Bowers" }, { - "id" : "Pete Houston", "name" : "Pete Houston", "data" : [ [ "Perl 5", 4 ] - ] + ], + "id" : "Pete Houston" }, { + "id" : "Simon Reinhardt", "data" : [ [ "Perl 5", 4 ] ], - "name" : "Simon Reinhardt", - "id" : "Simon Reinhardt" + "name" : "Simon Reinhardt" } ] }, @@ -903,8 +906,5 @@ "title" : { "text" : "Total Score" } - }, - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" } } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index 4f3b98e437..99caaa8a79 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -1,52 +1,18 @@ { - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" + "plotOptions" : { + "column" : { + "stacking" : "percent" } }, "title" : { "text" : "Perl Weekly Challenge - 2019" }, "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-06-07 22:36:23 GMT" + "text" : "[Champions: 30] Last updated at 2019-06-09 04:28:33 GMT" }, - "xAxis" : { - "categories" : [ - "Aaron Sherman", - "Abigail", - "Adam Russell", - "Ailbhe Tweedie", - "Alex Daniel", - "Alexander Karelas", - "Alexey Melezhik", - "Alicia Bielsa", - "Andrezgz", - "Antonio Gamiz", - "Arne Sommer", - "Arpad Toth", - "Athanasius", - "Aubrey Quarcoo", - "Bill Palmer", - "Bob Kleemann", - "Clive Holloway", - "Daniel Mantovani", - "Daniel Mita", - "Dave Cross", - "Dave Jacoby", - "David Kayal", - "Denis Yurashku", - "Donald Hunter", - "Doug Schrag", - "Duncan C. White", - "E. Choroba", - "Eddy HS", - "Feng Chang", - "Finley" - ] - }, - "chart" : { - "type" : "column" + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" }, "series" : [ { @@ -85,7 +51,6 @@ "name" : "Perl 5" }, { - "name" : "Perl 6", "data" : [ 2, 0, @@ -97,7 +62,7 @@ 0, 0, 2, - 17, + 19, 0, 0, 0, @@ -117,16 +82,51 @@ 0, 3, 4 - ] + ], + "name" : "Perl 6" } ], - "plotOptions" : { - "column" : { - "stacking" : "percent" + "chart" : { + "type" : "column" + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" } }, - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 + "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" + ] } } diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index be509f1b4d..57e45002a9 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -1,13 +1,22 @@ { - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, "plotOptions" : { "column" : { "stacking" : "percent" } }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-06-09 04:28:33 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "tooltip" : { + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 + }, + "chart" : { + "type" : "column" + }, "series" : [ { "data" : [ @@ -114,15 +123,6 @@ "Matthew O. Persico" ] }, - "chart" : { - "type" : "column" - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-06-07 22:36:23 GMT" - }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, "yAxis" : { "min" : 0, "title" : { diff --git a/stats/pwc-summary-61-90.json b/stats/pwc-summary-61-90.json index 896c243c4b..b254773ecb 100644 --- a/stats/pwc-summary-61-90.json +++ b/stats/pwc-summary-61-90.json @@ -1,15 +1,56 @@ { + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-06-09 04:28:33 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, "yAxis" : { "min" : 0, "title" : { "text" : "" } }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "xAxis" : { + "categories" : [ + "Maxim Kolodyazhny", + "Maxim Nechaev", + "Michael Schaap", + "Neil Bowers", + "Nick Logan", + "Chenyf", + "Oleksii Tsvietnov", + "Ozzy", + "Pavel Jurca", + "Pavel Starikov", + "Pete Houston", + "Pete Sergeant", + "Philippe Bruhat", + "Prajith P", + "Robert Gratza", + "Ruben Westerberg", + "Sean Meininger", + "Sergio Iglesias", + "Simon Proctor", + "Simon Reinhardt", + "Steve Rogerson", + "Steven Lembark", + "Steven Wilson", + "Tiago Stock", + "Tim Smith", + "Tore Andersson", + "Luis F. Uceta", + "Veesh Goldman", + "William Gilmore", + "Yary H" + ] }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-06-07 22:36:23 GMT" + "chart" : { + "type" : "column" }, "series" : [ { @@ -83,50 +124,9 @@ ] } ], - "xAxis" : { - "categories" : [ - "Maxim Kolodyazhny", - "Maxim Nechaev", - "Michael Schaap", - "Neil Bowers", - "Nick Logan", - "Chenyf", - "Oleksii Tsvietnov", - "Ozzy", - "Pavel Jurca", - "Pavel Starikov", - "Pete Houston", - "Pete Sergeant", - "Philippe Bruhat", - "Prajith P", - "Robert Gratza", - "Ruben Westerberg", - "Sean Meininger", - "Sergio Iglesias", - "Simon Proctor", - "Simon Reinhardt", - "Steve Rogerson", - "Steven Lembark", - "Steven Wilson", - "Tiago Stock", - "Tim Smith", - "Tore Andersson", - "Luis F. Uceta", - "Veesh Goldman", - "William Gilmore", - "Yary H" - ] - }, - "chart" : { - "type" : "column" - }, "plotOptions" : { "column" : { "stacking" : "percent" } - }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" } } diff --git a/stats/pwc-summary-91-120.json b/stats/pwc-summary-91-120.json index 75c25ee7e4..313dbc7883 100644 --- a/stats/pwc-summary-91-120.json +++ b/stats/pwc-summary-91-120.json @@ -1,6 +1,19 @@ { - "chart" : { - "type" : "column" + "tooltip" : { + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "subtitle" : { + "text" : "[Champions: 1] Last updated at 2019-06-09 04:28:33 GMT" + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" + } }, "xAxis" : { "categories" : [ @@ -15,31 +28,18 @@ ] }, { + "name" : "Perl 6", "data" : [ 0 - ], - "name" : "Perl 6" + ] } ], - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 + "chart" : { + "type" : "column" }, "plotOptions" : { "column" : { "stacking" : "percent" } - }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } - }, - "subtitle" : { - "text" : "[Champions: 1] Last updated at 2019-06-07 22:36:23 GMT" } } diff --git a/stats/pwc-summary.json b/stats/pwc-summary.json index 1c372c3b64..ce3bf51f67 100644 --- a/stats/pwc-summary.json +++ b/stats/pwc-summary.json @@ -1,7 +1,125 @@ { + "subtitle" : { + "text" : "[Champions: 91] Last updated at 2019-06-09 04:28:32 GMT" + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" + } + }, + "tooltip" : { + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 + }, + "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", + "Dav