From 22291fe314d32a384ab10a3f7cec22963a8bed9b Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Mon, 8 Jul 2019 20:39:27 +0100 Subject: - Added solutions by Laurent Rosenfeld. --- challenge-016/laurent-rosenfeld/blog.txt | 1 + challenge-016/laurent-rosenfeld/perl5/ch-1.pl | 14 + challenge-016/laurent-rosenfeld/perl6/ch-1.p6 | 11 + stats/pwc-current.json | 135 ++++--- stats/pwc-language-breakdown-summary.json | 64 ++-- stats/pwc-language-breakdown.json | 296 +++++++-------- stats/pwc-leaders.json | 524 +++++++++++++------------- stats/pwc-summary-1-30.json | 34 +- stats/pwc-summary-31-60.json | 112 +++--- stats/pwc-summary-61-90.json | 100 ++--- stats/pwc-summary-91-120.json | 58 +-- stats/pwc-summary.json | 252 ++++++------- 12 files changed, 825 insertions(+), 776 deletions(-) create mode 100644 challenge-016/laurent-rosenfeld/blog.txt create mode 100644 challenge-016/laurent-rosenfeld/perl5/ch-1.pl create mode 100644 challenge-016/laurent-rosenfeld/perl6/ch-1.p6 diff --git a/challenge-016/laurent-rosenfeld/blog.txt b/challenge-016/laurent-rosenfeld/blog.txt new file mode 100644 index 0000000000..6e27ef7e7a --- /dev/null +++ b/challenge-016/laurent-rosenfeld/blog.txt @@ -0,0 +1 @@ +http://blogs.perl.org/users/laurent_r/2019/07/-perl-weekly-challenge-16-pythagoras-pie.html diff --git a/challenge-016/laurent-rosenfeld/perl5/ch-1.pl b/challenge-016/laurent-rosenfeld/perl5/ch-1.pl new file mode 100644 index 0000000000..6e3347ba32 --- /dev/null +++ b/challenge-016/laurent-rosenfeld/perl5/ch-1.pl @@ -0,0 +1,14 @@ +#!/usr/bin/perl +use strict; +use warnings; +use feature qw/say/; +use constant SHARE_FACT => 0.01; + +my $rest_of_the_pie = 1; +my ($max_guest, $max_sh) = (1, 0); +for my $guest_nr (1..100) { + my $share = $rest_of_the_pie * $guest_nr * SHARE_FACT; + ($max_guest, $max_sh) = ($guest_nr, $share) if $share > $max_sh; + $rest_of_the_pie -= $share; +} +say "Lucky guest: $max_guest \tLargest share: $max_sh"; diff --git a/challenge-016/laurent-rosenfeld/perl6/ch-1.p6 b/challenge-016/laurent-rosenfeld/perl6/ch-1.p6 new file mode 100644 index 0000000000..0f4a9044bf --- /dev/null +++ b/challenge-016/laurent-rosenfeld/perl6/ch-1.p6 @@ -0,0 +1,11 @@ +use v6; + +constant $share-fact = 0.01; +my $rest-of-the-pie = 1; +my ($max-guest, $max-sh) = 1, 0; +for 1..100 -> $guest-nr { + my $share = $rest-of-the-pie * $guest-nr * $share-fact; + ($max-guest, $max-sh) = ($guest-nr, $share) if $share > $max-sh; + $rest-of-the-pie -= $share; +} +say "Lucky guest: $max-guest \tLargest share: $max-sh"; diff --git a/stats/pwc-current.json b/stats/pwc-current.json index af3d7d9465..ec133f86e9 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,9 +1,65 @@ { + "series" : [ + { + "data" : [ + { + "name" : "Joelle Maslak", + "drilldown" : "Joelle Maslak", + "y" : 2 + }, + { + "name" : "Laurent Rosenfeld", + "drilldown" : "Laurent Rosenfeld", + "y" : 3 + }, + { + "y" : 1, + "drilldown" : "Simon Proctor", + "name" : "Simon Proctor" + } + ], + "colorByPoint" : 1, + "name" : "Perl Weekly Challenge - 016" + } + ], + "chart" : { + "type" : "column" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } + }, + "subtitle" : { + "text" : "[Champions: 3] Last updated at 2019-07-08 19:32:29 GMT" + }, + "tooltip" : { + "headerFormat" : "{series.name}
", + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
" + }, + "title" : { + "text" : "Perl Weekly Challenge - 016" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "legend" : { + "enabled" : 0 + }, + "xAxis" : { + "type" : "category" + }, "drilldown" : { "series" : [ { "id" : "Joelle Maslak", - "name" : "Joelle Maslak", "data" : [ [ "Perl 5", @@ -13,70 +69,37 @@ "Perl 6", 1 ] - ] + ], + "name" : "Joelle Maslak" + }, + { + "id" : "Laurent Rosenfeld", + "data" : [ + [ + "Perl 5", + 1 + ], + [ + "Perl 6", + 1 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Laurent Rosenfeld" }, { - "name" : "Simon Proctor", "id" : "Simon Proctor", "data" : [ [ "Perl 6", 1 ] - ] + ], + "name" : "Simon Proctor" } ] - }, - "xAxis" : { - "type" : "category" - }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "{series.name}
", - "followPointer" : 1 - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } - }, - "title" : { - "text" : "Perl Weekly Challenge - 016" - }, - "series" : [ - { - "name" : "Perl Weekly Challenge - 016", - "colorByPoint" : 1, - "data" : [ - { - "drilldown" : "Joelle Maslak", - "y" : 2, - "name" : "Joelle Maslak" - }, - { - "drilldown" : "Simon Proctor", - "name" : "Simon Proctor", - "y" : 1 - } - ] - } - ], - "chart" : { - "type" : "column" - }, - "subtitle" : { - "text" : "[Champions: 2] Last updated at 2019-07-08 14:01:23 GMT" - }, - "legend" : { - "enabled" : 0 } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index f3fb0cd1b8..ebb8c45f2b 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,6 +1,6 @@ { "subtitle" : { - "text" : "Last updated at 2019-07-08 14:01:34 GMT" + "text" : "Last updated at 2019-07-08 19:37:35 GMT" }, "xAxis" : { "type" : "category", @@ -11,53 +11,53 @@ } } }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - }, - "legend" : { - "enabled" : "false" - }, - "title" : { - "text" : "Perl Weekly Challenge Contributions - 2019" - }, "series" : [ { + "name" : "Contributions", + "dataLabels" : { + "y" : 10, + "rotation" : -90, + "enabled" : "true", + "color" : "#FFFFFF", + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + }, + "align" : "right", + "format" : "{point.y:.0f}" + }, "data" : [ [ "Blog", - 142 + 143 ], [ "Perl 5", - 639 + 640 ], [ "Perl 6", - 365 + 366 ] - ], - "name" : "Contributions", - "dataLabels" : { - "align" : "right", - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - }, - "color" : "#FFFFFF", - "enabled" : "true", - "rotation" : -90, - "y" : 10, - "format" : "{point.y:.0f}" - } + ] } ], - "yAxis" : { - "title" : { - "text" : null - }, - "min" : 0 + "legend" : { + "enabled" : "false" + }, + "title" : { + "text" : "Perl Weekly Challenge Contributions - 2019" + }, + "tooltip" : { + "pointFormat" : "{point.y:.0f}" }, "chart" : { "type" : "column" + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : null + } } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 4280fcf0f0..c220ecea0c 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,117 +1,17 @@ { - "title" : { - "text" : "Perl Weekly Challenge Language" - }, - "chart" : { - "type" : "column" - }, - "series" : [ - { - "colorByPoint" : "true", - "name" : "Perl Weekly Challenge Languages", - "data" : [ - { - "drilldown" : "001", - "y" : 123, - "name" : "#001" - }, - { - "drilldown" : "002", - "y" : 104, - "name" : "#002" - }, - { - "drilldown" : "003", - "y" : 66, - "name" : "#003" - }, - { - "y" : 84, - "name" : "#004", - "drilldown" : "004" - }, - { - "y" : 66, - "name" : "#005", - "drilldown" : "005" - }, - { - "drilldown" : "006", - "y" : 47, - "name" : "#006" - }, - { - "drilldown" : "007", - "name" : "#007", - "y" : 54 - }, - { - "drilldown" : "008", - "name" : "#008", - "y" : 67 - }, - { - "y" : 65, - "name" : "#009", - "drilldown" : "009" - }, - { - "drilldown" : "010", - "y" : 58, - "name" : "#010" - }, - { - "y" : 77, - "name" : "#011", - "drilldown" : "011" - }, - { - "drilldown" : "012", - "y" : 81, - "name" : "#012" - }, - { - "y" : 74, - "name" : "#013", - "drilldown" : "013" - }, - { - "name" : "#014", - "y" : 94, - "drilldown" : "014" - }, - { - "drilldown" : "015", - "name" : "#015", - "y" : 83 - }, - { - "y" : 3, - "name" : "#016", - "drilldown" : "016" - } - ] - } - ], - "yAxis" : { - "title" : { - "text" : "Total Solutions" + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 } }, - "xAxis" : { - "type" : "category" - }, - "tooltip" : { - "followPointer" : "true", - "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "headerFormat" : "" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-07-08 14:01:34 GMT" - }, "drilldown" : { "series" : [ { + "id" : "001", "name" : "001", "data" : [ [ @@ -126,10 +26,10 @@ "Blog", 10 ] - ], - "id" : "001" + ] }, { + "name" : "002", "id" : "002", "data" : [ [ @@ -144,11 +44,9 @@ "Blog", 9 ] - ], - "name" : "002" + ] }, { - "name" : "003", "data" : [ [ "Perl 5", @@ -163,6 +61,7 @@ 8 ] ], + "name" : "003", "id" : "003" }, { @@ -180,11 +79,10 @@ 9 ] ], - "name" : "004", - "id" : "004" + "id" : "004", + "name" : "004" }, { - "id" : "005", "data" : [ [ "Perl 5", @@ -199,10 +97,12 @@ 11 ] ], - "name" : "005" + "name" : "005", + "id" : "005" }, { "name" : "006", + "id" : "006", "data" : [ [ "Perl 5", @@ -216,10 +116,11 @@ "Blog", 6 ] - ], - "id" : "006" + ] }, { + "name" : "007", + "id" : "007", "data" : [ [ "Perl 5", @@ -233,9 +134,7 @@ "Blog", 8 ] - ], - "name" : "007", - "id" : "007" + ] }, { "data" : [ @@ -256,6 +155,7 @@ "id" : "008" }, { + "id" : "009", "name" : "009", "data" : [ [ @@ -270,10 +170,11 @@ "Blog", 11 ] - ], - "id" : "009" + ] }, { + "name" : "010", + "id" : "010", "data" : [ [ "Perl 5", @@ -287,12 +188,9 @@ "Blog", 9 ] - ], - "id" : "010", - "name" : "010" + ] }, { - "name" : "011", "data" : [ [ "Perl 5", @@ -307,10 +205,10 @@ 8 ] ], - "id" : "011" + "id" : "011", + "name" : "011" }, { - "name" : "012", "data" : [ [ "Perl 5", @@ -325,10 +223,12 @@ 9 ] ], + "name" : "012", "id" : "012" }, { "name" : "013", + "id" : "013", "data" : [ [ "Perl 5", @@ -342,8 +242,7 @@ "Blog", 11 ] - ], - "id" : "013" + ] }, { "data" : [ @@ -360,8 +259,8 @@ 13 ] ], - "name" : "014", - "id" : "014" + "id" : "014", + "name" : "014" }, { "data" : [ @@ -378,39 +277,140 @@ 11 ] ], - "id" : "015", - "name" : "015" + "name" : "015", + "id" : "015" }, { "name" : "016", + "id" : "016", "data" : [ [ "Perl 5", - 1 + 2 ], [ "Perl 6", - 2 + 3 ], [ "Blog", - 0 + 1 ] - ], - "id" : "016" + ] } ] }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "xAxis" : { + "type" : "category" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-07-08 19:37:35 GMT" + }, + "series" : [ + { + "name" : "Perl Weekly Challenge Languages", + "colorByPoint" : "true", + "data" : [ + { + "drilldown" : "001", + "y" : 123, + "name" : "#001" + }, + { + "drilldown" : "002", + "y" : 104, + "name" : "#002" + }, + { + "y" : 66, + "drilldown" : "003", + "name" : "#003" + }, + { + "y" : 84, + "drilldown" : "004", + "name" : "#004" + }, + { + "y" : 66, + "drilldown" : "005", + "name" : "#005" + }, + { + "name" : "#006", + "drilldown" : "006", + "y" : 47 + }, + { + "name" : "#007", + "drilldown" : "007", + "y" : 54 + }, + { + "drilldown" : "008", + "y" : 67, + "name" : "#008" + }, + { + "drilldown" : "009", + "y" : 65, + "name" : "#009" + }, + { + "y" : 58, + "drilldown" : "010", + "name" : "#010" + }, + { + "name" : "#011", + "y" : 77, + "drilldown" : "011" + }, + { + "y" : 81, + "drilldown" : "012", + "name" : "#012" + }, + { + "drilldown" : "013", + "y" : 74, + "name" : "#013" + }, + { + "y" : 94, + "drilldown" : "014", + "name" : "#014" + }, + { + "name" : "#015", + "drilldown" : "015", + "y" : 83 + }, + { + "drilldown" : "016", + "y" : 6, + "name" : "#016" + } + ] } + ], + "title" : { + "text" : "Perl Weekly Challenge Language" }, "legend" : { "enabled" : "false" + }, + "chart" : { + "type" : "column" + }, + "tooltip" : { + "pointFormat" : "Challenge {point.name}: {point.y:f}
", + "headerFormat" : "", + "followPointer" : "true" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 2e40d5bd2d..2cca3bcb68 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,26 +1,40 @@ { + "chart" : { + "type" : "column" + }, + "legend" : { + "enabled" : "false" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } + }, "yAxis" : { "title" : { "text" : "Total Score" } }, - "legend" : { - "enabled" : "false" + "xAxis" : { + "type" : "category" }, "series" : [ { "colorByPoint" : "true", - "name" : "Perl Weekly Challenge Leaders", "data" : [ { "drilldown" : "Joelle Maslak", - "y" : 164, - "name" : "#1: Joelle Maslak" + "name" : "#1: Joelle Maslak", + "y" : 164 }, { "drilldown" : "Laurent Rosenfeld", - "name" : "#2: Laurent Rosenfeld", - "y" : 154 + "y" : 160, + "name" : "#2: Laurent Rosenfeld" }, { "name" : "#3: Jaldhar H. Vyas", @@ -28,14 +42,14 @@ "drilldown" : "Jaldhar H. Vyas" }, { - "drilldown" : "Ruben Westerberg", "name" : "#4: Ruben Westerberg", - "y" : 108 + "y" : 108, + "drilldown" : "Ruben Westerberg" }, { - "drilldown" : "Adam Russell", "y" : 90, - "name" : "#5: Adam Russell" + "name" : "#5: Adam Russell", + "drilldown" : "Adam Russell" }, { "y" : 88, @@ -48,24 +62,24 @@ "drilldown" : "Arne Sommer" }, { - "name" : "#8: Simon Proctor", "y" : 74, + "name" : "#8: Simon Proctor", "drilldown" : "Simon Proctor" }, { - "drilldown" : "Kian-Meng Ang", "name" : "#9: Kian-Meng Ang", - "y" : 72 + "y" : 72, + "drilldown" : "Kian-Meng Ang" }, { - "name" : "#10: Francis Whittle", "y" : 68, + "name" : "#10: Francis Whittle", "drilldown" : "Francis Whittle" }, { - "drilldown" : "Dave Jacoby", + "name" : "#11: Dave Jacoby", "y" : 66, - "name" : "#11: Dave Jacoby" + "drilldown" : "Dave Jacoby" }, { "drilldown" : "E. Choroba", @@ -73,24 +87,24 @@ "y" : 66 }, { - "drilldown" : "Gustavo Chaves", + "name" : "#13: Gustavo Chaves", "y" : 62, - "name" : "#13: Gustavo Chaves" + "drilldown" : "Gustavo Chaves" }, { "drilldown" : "Andrezgz", - "name" : "#14: Andrezgz", - "y" : 58 + "y" : 58, + "name" : "#14: Andrezgz" }, { - "drilldown" : "Daniel Mantovani", + "name" : "#15: Daniel Mantovani", "y" : 48, - "name" : "#15: Daniel Mantovani" + "drilldown" : "Daniel Mantovani" }, { "drilldown" : "Duncan C. White", - "name" : "#16: Duncan C. White", - "y" : 48 + "y" : 48, + "name" : "#16: Duncan C. White" }, { "drilldown" : "Jo Christian Oterhals", @@ -98,19 +112,19 @@ "y" : 48 }, { + "drilldown" : "Yozen Hernandez", "name" : "#18: Yozen Hernandez", - "y" : 48, - "drilldown" : "Yozen Hernandez" + "y" : 48 }, { - "drilldown" : "Steven Wilson", + "y" : 46, "name" : "#19: Steven Wilson", - "y" : 46 + "drilldown" : "Steven Wilson" }, { "drilldown" : "Dr James A. Smith", - "y" : 44, - "name" : "#20: Dr James A. Smith" + "name" : "#20: Dr James A. Smith", + "y" : 44 }, { "y" : 36, @@ -123,9 +137,9 @@ "drilldown" : "Guillermo Ramos" }, { - "name" : "#23: Mark Senn", + "drilldown" : "Mark Senn", "y" : 32, - "drilldown" : "Mark Senn" + "name" : "#23: Mark Senn" }, { "drilldown" : "Nick Logan", @@ -138,9 +152,9 @@ "name" : "#25: Ozzy" }, { - "drilldown" : "Lars Balker", + "name" : "#26: Lars Balker", "y" : 28, - "name" : "#26: Lars Balker" + "drilldown" : "Lars Balker" }, { "drilldown" : "Maxim Nechaev", @@ -153,14 +167,14 @@ "drilldown" : "Veesh Goldman" }, { - "drilldown" : "Alicia Bielsa", + "y" : 22, "name" : "#29: Alicia Bielsa", - "y" : 22 + "drilldown" : "Alicia Bielsa" }, { - "drilldown" : "Doug Schrag", + "name" : "#30: Doug Schrag", "y" : 20, - "name" : "#30: Doug Schrag" + "drilldown" : "Doug Schrag" }, { "name" : "#31: Kevin Colyer", @@ -168,24 +182,24 @@ "drilldown" : "Kevin Colyer" }, { - "y" : 18, + "drilldown" : "Neil Bowers", "name" : "#32: Neil Bowers", - "drilldown" : "Neil Bowers" + "y" : 18 }, { + "drilldown" : "Jaime Corchado", "name" : "#33: Jaime Corchado", - "y" : 16, - "drilldown" : "Jaime Corchado" + "y" : 16 }, { "drilldown" : "Robert Gratza", - "name" : "#34: Robert Gratza", - "y" : 16 + "y" : 16, + "name" : "#34: Robert Gratza" }, { - "drilldown" : "John Barrett", + "name" : "#35: John Barrett", "y" : 14, - "name" : "#35: John Barrett" + "drilldown" : "John Barrett" }, { "drilldown" : "Khalid", @@ -198,49 +212,49 @@ "drilldown" : "Lubos Kolouch" }, { - "name" : "#38: Aaron Sherman", "y" : 12, + "name" : "#38: Aaron Sherman", "drilldown" : "Aaron Sherman" }, { + "drilldown" : "Donald Hunter", "y" : 12, - "name" : "#39: Donald Hunter", - "drilldown" : "Donald Hunter" + "name" : "#39: Donald Hunter" }, { + "drilldown" : "Kivanc Yazan", "name" : "#40: Kivanc Yazan", - "y" : 12, - "drilldown" : "Kivanc Yazan" + "y" : 12 }, { - "drilldown" : "Maxim Kolodyazhny", + "y" : 12, "name" : "#41: Maxim Kolodyazhny", - "y" : 12 + "drilldown" : "Maxim Kolodyazhny" }, { - "y" : 12, + "drilldown" : "Philippe Bruhat", "name" : "#42: Philippe Bruhat", - "drilldown" : "Philippe Bruhat" + "y" : 12 }, { + "drilldown" : "Sergio Iglesias", "name" : "#43: Sergio Iglesias", - "y" : 12, - "drilldown" : "Sergio Iglesias" + "y" : 12 }, { + "drilldown" : "Arpad Toth", "name" : "#44: Arpad Toth", - "y" : 10, - "drilldown" : "Arpad Toth" + "y" : 10 }, { - "drilldown" : "Pete Houston", "y" : 10, - "name" : "#45: Pete Houston" + "name" : "#45: Pete Houston", + "drilldown" : "Pete Houston" }, { - "drilldown" : "Steve Rogerson", "y" : 10, - "name" : "#46: Steve Rogerson" + "name" : "#46: Steve Rogerson", + "drilldown" : "Steve Rogerson" }, { "drilldown" : "Walt Mankowski", @@ -248,104 +262,86 @@ "name" : "#47: Walt Mankowski" }, { - "drilldown" : "Alex Daniel", "y" : 8, - "name" : "#48: Alex Daniel" + "name" : "#48: Alex Daniel", + "drilldown" : "Alex Daniel" }, { "drilldown" : "Bob Kleemann", - "name" : "#49: Bob Kleemann", - "y" : 8 + "y" : 8, + "name" : "#49: Bob Kleemann" }, { + "drilldown" : "Chenyf", "y" : 8, - "name" : "#50: Chenyf", - "drilldown" : "Chenyf" + "name" : "#50: Chenyf" } - ] + ], + "name" : "Perl Weekly Challenge Leaders" } ], - "xAxis" : { - "type" : "category" - }, "tooltip" : { + "followPointer" : "true", "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "", - "followPointer" : "true" - }, - "chart" : { - "type" : "column" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } - }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-07-08 14:01:28 GMT" + "headerFormat" : "" }, "drilldown" : { "series" : [ { - "id" : "Joelle Maslak", "name" : "Joelle Maslak", + "id" : "Joelle Maslak", "data" : [ [ "Blog", 4 ], [ - "Perl 5", + "Perl 6", 39 ], [ - "Perl 6", + "Perl 5", 39 ] ] }, { + "name" : "Laurent Rosenfeld", "id" : "Laurent Rosenfeld", "data" : [ - [ - "Blog", - 18 - ], [ "Perl 6", - 29 + 30 ], [ "Perl 5", - 30 + 31 + ], + [ + "Blog", + 19 ] - ], - "name" : "Laurent Rosenfeld" + ] }, { "data" : [ [ - "Perl 5", - 30 + "Blog", + 3 ], [ "Perl 6", 30 ], [ - "Blog", - 3 + "Perl 5", + 30 ] ], - "name" : "Jaldhar H. Vyas", - "id" : "Jaldhar H. Vyas" + "id" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas" }, { - "name" : "Ruben Westerberg", "data" : [ [ "Perl 5", @@ -356,61 +352,58 @@ 27 ] ], - "id" : "Ruben Westerberg" + "id" : "Ruben Westerberg", + "name" : "Ruben Westerberg" }, { - "id" : "Adam Russell", "name" : "Adam Russell", "data" : [ - [ - "Perl 5", - 30 - ], [ "Blog", 15 + ], + [ + "Perl 5", + 30 ] - ] + ], + "id" : "Adam Russell" }, { - "name" : "Athanasius", "data" : [ - [ - "Perl 6", - 9 - ], [ "Perl 5", 33 ], + [ + "Perl 6", + 9 + ], [ "Blog", 2 ] ], - "id" : "Athanasius" + "id" : "Athanasius", + "name" : "Athanasius" }, { - "id" : "Arne Sommer", + "name" : "Arne Sommer", "data" : [ - [ - "Blog", - 14 - ], [ "Perl 6", 27 + ], + [ + "Blog", + 14 ] ], - "name" : "Arne Sommer" + "id" : "Arne Sommer" }, { - "id" : "Simon Proctor", + "name" : "Simon Proctor", "data" : [ - [ - "Blog", - 7 - ], [ "Perl 6", 26 @@ -418,11 +411,17 @@ [ "Perl 5", 4 + ], + [ + "Blog", + 7 ] ], - "name" : "Simon Proctor" + "id" : "Simon Proctor" }, { + "name" : "Kian-Meng Ang", + "id" : "Kian-Meng Ang", "data" : [ [ "Perl 5", @@ -432,27 +431,24 @@ "Blog", 11 ] - ], - "name" : "Kian-Meng Ang", - "id" : "Kian-Meng Ang" + ] }, { "data" : [ - [ - "Perl 6", - 27 - ], [ "Blog", 7 + ], + [ + "Perl 6", + 27 ] ], - "name" : "Francis Whittle", - "id" : "Francis Whittle" + "id" : "Francis Whittle", + "name" : "Francis Whittle" }, { "id" : "Dave Jacoby", - "name" : "Dave Jacoby", "data" : [ [ "Blog", @@ -466,45 +462,46 @@ "Perl 6", 1 ] - ] + ], + "name" : "Dave Jacoby" }, { "id" : "E. Choroba", - "name" : "E. Choroba", "data" : [ - [ - "Blog", - 11 - ], [ "Perl 5", 22 + ], + [ + "Blog", + 11 ] - ] + ], + "name" : "E. Choroba" }, { - "id" : "Gustavo Chaves", "data" : [ - [ - "Perl 5", - 27 - ], [ "Blog", 4 + ], + [ + "Perl 5", + 27 ] ], + "id" : "Gustavo Chaves", "name" : "Gustavo Chaves" }, { + "name" : "Andrezgz", + "id" : "Andrezgz", "data" : [ [ "Perl 5", 29 ] - ], - "name" : "Andrezgz", - "id" : "Andrezgz" + ] }, { "data" : [ @@ -513,52 +510,53 @@ 24 ] ], - "name" : "Daniel Mantovani", - "id" : "Daniel Mantovani" + "id" : "Daniel Mantovani", + "name" : "Daniel Mantovani" }, { - "id" : "Duncan C. White", - "name" : "Duncan C. White", "data" : [ [ "Perl 5", 24 ] - ] + ], + "id" : "Duncan C. White", + "name" : "Duncan C. White" }, { - "name" : "Jo Christian Oterhals", "data" : [ - [ - "Perl 6", - 12 - ], [ "Perl 5", 6 ], + [ + "Perl 6", + 12 + ], [ "Blog", 6 ] ], - "id" : "Jo Christian Oterhals" + "id" : "Jo Christian Oterhals", + "name" : "Jo Christian Oterhals" }, { + "name" : "Yozen Hernandez", + "id" : "Yozen Hernandez", "data" : [ - [ - "Perl 5", - 16 - ], [ "Blog", 8 + ], + [ + "Perl 5", + 16 ] - ], - "name" : "Yozen Hernandez", - "id" : "Yozen Hernandez" + ] }, { + "name" : "Steven Wilson", "data" : [ [ "Blog", @@ -569,63 +567,62 @@ 20 ] ], - "name" : "Steven Wilson", "id" : "Steven Wilson" }, { "id" : "Dr James A. Smith", "data" : [ - [ - "Perl 5", - 12 - ], [ "Perl 6", 10 + ], + [ + "Perl 5", + 12 ] ], "name" : "Dr James A. Smith" }, { + "name" : "Feng Chang", "id" : "Feng Chang", "data" : [ [ - "Perl 5", + "Perl 6", 9 ], [ - "Perl 6", + "Perl 5", 9 ] - ], - "name" : "Feng Chang" + ] }, { - "id" : "Guillermo Ramos", "data" : [ [ "Perl 5", 17 ] ], + "id" : "Guillermo Ramos", "name" : "Guillermo Ramos" }, { - "id" : "Mark Senn", - "name" : "Mark Senn", "data" : [ - [ - "Perl 6", - 12 - ], [ "Blog", 4 + ], + [ + "Perl 6", + 12 ] - ] + ], + "id" : "Mark Senn", + "name" : "Mark Senn" }, { - "name" : "Nick Logan", + "id" : "Nick Logan", "data" : [ [ "Perl 5", @@ -636,7 +633,7 @@ 8 ] ], - "id" : "Nick Logan" + "name" : "Nick Logan" }, { "name" : "Ozzy", @@ -649,28 +646,28 @@ "id" : "Ozzy" }, { + "name" : "Lars Balker", + "id" : "Lars Balker", "data" : [ - [ - "Perl 6", - 4 - ], [ "Perl 5", 10 + ], + [ + "Perl 6", + 4 ] - ], - "name" : "Lars Balker", - "id" : "Lars Balker" + ] }, { "name" : "Maxim Nechaev", + "id" : "Maxim Nechaev", "data" : [ [ "Perl 5", 12 ] - ], - "id" : "Maxim Nechaev" + ] }, { "name" : "Veesh Goldman", @@ -684,51 +681,51 @@ }, { "id" : "Alicia Bielsa", - "name" : "Alicia Bielsa", "data" : [ [ "Perl 5", 11 ] - ] + ], + "name" : "Alicia Bielsa" }, { - "name" : "Doug Schrag", + "id" : "Doug Schrag", "data" : [ [ "Perl 6", 10 ] ], - "id" : "Doug Schrag" + "name" : "Doug Schrag" }, { + "name" : "Kevin Colyer", "id" : "Kevin Colyer", "data" : [ [ "Perl 6", 10 ] - ], - "name" : "Kevin Colyer" + ] }, { "name" : "Neil Bowers", + "id" : "Neil Bowers", "data" : [ - [ - "Blog", - 3 - ], [ "Perl 5", 6 + ], + [ + "Blog", + 3 ] - ], - "id" : "Neil Bowers" + ] }, { - "id" : "Jaime Corchado", "name" : "Jaime Corchado", + "id" : "Jaime Corchado", "data" : [ [ "Perl 5", @@ -737,6 +734,7 @@ ] }, { + "name" : "Robert Gratza", "id" : "Robert Gratza", "data" : [ [ @@ -747,59 +745,57 @@ "Perl 5", 2 ] - ], - "name" : "Robert Gratza" + ] }, { - "name" : "John Barrett", "data" : [ [ "Perl 5", 7 ] ], - "id" : "John Barrett" + "id" : "John Barrett", + "name" : "John Barrett" }, { - "id" : "Khalid", - "name" : "Khalid", "data" : [ - [ - "Perl 5", - 4 - ], [ "Perl 6", 2 ], + [ + "Perl 5", + 4 + ], [ "Blog", 1 ] - ] + ], + "id" : "Khalid", + "name" : "Khalid" }, { - "id" : "Lubos Kolouch", "name" : "Lubos Kolouch", "data" : [ [ "Perl 5", 7 ] - ] + ], + "id" : "Lubos Kolouch" }, { - "name" : "Aaron Sherman", "data" : [ [ "Perl 6", 6 ] ], - "id" : "Aaron Sherman" + "id" : "Aaron Sherman", + "name" : "Aaron Sherman" }, { - "id" : "Donald Hunter", "name" : "Donald Hunter", "data" : [ [ @@ -810,75 +806,74 @@ "Blog", 3 ] - ] + ], + "id" : "Donald Hunter" }, { + "name" : "Kivanc Yazan", "id" : "Kivanc Yazan", "data" : [ [ "Perl 5", 6 ] - ], - "name" : "Kivanc Yazan" + ] }, { - "id" : "Maxim Kolodyazhny", "data" : [ [ "Perl 5", 6 ] ], + "id" : "Maxim Kolodyazhny", "name" : "Maxim Kolodyazhny" }, { "id" : "Philippe Bruhat", - "name" : "Philippe Bruhat", "data" : [ - [ - "Blog", - 2 - ], [ "Perl 5", 4 + ], + [ + "Blog", + 2 ] - ] + ], + "name" : "Philippe Bruhat" }, { "id" : "Sergio Iglesias", - "name" : "Sergio Iglesias", "data" : [ [ "Perl 5", 6 ] - ] + ], + "name" : "Sergio Iglesias" }, { - "id" : "Arpad Toth", - "name" : "Arpad Toth", "data" : [ [ "Perl 5", 5 ] - ] + ], + "id" : "Arpad Toth", + "name" : "Arpad Toth" }, { + "id" : "Pete Houston", "data" : [ [ "Perl 5", 5 ] ], - "name" : "Pete Houston", - "id" : "Pete Houston" + "name" : "Pete Houston" }, { - "id" : "Steve Rogerson", - "name" : "Steve Rogerson", "data" : [ [ "Perl 6", @@ -888,51 +883,56 @@ "Perl 5", 3 ] - ] + ], + "id" : "Steve Rogerson", + "name" : "Steve Rogerson" }, { - "id" : "Walt Mankowski", - "name" : "Walt Mankowski", "data" : [ [ "Perl 5", 5 ] - ] + ], + "id" : "Walt Mankowski", + "name" : "Walt Mankowski" }, { + "name" : "Alex Daniel", "id" : "Alex Daniel", "data" : [ [ "Perl 6", 4 ] - ], - "name" : "Alex Daniel" + ] }, { - "name" : "Bob Kleemann", "data" : [ [ "Perl 5", 4 ] ], - "id" : "Bob Kleemann" + "id" : "Bob Kleemann", + "name" : "Bob Kleemann" }, { + "name" : "Chenyf", "data" : [ [ "Perl 6", 4 ] ], - "name" : "Chenyf", "id" : "Chenyf" } ] }, "title" : { "text" : "Perl Weekly Challenge Leaders (TOP 50)" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-07-08 19:37:31 GMT" } } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index db76d370b5..bb16fd2f64 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -1,9 +1,11 @@ { - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "plotOptions" : { + "column" : { + "stacking" : "percent" + } }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-07-08 14:01:24 GMT" + "chart" : { + "type" : "column" }, "xAxis" : { "categories" : [ @@ -39,16 +41,8 @@ "Feng Chang" ] }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, - "chart" : { - "type" : "column" - }, "series" : [ { - "name" : "Perl 5", "data" : [ 0, 2, @@ -80,7 +74,8 @@ 22, 2, 9 - ] + ], + "name" : "Perl 5" }, { "data" : [ @@ -159,9 +154,14 @@ }, "min" : 0 }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-07-08 19:32:29 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" } } diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index a9ebe18257..d313f43580 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -1,62 +1,16 @@ { - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, - "xAxis" : { - "categories" : [ - "Finley", - "Francis Whittle", - "Fred Zinn", - "Freddie B", - "Guillermo Ramos", - "Gustavo Chaves", - "Jacques Guinnebault", - "Jaime Corchado", - "Jaldhar H. Vyas", - "Dr James A. Smith", - "Jeff", - "Jeremy Carman", - "Jim Bacon", - "JJ Merelo", - "Jo Christian Oterhals", - "Joe Tym", - "Joelle Maslak", - "John Barrett", - "Juan Caballero", - "Kevin Colyer", - "Khalid", - "Kian-Meng Ang", - "Kivanc Yazan", - "Lars Balker", - "Laurent Rosenfeld", - "Lubos Kolouch", - "Magnus Woldrich", - "Mano Chandar", - "Mark Senn", - "Martin Barth" - ] - }, "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-07-08 14:01:24 GMT" + "text" : "[Champions: 30] Last updated at 2019-07-08 19:32:29 GMT" }, "title" : { "text" : "Perl Weekly Challenge - 2019" }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 + "tooltip" : { + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 }, "series" : [ { - "name" : "Perl 5", "data" : [ 0, 0, @@ -82,15 +36,17 @@ 25, 6, 10, - 30, + 31, 7, 1, 0, 0, 0 - ] + ], + "name" : "Perl 5" }, { + "name" : "Perl 6", "data" : [ 4, 27, @@ -116,14 +72,13 @@ 0, 0, 4, - 29, + 30, 0, 1, 0, 12, 1 - ], - "name" : "Perl 6" + ] }, { "name" : "Blog", @@ -152,7 +107,7 @@ 11, 0, 0, - 18, + 19, 0, 0, 0, @@ -161,7 +116,52 @@ ] } ], + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, "chart" : { "type" : "column" + }, + "xAxis" : { + "categories" : [ + "Finley", + "Francis Whittle", + "Fred Zinn", + "Freddie B", + "Guillermo Ramos", + "Gustavo Chaves", + "Jacques Guinnebault", + "Jaime Corchado", + "Jaldhar H. Vyas", + "Dr James A. Smith", + "Jeff", + "Jeremy Carman", + "Jim Bacon", + "JJ Merelo", + "Jo Christian Oterhals", + "Joe Tym", + "Joelle Maslak", + "John Barrett", + "Juan Caballero", + "Kevin Colyer", + "Khalid", + "Kian-Meng Ang", + "Kivanc Yazan", + "Lars Balker", + "Laurent Rosenfeld", + "Lubos Kolouch", + "Magnus Woldrich", + "Mano Chandar", + "Mark Senn", + "Martin Barth" + ] } } diff --git a/stats/pwc-summary-61-90.json b/stats/pwc-summary-61-90.json index 0cc33711dd..f8277f0671 100644 --- a/stats/pwc-summary-61-90.json +++ b/stats/pwc-summary-61-90.json @@ -4,18 +4,55 @@ "stacking" : "percent" } }, - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 + "xAxis" : { + "categories" : [ + "Martin Mugeni", + "Matt Latusek", + "Matthew O. Persico", + "Maxim Kolodyazhny", + "Maxim Nechaev", + "Michael Schaap", + "Neil Bowers", + "Nick Logan", + "Nikhil Prasanna", + "Noud", + "Chenyf", + "Oleksii Tsvietnov", + "Ozzy", + "Pavel Jurca", + "Pavel Starikov", + "Pete Houston", + "Pete Sergeant", + "Philippe Bruhat", + "Prajith P", + "Robert Van Dam", + "Robert Gratza", + "Roger Bell West", + "Ruben Westerberg", + "Sean Meininger", + "Sergio Iglesias", + "Rakesh Kumar Shardiwal", + "Shaun Pearce", + "Simon Miner", + "Simon Proctor", + "Simon Reinhardt" + ] }, "chart" : { "type" : "column" }, + "tooltip" : { + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-07-08 19:32:29 GMT" + }, "series" : [ { - "name" : "Perl 5", "data" : [ 0, 4, @@ -47,7 +84,8 @@ 1, 4, 4 - ] + ], + "name" : "Perl 5" }, { "data" : [ @@ -120,48 +158,10 @@ ] } ], - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, - "xAxis" : { - "categories" : [ - "Martin Mugeni", - "Matt Latusek", - "Matthew O. Persico", - "Maxim Kolodyazhny", - "Maxim Nechaev", - "Michael Schaap", - "Neil Bowers", - "Nick Logan", - "Nikhil Prasanna", - "Noud", - "Chenyf", - "Oleksii Tsvietnov", - "Ozzy", - "Pavel Jurca", - "Pavel Starikov", - "Pete Houston", - "Pete Sergeant", - "Philippe Bruhat", - "Prajith P", - "Robert Van Dam", - "Robert Gratza", - "Roger Bell West", - "Ruben Westerberg", - "Sean Meininger", - "Sergio Iglesias", - "Rakesh Kumar Shardiwal", - "Shaun Pearce", - "Simon Miner", - "Simon Proctor", - "Simon Reinhardt" - ] - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-07-08 14:01:24 GMT" - }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 } } diff --git a/stats/pwc-summary-91-120.json b/stats/pwc-summary-91-120.json index 42a4f37409..fcdb7fa3c7 100644 --- a/stats/pwc-summary-91-120.json +++ b/stats/pwc-summary-91-120.json @@ -1,21 +1,6 @@ { - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "chart" : { - "type" : "column" - }, "series" : [ { - "name" : "Perl 5", "data" : [ 3, 0, @@ -29,10 +14,10 @@ 1, 1, 16 - ] + ], + "name" : "Perl 5" }, { - "name" : "Perl 6", "data" : [ 2, 0, @@ -46,10 +31,10 @@ 0, 1, 0 - ] + ], + "name" : "Perl 6" }, { - "name" : "Blog", "data" : [ 0, 0, @@ -63,9 +48,31 @@ 0, 0, 8 - ] + ], + "name" : "Blog" } ], + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "subtitle" : { + "text" : "[Champions: 12] Last updated at 2019-07-08 19:32:29 GMT" + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, "xAxis" : { "categories" : [ "Steve Rogerson", @@ -82,14 +89,7 @@ "Yozen Hernandez" ] }, - "subtitle" : { - "text" : "[Champions: 12] Last updated at 2019-07-08 14:01:24 GMT" - }, - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 - }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "chart" : { + "type" : "column" } } diff --git a/stats/pwc-summary.json b/stats/pwc-summary.json index 9c8bba2bc9..3ce0a11277 100644 --- a/stats/pwc-summary.json +++ b/stats/pwc-summary.json @@ -1,17 +1,130 @@ { - "subtitle" : { - "text" : "[Champions: 102] Last updated at 2019-07-08 14:01:23 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", + "Duane Powell", + "Duncan C. White", + "E. Choroba", + "Eddy HS", + "Feng Chang", + "Finley", + "Francis Whittle", + "Fred Zinn", + "Freddie B", + "Guillermo Ramos", + "Gustavo Chaves", + "Jacques Guinnebault", + "Jaime Corchado", + "Jaldhar H. Vyas", + "Dr James A. Smith", + "Jeff", + "Jeremy Carman", + "Jim Bacon", + "JJ Merelo", + "Jo Christian Oterhals", + "Joe Tym", + "Joelle Maslak", + "John Barrett", + "Juan Caballero", + "Kevin Colyer", + "Khalid", + "Kian-Meng Ang", + "Kivanc Yazan", + "Lars Balker", + "Laurent Rosenfeld", + "Lubos Kolouch", + "Magnus Woldrich", + "Mano Chandar", + "Mark Senn", + "Martin Barth", + "Martin Mugeni", + "Matt Latusek", + "Matthew O. Persico", + "Maxim Kolodyazhny", + "Maxim Nechaev", + "Michael Schaap", + "Neil Bowers", + "Nick Logan", + "Nikhil Prasanna", + "Noud", + "Chenyf", + "Oleksii Tsvietnov", + "Ozzy", + "Pavel Jurca", + "Pavel Starikov", + "Pete Houston", + "Pete Sergeant", + "Philippe Bruhat", + "Prajith P", + "Robert Van Dam", + "Robert Gratza", + "Roger Bell West", + "Ruben Westerberg", + "Sean Meininger", + "Sergio Iglesias", + "Rakesh Kumar Shardiwal", + "Shaun Pearce", + "Simon Miner", + "Simon Proctor", + "Simon Reinhardt", + "Steve Rogerson", + "Steven Lembark", + "Steven Wilson", + "Tiago Stock", + "Tim Smith", + "Tore Andersson", + "Luis F. Uceta", + "Veesh Goldman", + "Walt Mankowski", + "William Gilmore", + "Yary H", + "Yozen Hernandez" + ] }, - "chart" : { - "type" : "column" + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" + } + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" }, "plotOptions" : { "column" : { "stacking" : "percent" } }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "subtitle" : { + "text" : "[Champions: 102] Last updated at 2019-07-08 19:32:29 GMT" }, "series" : [ { @@ -71,7 +184,7 @@ 25, 6, 10, - 30, + 31, 7, 1, 0, @@ -122,7 +235,6 @@ ] }, { - "name" : "Perl 6", "data" : [ 6, 0, @@ -178,7 +290,7 @@ 0, 0, 4, - 29, + 30, 0, 1, 0, @@ -226,7 +338,8 @@ 0, 1, 0 - ] + ], + "name" : "Perl 6" }, { "name" : "Blog", @@ -285,7 +398,7 @@ 11, 0, 0, - 18, + 19, 0, 0, 0, @@ -336,120 +449,7 @@ ] } ], - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } - }, - "xAxis" : { - "categories" : [ - "Aaron Sherman", - "Abigail", - "Adam Russell", - "Ailbhe Tweedie", - "Alex Daniel", - "Alexander Karelas", - "Alexey Melezhik", - "Alicia Bielsa", - "Andrezgz", - "Antonio Gamiz", - "Arne Sommer", - "Arpad Toth", - "Athanasius", - "Aubrey Quarcoo", - "Bill Palmer", - "Bob Kleemann", - "Clive Holloway", - "Daniel Mantovani", - "Daniel Mita", - "Dave Cross", - "Dave Jacoby", - "David Kayal", - "Denis Yurashku", - "Donald Hunter", - "Doug Schrag", - "Duane Powell", - "Duncan C. White", - "E. Choroba", - "Eddy HS", - "Feng Chang", - "Finley", - "Francis Whittle", - "Fred Zinn