From 6b1f526ad9cb766f1efcf11545288cf804e8a8e4 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Sun, 29 Sep 2019 23:41:22 +0100 Subject: - Renames solutions by Markus Holzer. --- challenge-027/markus-holzer/perl6/ch-1.p6 | 27 ++ challenge-027/markus-holzer/perl6/ch-1.pl6 | 27 -- challenge-027/markus-holzer/perl6/ch-2.p6 | 9 + challenge-027/markus-holzer/perl6/ch-2.pl6 | 9 - stats/pwc-current.json | 180 +++++------ stats/pwc-language-breakdown-summary.json | 84 ++--- stats/pwc-language-breakdown.json | 204 ++++++------ stats/pwc-leaders.json | 504 ++++++++++++++--------------- stats/pwc-summary-1-30.json | 100 +++--- stats/pwc-summary-31-60.json | 102 +++--- stats/pwc-summary-61-90.json | 26 +- stats/pwc-summary-91-120.json | 86 ++--- stats/pwc-summary.json | 284 ++++++++-------- 13 files changed, 821 insertions(+), 821 deletions(-) create mode 100644 challenge-027/markus-holzer/perl6/ch-1.p6 delete mode 100644 challenge-027/markus-holzer/perl6/ch-1.pl6 create mode 100644 challenge-027/markus-holzer/perl6/ch-2.p6 delete mode 100644 challenge-027/markus-holzer/perl6/ch-2.pl6 diff --git a/challenge-027/markus-holzer/perl6/ch-1.p6 b/challenge-027/markus-holzer/perl6/ch-1.p6 new file mode 100644 index 0000000000..4c7e3b5448 --- /dev/null +++ b/challenge-027/markus-holzer/perl6/ch-1.p6 @@ -0,0 +1,27 @@ +multi sub MAIN( Int:D $x1, Int:D $y1, Int:D $x2, Int:D $y2, Int:D $x3, Int:D $y3, Int:D $x4, Int:D $y4 ) +{ + with intersection( $x1, $y1, $x2, $y2, $x3, $y3, $x4, $y4 ) -> ($x, $y) + { + say "The intersection is at $x, $y."; + } + else + { + say .exception.message; + } +} + + +sub intersection( Int \x1, Int \y1, Int \x2, Int \y2, Int \x3, Int \y3, Int \x4, Int \y4 ) +{ + CATCH { default { fail "Lines are parallel or identical" } } + + return ( + eager # potential for division by zero, + ( (x1 * y2 - y1 * x2 ) * (x3 - x4) - (x1 - x2) * (x3 * y4 - y3*x4) ) div + ( (x1 - x2) * (y3 - y4) - (y1 - y2) * (x3 - x4) ), + + eager # without eager, laziness will bite us later + ( (x1 * y2 - y1 * x2) * (y3 - y4) - (y1 -y2) * (x3*y4 - y3 * x4) ) div + ( (x1 - x2) * (y3 - y4) - (y1 - y2) * (x2 - x4) ) + ); +} diff --git a/challenge-027/markus-holzer/perl6/ch-1.pl6 b/challenge-027/markus-holzer/perl6/ch-1.pl6 deleted file mode 100644 index 4c7e3b5448..0000000000 --- a/challenge-027/markus-holzer/perl6/ch-1.pl6 +++ /dev/null @@ -1,27 +0,0 @@ -multi sub MAIN( Int:D $x1, Int:D $y1, Int:D $x2, Int:D $y2, Int:D $x3, Int:D $y3, Int:D $x4, Int:D $y4 ) -{ - with intersection( $x1, $y1, $x2, $y2, $x3, $y3, $x4, $y4 ) -> ($x, $y) - { - say "The intersection is at $x, $y."; - } - else - { - say .exception.message; - } -} - - -sub intersection( Int \x1, Int \y1, Int \x2, Int \y2, Int \x3, Int \y3, Int \x4, Int \y4 ) -{ - CATCH { default { fail "Lines are parallel or identical" } } - - return ( - eager # potential for division by zero, - ( (x1 * y2 - y1 * x2 ) * (x3 - x4) - (x1 - x2) * (x3 * y4 - y3*x4) ) div - ( (x1 - x2) * (y3 - y4) - (y1 - y2) * (x3 - x4) ), - - eager # without eager, laziness will bite us later - ( (x1 * y2 - y1 * x2) * (y3 - y4) - (y1 -y2) * (x3*y4 - y3 * x4) ) div - ( (x1 - x2) * (y3 - y4) - (y1 - y2) * (x2 - x4) ) - ); -} diff --git a/challenge-027/markus-holzer/perl6/ch-2.p6 b/challenge-027/markus-holzer/perl6/ch-2.p6 new file mode 100644 index 0000000000..d3bea23017 --- /dev/null +++ b/challenge-027/markus-holzer/perl6/ch-2.p6 @@ -0,0 +1,9 @@ +use Test; +use Scalar::History; # See the README + +my Int $x := Scalar::History.create(10, Int); +$x = 20; +$x -= 5; + +ok( $x == 15 ); +is-deeply( $x.VAR.get-history, (10, 20) ); \ No newline at end of file diff --git a/challenge-027/markus-holzer/perl6/ch-2.pl6 b/challenge-027/markus-holzer/perl6/ch-2.pl6 deleted file mode 100644 index d3bea23017..0000000000 --- a/challenge-027/markus-holzer/perl6/ch-2.pl6 +++ /dev/null @@ -1,9 +0,0 @@ -use Test; -use Scalar::History; # See the README - -my Int $x := Scalar::History.create(10, Int); -$x = 20; -$x -= 5; - -ok( $x == 15 ); -is-deeply( $x.VAR.get-history, (10, 20) ); \ No newline at end of file diff --git a/stats/pwc-current.json b/stats/pwc-current.json index ece7690990..6b6f91e4c7 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,7 +1,12 @@ { + "legend" : { + "enabled" : 0 + }, "drilldown" : { "series" : [ { + "name" : "Adam Russell", + "id" : "Adam Russell", "data" : [ [ "Perl 5", @@ -11,9 +16,7 @@ "Blog", 1 ] - ], - "name" : "Adam Russell", - "id" : "Adam Russell" + ] }, { "data" : [ @@ -36,30 +39,31 @@ 1 ] ], - "name" : "Arne Sommer", - "id" : "Arne Sommer" + "id" : "Arne Sommer", + "name" : "Arne Sommer" }, { + "name" : "Colin Crain", + "id" : "Colin Crain", "data" : [ [ "Perl 5", 2 ] - ], - "name" : "Colin Crain", - "id" : "Colin Crain" + ] }, { + "name" : "Duane Powell", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Duane Powell", - "name" : "Duane Powell" + "id" : "Duane Powell" }, { + "name" : "E. Choroba", "data" : [ [ "Perl 5", @@ -70,10 +74,10 @@ 1 ] ], - "name" : "E. Choroba", "id" : "E. Choroba" }, { + "name" : "Joelle Maslak", "data" : [ [ "Perl 5", @@ -84,21 +88,19 @@ 2 ] ], - "name" : "Joelle Maslak", "id" : "Joelle Maslak" }, { + "name" : "Kevin Colyer", + "id" : "Kevin Colyer", "data" : [ [ "Perl 6", 2 ] - ], - "name" : "Kevin Colyer", - "id" : "Kevin Colyer" + ] }, { - "name" : "Laurent Rosenfeld", "id" : "Laurent Rosenfeld", "data" : [ [ @@ -113,49 +115,52 @@ "Blog", 1 ] - ] + ], + "name" : "Laurent Rosenfeld" }, { + "id" : "Lubos Kolouch", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Lubos Kolouch", - "id" : "Lubos Kolouch" + "name" : "Lubos Kolouch" }, { + "name" : "Mark Anderson", "data" : [ [ "Perl 5", 1 ] ], - "id" : "Mark Anderson", - "name" : "Mark Anderson" + "id" : "Mark Anderson" }, { + "name" : "Markus Holzer", + "id" : "Markus Holzer", "data" : [ [ "Perl 6", 2 ] - ], - "name" : "Markus Holzer", - "id" : "Markus Holzer" + ] }, { + "name" : "Noud", + "id" : "Noud", "data" : [ [ "Perl 6", 2 ] - ], - "id" : "Noud", - "name" : "Noud" + ] }, { + "name" : "Roger Bell West", + "id" : "Roger Bell West", "data" : [ [ "Perl 5", @@ -165,9 +170,7 @@ "Perl 6", 1 ] - ], - "id" : "Roger Bell West", - "name" : "Roger Bell West" + ] }, { "data" : [ @@ -184,8 +187,8 @@ "name" : "Ruben Westerberg" }, { - "id" : "Simon Proctor", "name" : "Simon Proctor", + "id" : "Simon Proctor", "data" : [ [ "Perl 6", @@ -194,18 +197,18 @@ ] }, { - "id" : "Trenton Langer", "name" : "Trenton Langer", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "Trenton Langer" }, { - "id" : "Yet Ebreo", "name" : "Yet Ebreo", + "id" : "Yet Ebreo", "data" : [ [ "Perl 5", @@ -219,82 +222,96 @@ } ] }, - "legend" : { - "enabled" : 0 + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "xAxis" : { + "type" : "category" + }, + "subtitle" : { + "text" : "[Champions: 18] Last updated at 2019-09-29 22:41:04 GMT" }, "plotOptions" : { "series" : { - "borderWidth" : 0, "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 } }, + "chart" : { + "type" : "column" + }, + "tooltip" : { + "followPointer" : 1, + "headerFormat" : "{series.name}
", + "pointFormat" : "{point.name}: {point.y:f}
" + }, "series" : [ { - "colorByPoint" : 1, - "name" : "Perl Weekly Challenge - 027", "data" : [ { - "y" : 3, "drilldown" : "Adam Russell", + "y" : 3, "name" : "Adam Russell" }, { - "name" : "Andrezgz", + "y" : 2, "drilldown" : "Andrezgz", - "y" : 2 + "name" : "Andrezgz" }, { + "drilldown" : "Arne Sommer", "y" : 3, - "name" : "Arne Sommer", - "drilldown" : "Arne Sommer" + "name" : "Arne Sommer" }, { "drilldown" : "Colin Crain", - "name" : "Colin Crain", - "y" : 2 + "y" : 2, + "name" : "Colin Crain" }, { + "drilldown" : "Duane Powell", "y" : 2, - "name" : "Duane Powell", - "drilldown" : "Duane Powell" + "name" : "Duane Powell" }, { - "drilldown" : "E. Choroba", "name" : "E. Choroba", + "drilldown" : "E. Choroba", "y" : 3 }, { - "drilldown" : "Joelle Maslak", "name" : "Joelle Maslak", - "y" : 4 + "y" : 4, + "drilldown" : "Joelle Maslak" }, { - "y" : 2, "drilldown" : "Kevin Colyer", + "y" : 2, "name" : "Kevin Colyer" }, { "drilldown" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld", - "y" : 5 + "y" : 5, + "name" : "Laurent Rosenfeld" }, { + "y" : 2, "drilldown" : "Lubos Kolouch", - "name" : "Lubos Kolouch", - "y" : 2 + "name" : "Lubos Kolouch" }, { "y" : 1, - "name" : "Mark Anderson", - "drilldown" : "Mark Anderson" + "drilldown" : "Mark Anderson", + "name" : "Mark Anderson" }, { + "y" : 2, "drilldown" : "Markus Holzer", - "name" : "Markus Holzer", - "y" : 2 + "name" : "Markus Holzer" }, { "name" : "Noud", @@ -302,53 +319,36 @@ "y" : 2 }, { - "y" : 3, "drilldown" : "Roger Bell West", + "y" : 3, "name" : "Roger Bell West" }, { "y" : 4, - "name" : "Ruben Westerberg", - "drilldown" : "Ruben Westerberg" + "drilldown" : "Ruben Westerberg", + "name" : "Ruben Westerberg" }, { - "drilldown" : "Simon Proctor", "name" : "Simon Proctor", + "drilldown" : "Simon Proctor", "y" : 2 }, { - "drilldown" : "Trenton Langer", "name" : "Trenton Langer", - "y" : 2 + "y" : 2, + "drilldown" : "Trenton Langer" }, { - "y" : 3, "drilldown" : "Yet Ebreo", + "y" : 3, "name" : "Yet Ebreo" } - ] + ], + "name" : "Perl Weekly Challenge - 027", + "colorByPoint" : 1 } ], - "tooltip" : { - "headerFormat" : "{series.name}
", - "followPointer" : 1, - "pointFormat" : "{point.name}: {point.y:f}
" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "chart" : { - "type" : "column" - }, - "subtitle" : { - "text" : "[Champions: 18] Last updated at 2019-09-29 21:16:50 GMT" - }, "title" : { "text" : "Perl Weekly Challenge - 027" - }, - "xAxis" : { - "type" : "category" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index e0da245d34..08974267b7 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,12 +1,49 @@ { - "subtitle" : { - "text" : "Last updated at 2019-09-29 21:17:00 GMT" + "tooltip" : { + "pointFormat" : "{point.y:.0f}" + }, + "yAxis" : { + "title" : { + "text" : null + }, + "min" : 0 }, "title" : { "text" : "Perl Weekly Challenge Contributions - 2019" }, + "xAxis" : { + "labels" : { + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + } + }, + "type" : "category" + }, + "legend" : { + "enabled" : "false" + }, + "subtitle" : { + "text" : "Last updated at 2019-09-29 22:41:16 GMT" + }, + "chart" : { + "type" : "column" + }, "series" : [ { + "name" : "Contributions", + "dataLabels" : { + "enabled" : "true", + "color" : "#FFFFFF", + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + }, + "rotation" : -90, + "format" : "{point.y:.0f}", + "y" : 10, + "align" : "right" + }, "data" : [ [ "Blog", @@ -18,46 +55,9 @@ ], [ "Perl 6", - 666 + 668 ] - ], - "dataLabels" : { - "format" : "{point.y:.0f}", - "rotation" : -90, - "color" : "#FFFFFF", - "enabled" : "true", - "align" : "right", - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - }, - "y" : 10 - }, - "name" : "Contributions" - } - ], - "xAxis" : { - "type" : "category", - "labels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - } + ] } - }, - "yAxis" : { - "title" : { - "text" : null - }, - "min" : 0 - }, - "chart" : { - "type" : "column" - }, - "legend" : { - "enabled" : "false" - }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - } + ] } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 2b007dc64a..2801e6ca3f 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,88 +1,93 @@ { + "chart" : { + "type" : "column" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-09-29 22:41:16 GMT" + }, "series" : [ { "name" : "Perl Weekly Challenge Languages", - "colorByPoint" : "true", "data" : [ { - "name" : "#001", "drilldown" : "001", + "name" : "#001", "y" : 132 }, { + "y" : 104, "name" : "#002", - "drilldown" : "002", - "y" : 104 + "drilldown" : "002" }, { - "drilldown" : "003", + "y" : 66, "name" : "#003", - "y" : 66 + "drilldown" : "003" }, { - "y" : 86, "drilldown" : "004", - "name" : "#004" + "name" : "#004", + "y" : 86 }, { + "name" : "#005", "y" : 66, - "drilldown" : "005", - "name" : "#005" + "drilldown" : "005" }, { + "drilldown" : "006", "y" : 47, - "name" : "#006", - "drilldown" : "006" + "name" : "#006" }, { - "y" : 55, "drilldown" : "007", - "name" : "#007" + "name" : "#007", + "y" : 55 }, { "drilldown" : "008", - "name" : "#008", - "y" : 69 + "y" : 69, + "name" : "#008" }, { "y" : 68, - "drilldown" : "009", - "name" : "#009" + "name" : "#009", + "drilldown" : "009" }, { - "y" : 60, + "drilldown" : "010", "name" : "#010", - "drilldown" : "010" + "y" : 60 }, { + "drilldown" : "011", "y" : 78, - "name" : "#011", - "drilldown" : "011" + "name" : "#011" }, { + "drilldown" : "012", "y" : 83, - "name" : "#012", - "drilldown" : "012" + "name" : "#012" }, { "drilldown" : "013", - "name" : "#013", - "y" : 76 + "y" : 76, + "name" : "#013" }, { - "y" : 95, "drilldown" : "014", + "y" : 95, "name" : "#014" }, { - "drilldown" : "015", "name" : "#015", - "y" : 93 + "y" : 93, + "drilldown" : "015" }, { "y" : 66, - "drilldown" : "016", - "name" : "#016" + "name" : "#016", + "drilldown" : "016" }, { "y" : 79, @@ -90,9 +95,9 @@ "drilldown" : "017" }, { - "drilldown" : "018", + "y" : 76, "name" : "#018", - "y" : 76 + "drilldown" : "018" }, { "y" : 95, @@ -100,54 +105,49 @@ "drilldown" : "019" }, { - "drilldown" : "020", "name" : "#020", - "y" : 95 + "y" : 95, + "drilldown" : "020" }, { - "drilldown" : "021", + "y" : 67, "name" : "#021", - "y" : 67 + "drilldown" : "021" }, { "drilldown" : "022", - "name" : "#022", - "y" : 63 + "y" : 63, + "name" : "#022" }, { - "y" : 91, "drilldown" : "023", - "name" : "#023" + "name" : "#023", + "y" : 91 }, { - "y" : 70, + "drilldown" : "024", "name" : "#024", - "drilldown" : "024" + "y" : 70 }, { - "name" : "#025", "drilldown" : "025", + "name" : "#025", "y" : 55 }, { "y" : 67, - "drilldown" : "026", - "name" : "#026" + "name" : "#026", + "drilldown" : "026" }, { "drilldown" : "027", "name" : "#027", - "y" : 45 + "y" : 47 } - ] + ], + "colorByPoint" : "true" } ], - "title" : { - "text" : "Perl Weekly Challenge Language" - }, - "xAxis" : { - "type" : "category" - }, "plotOptions" : { "series" : { "borderWidth" : 0, @@ -157,23 +157,29 @@ } } }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-09-29 21:17:00 GMT" + "xAxis" : { + "type" : "category" }, "yAxis" : { "title" : { "text" : "Total Solutions" } }, + "title" : { + "text" : "Perl Weekly Challenge Language" + }, "tooltip" : { - "followPointer" : "true", "headerFormat" : "", + "followPointer" : "true", "pointFormat" : "Challenge {point.name}: {point.y:f}
" }, + "legend" : { + "enabled" : "false" + }, "drilldown" : { "series" : [ { - "id" : "001", + "name" : "001", "data" : [ [ "Perl 5", @@ -188,11 +194,10 @@ 11 ] ], - "name" : "001" + "id" : "001" }, { "name" : "002", - "id" : "002", "data" : [ [ "Perl 5", @@ -206,10 +211,11 @@ "Blog", 9 ] - ] + ], + "id" : "002" }, { - "name" : "003", + "id" : "003", "data" : [ [ "Perl 5", @@ -224,10 +230,9 @@ 8 ] ], - "id" : "003" + "name" : "003" }, { - "id" : "004", "data" : [ [ "Perl 5", @@ -242,6 +247,7 @@ 9 ] ], + "id" : "004", "name" : "004" }, { @@ -281,8 +287,6 @@ "name" : "006" }, { - "name" : "007", - "id" : "007", "data" : [ [ "Perl 5", @@ -296,7 +300,9 @@ "Blog", 9 ] - ] + ], + "id" : "007", + "name" : "007" }, { "name" : "008", @@ -317,7 +323,7 @@ "id" : "008" }, { - "id" : "009", + "name" : "009", "data" : [ [ "Perl 5", @@ -332,10 +338,9 @@ 13 ] ], - "name" : "009" + "id" : "009" }, { - "name" : "010", "data" : [ [ "Perl 5", @@ -350,10 +355,12 @@ 11 ] ], - "id" : "010" + "id" : "010", + "name" : "010" }, { "name" : "011", + "id" : "011", "data" : [ [ "Perl 5", @@ -367,8 +374,7 @@ "Blog", 9 ] - ], - "id" : "011" + ] }, { "name" : "012", @@ -389,7 +395,6 @@ "id" : "012" }, { - "name" : "013", "data" : [ [ "Perl 5", @@ -404,9 +409,11 @@ 13 ] ], - "id" : "013" + "id" : "013", + "name" : "013" }, { + "name" : "014", "id" : "014", "data" : [ [ @@ -421,11 +428,9 @@ "Blog", 14 ] - ], - "name" : "014" + ] }, { - "name" : "015", "id" : "015", "data" : [ [ @@ -440,9 +445,11 @@ "Blog", 15 ] - ] + ], + "name" : "015" }, { + "name" : "016", "id" : "016", "data" : [ [ @@ -457,11 +464,9 @@ "Blog", 12 ] - ], - "name" : "016" + ] }, { - "name" : "017", "id" : "017", "data" : [ [ @@ -476,9 +481,11 @@ "Blog", 12 ] - ] + ], + "name" : "017" }, { + "name" : "018", "id" : "018", "data" : [ [ @@ -493,12 +500,10 @@ "Blog", 14 ] - ], - "name" : "018" + ] }, { "name" : "019", - "id" : "019", "data" : [ [ "Perl 5", @@ -512,10 +517,10 @@ "Blog", 13 ] - ] + ], + "id" : "019" }, { - "name" : "020", "id" : "020", "data" : [ [ @@ -530,10 +535,10 @@ "Blog", 13 ] - ] + ], + "name" : "020" }, { - "name" : "021", "data" : [ [ "Perl 5", @@ -548,7 +553,8 @@ 10 ] ], - "id" : "021" + "id" : "021", + "name" : "021" }, { "data" : [ @@ -623,7 +629,6 @@ "name" : "025" }, { - "name" : "026", "data" : [ [ "Perl 5", @@ -638,10 +643,11 @@ 7 ] ], - "id" : "026" + "id" : "026", + "name" : "026" }, { - "name" : "027", + "id" : "027", "data" : [ [ "Perl 5", @@ -649,21 +655,15 @@ ], [ "Perl 6", - 16 + 18 ], [ "Blog", 4 ] ], - "id" : "027" + "name" : "027" } ] - }, - "legend" : { - "enabled" : "false" - }, - "chart" : { - "type" : "column" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 0429891382..d7010bb325 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,15 +1,12 @@ { - "legend" : { - "enabled" : "false" - }, "chart" : { "type" : "column" }, "drilldown" : { "series" : [ { - "name" : "Laurent Rosenfeld", "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", "data" : [ [ "Blog", @@ -28,69 +25,69 @@ { "data" : [ [ - "Perl 5", - 68 + "Blog", + 5 ], [ "Perl 6", 68 ], [ - "Blog", - 5 + "Perl 5", + 68 ] ], - "id" : "Joelle Maslak", - "name" : "Joelle Maslak" + "name" : "Joelle Maslak", + "id" : "Joelle Maslak" }, { - "name" : "Jaldhar H. Vyas", - "id" : "Jaldhar H. Vyas", "data" : [ - [ - "Perl 5", - 52 - ], [ "Blog", 13 ], + [ + "Perl 5", + 52 + ], [ "Perl 6", 51 ] - ] + ], + "name" : "Jaldhar H. Vyas", + "id" : "Jaldhar H. Vyas" }, { - "id" : "Ruben Westerberg", "name" : "Ruben Westerberg", "data" : [ [ - "Perl 6", + "Perl 5", 51 ], [ - "Perl 5", + "Perl 6", 51 ] - ] + ], + "id" : "Ruben Westerberg" }, { + "name" : "Adam Russell", "data" : [ [ - "Blog", - 30 + "Perl 5", + 55 ], [ "Perl 6", 3 ], [ - "Perl 5", - 55 + "Blog", + 30 ] ], - "name" : "Adam Russell", "id" : "Adam Russell" }, { @@ -108,26 +105,26 @@ 27 ] ], - "id" : "Arne Sommer", - "name" : "Arne Sommer" + "name" : "Arne Sommer", + "id" : "Arne Sommer" }, { + "id" : "Athanasius", "data" : [ - [ - "Perl 5", - 53 - ], [ "Blog", 3 ], + [ + "Perl 5", + 53 + ], [ "Perl 6", 28 ] ], - "name" : "Athanasius", - "id" : "Athanasius" + "name" : "Athanasius" }, { "data" : [ @@ -140,12 +137,11 @@ 46 ] ], - "id" : "E. Choroba", - "name" : "E. Choroba" + "name" : "E. Choroba", + "id" : "E. Choroba" }, { "id" : "Kian-Meng Ang", - "name" : "Kian-Meng Ang", "data" : [ [ "Blog", @@ -155,29 +151,30 @@ "Perl 5", 38 ] - ] + ], + "name" : "Kian-Meng Ang" }, { + "id" : "Simon Proctor", "data" : [ - [ - "Perl 6", - 45 - ], [ "Blog", 7 ], + [ + "Perl 6", + 45 + ], [ "Perl 5", 5 ] ], - "name" : "Simon Proctor", - "id" : "Simon Proctor" + "name" : "Simon Proctor" }, { - "name" : "Andrezgz", "id" : "Andrezgz", + "name" : "Andrezgz", "data" : [ [ "Perl 5", @@ -204,6 +201,7 @@ "id" : "Roger Bell West" }, { + "id" : "Francis Whittle", "data" : [ [ "Perl 6", @@ -214,10 +212,11 @@ 9 ] ], - "id" : "Francis Whittle", "name" : "Francis Whittle" }, { + "id" : "Duncan C. White", + "name" : "Duncan C. White", "data" : [ [ "Perl 5", @@ -227,18 +226,10 @@ "Blog", 1 ] - ], - "name" : "Duncan C. White", - "id" : "Duncan C. White" + ] }, { - "id" : "Dave Jacoby", - "name" : "Dave Jacoby", "data" : [ - [ - "Perl 5", - 26 - ], [ "Blog", 18 @@ -246,8 +237,14 @@ [ "Perl 6", 1 + ], + [ + "Perl 5", + 26 ] - ] + ], + "name" : "Dave Jacoby", + "id" : "Dave Jacoby" }, { "data" : [ @@ -261,67 +258,65 @@ }, { "data" : [ - [ - "Perl 5", - 19 - ], [ "Perl 6", 21 + ], + [ + "Perl 5", + 19 ] ], - "id" : "Feng Chang", - "name" : "Feng Chang" + "name" : "Feng Chang", + "id" : "Feng Chang" }, { - "name" : "Steven Wilson", - "id" : "Steven Wilson", "data" : [ - [ - "Blog", - 3 - ], [ "Perl 5", 36 + ], + [ + "Blog", + 3 ] - ] + ], + "name" : "Steven Wilson", + "id" : "Steven Wilson" }, { "id" : "Gustavo Chaves", "name" : "Gustavo Chaves", "data" : [ - [ - "Blog", - 4 - ], [ "Perl 5", 32 + ], + [ + "Blog", + 4 ] ] }, { - "name" : "Yet Ebreo", - "id" : "Yet Ebreo", "data" : [ [ "Perl 6", 14 ], - [ - "Blog", - 4 - ], [ "Perl 5", 18 + ], + [ + "Blog", + 4 ] - ] + ], + "name" : "Yet Ebreo", + "id" : "Yet Ebreo" }, { - "id" : "Yozen Hernandez", - "name" : "Yozen Hernandez", "data" : [ [ "Blog", @@ -331,21 +326,21 @@ "Perl 5", 21 ] - ] + ], + "name" : "Yozen Hernandez", + "id" : "Yozen Hernandez" }, { - "name" : "Guillermo Ramos", - "id" : "Guillermo Ramos", "data" : [ [ "Perl 5", 32 ] - ] + ], + "name" : "Guillermo Ramos", + "id" : "Guillermo Ramos" }, { - "name" : "Mark Senn", - "id" : "Mark Senn", "data" : [ [ "Perl 6", @@ -355,61 +350,65 @@ "Blog", 10 ] - ] + ], + "name" : "Mark Senn", + "id" : "Mark Senn" }, { "id" : "Kevin Colyer", "name" : "Kevin Colyer", "data" : [ - [ - "Perl 6", - 27 - ], [ "Perl 5", 2 + ], + [ + "Perl 6", + 27 ] ] }, { "id" : "Jo Christian Oterhals", - "name" : "Jo Christian Oterhals", "data" : [ [ "Perl 5", 6 ], - [ - "Blog", - 7 - ], [ "Perl 6", 15 + ], + [ + "Blog", + 7 ] - ] + ], + "name" : "Jo Christian Oterhals" }, { - "id" : "Duane Powell", "name" : "Duane Powell", "data" : [ [ "Perl 5", 27 ] - ] + ], + "id" : "Duane Powell" }, { "name" : "Ozzy", - "id" : "Ozzy", "data" : [ [ "Perl 6", 26 ] - ] + ], + "id" : "Ozzy" }, { + "id" : "Randy Lauen", + "name" : "Randy Lauen", "data" : [ [ "Perl 5", @@ -419,31 +418,31 @@ "Perl 6", 17 ] - ], - "name" : "Randy Lauen", - "id" : "Randy Lauen" + ] }, { "name" : "Lubos Kolouch", - "id" : "Lubos Kolouch", "data" : [ [ "Perl 5", 25 ] - ] + ], + "id" : "Lubos Kolouch" }, { + "name" : "Noud", "data" : [ [ "Perl 6", 24 ] ], - "id" : "Noud", - "name" : "Noud" + "id" : "Noud" }, { + "id" : "Dr James A. Smith", + "name" : "Dr James A. Smith", "data" : [ [ "Perl 6", @@ -453,44 +452,41 @@ "Perl 5", 12 ] - ], - "name" : "Dr James A. Smith", - "id" : "Dr James A. Smith" + ] }, { - "name" : "Veesh Goldman", "id" : "Veesh Goldman", "data" : [ [ "Perl 5", 16 ], - [ - "Blog", - 3 - ], [ "Perl 6", 2 + ], + [ + "Blog", + 3 ] - ] + ], + "name" : "Veesh Goldman" }, { - "id" : "Nick Logan", "name" : "Nick Logan", "data" : [ [ - "Perl 5", + "Perl 6", 8 ], [ - "Perl 6", + "Perl 5", 8 ] - ] + ], + "id" : "Nick Logan" }, { - "name" : "Lars Balker", "id" : "Lars Balker", "data" : [ [ @@ -501,7 +497,8 @@ "Perl 5", 11 ] - ] + ], + "name" : "Lars Balker" }, { "data" : [ @@ -520,28 +517,28 @@ 12 ] ], - "id" : "Maxim Nechaev", - "name" : "Maxim Nechaev" + "name" : "Maxim Nechaev", + "id" : "Maxim Nechaev" }, { + "name" : "Alicia Bielsa", "data" : [ [ "Perl 5", 11 ] ], - "id" : "Alicia Bielsa", - "name" : "Alicia Bielsa" + "id" : "Alicia Bielsa" }, { + "id" : "Colin Crain", + "name" : "Colin Crain", "data" : [ [ "Perl 5", 10 ] - ], - "name" : "Colin Crain", - "id" : "Colin Crain" + ] }, { "data" : [ @@ -554,6 +551,8 @@ "id" : "Doug Schrag" }, { + "id" : "Dave Cross", + "name" : "Dave Cross", "data" : [ [ "Perl 5", @@ -563,21 +562,20 @@ "Blog", 2 ] - ], - "id" : "Dave Cross", - "name" : "Dave Cross" + ] }, { + "name" : "Mark Anderson", "data" : [ [ "Perl 5", 9 ] ], - "id" : "Mark Anderson", - "name" : "Mark Anderson" + "id" : "Mark Anderson" }, { + "id" : "Neil Bowers", "data" : [ [ "Perl 5", @@ -588,8 +586,7 @@ 3 ] ], - "name" : "Neil Bowers", - "id" : "Neil Bowers" + "name" : "Neil Bowers" }, { "data" : [ @@ -604,11 +601,11 @@ { "data" : [ [ - "Perl 6", + "Blog", 4 ], [ - "Blog", + "Perl 6", 4 ] ], @@ -617,16 +614,15 @@ }, { "id" : "Pete Houston", - "name" : "Pete Houston", "data" : [ [ "Perl 5", 8 ] - ] + ], + "name" : "Pete Houston" }, { - "name" : "Robert Gratza", "id" : "Robert Gratza", "data" : [ [ @@ -637,11 +633,12 @@ "Perl 6", 6 ] - ] + ], + "name" : "Robert Gratza" }, { - "name" : "John Barrett", "id" : "John Barrett", + "name" : "John Barrett", "data" : [ [ "Perl 5", @@ -650,6 +647,7 @@ ] }, { + "name" : "Khalid", "data" : [ [ "Blog", @@ -664,12 +662,11 @@ 4 ] ], - "name" : "Khalid", "id" : "Khalid" }, { - "name" : "Aaron Sherman", "id" : "Aaron Sherman", + "name" : "Aaron Sherman", "data" : [ [ "Perl 6", @@ -678,35 +675,24 @@ ] }, { - "name" : "Kivanc Yazan", "id" : "Kivanc Yazan", "data" : [ [ "Perl 5", 6 ] - ] + ], + "name" : "Kivanc Yazan" } ] }, + "xAxis" : { + "type" : "category" + }, "tooltip" : { - "headerFormat" : "", + "pointFormat" : "{point.name}: {point.y:f}
", "followPointer" : "true", - "pointFormat" : "{point.name}: {point.y:f}
" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } - }, - "yAxis" : { - "title" : { - "text" : "Total Score" - } + "headerFormat" : "" }, "title" : { "text" : "Perl Weekly Challenge Leaders (TOP 50)" @@ -720,49 +706,49 @@ "y" : 328 }, { - "drilldown" : "Joelle Maslak", "name" : "#2: Joelle Maslak", + "drilldown" : "Joelle Maslak", "y" : 282 }, { + "name" : "#3: Jaldhar H. Vyas", "y" : 232, - "drilldown" : "Jaldhar H. Vyas", - "name" : "#3: Jaldhar H. Vyas" + "drilldown" : "Jaldhar H. Vyas" }, { - "name" : "#4: Ruben Westerberg", "drilldown" : "Ruben Westerberg", - "y" : 204 + "y" : 204, + "name" : "#4: Ruben Westerberg" }, { "drilldown" : "Adam Russell", - "name" : "#5: Adam Russell", - "y" : 176 + "y" : 176, + "name" : "#5: Adam Russell" }, { - "y" : 168, "drilldown" : "Arne Sommer", + "y" : 168, "name" : "#6: Arne Sommer" }, { - "y" : 168, "drilldown" : "Athanasius", + "y" : 168, "name" : "#7: Athanasius" }, { - "y" : 136, "name" : "#8: E. Choroba", + "y" : 136, "drilldown" : "E. Choroba" }, { "drilldown" : "Kian-Meng Ang", - "name" : "#9: Kian-Meng Ang", - "y" : 134 + "y" : 134, + "name" : "#9: Kian-Meng Ang" }, { - "y" : 114, "name" : "#10: Simon Proctor", - "drilldown" : "Simon Proctor" + "drilldown" : "Simon Proctor", + "y" : 114 }, { "name" : "#11: Andrezgz", @@ -770,44 +756,44 @@ "y" : 104 }, { + "drilldown" : "Roger Bell West", "y" : 100, - "name" : "#12: Roger Bell West", - "drilldown" : "Roger Bell West" + "name" : "#12: Roger Bell West" }, { + "y" : 96, "drilldown" : "Francis Whittle", - "name" : "#13: Francis Whittle", - "y" : 96 + "name" : "#13: Francis Whittle" }, { "name" : "#14: Duncan C. White", - "drilldown" : "Duncan C. White", - "y" : 94 + "y" : 94, + "drilldown" : "Duncan C. White" }, { - "y" : 90, "name" : "#15: Dave Jacoby", + "y" : 90, "drilldown" : "Dave Jacoby" }, { - "y" : 82, "name" : "#16: Daniel Mantovani", + "y" : 82, "drilldown" : "Daniel Mantovani" }, { - "name" : "#17: Feng Chang", + "y" : 80, "drilldown" : "Feng Chang", - "y" : 80 + "name" : "#17: Feng Chang" }, { "y" : 78, - "name" : "#18: Steven Wilson", - "drilldown" : "Steven Wilson" + "drilldown" : "Steven Wilson", + "name" : "#18: Steven Wilson" }, { - "name" : "#19: Gustavo Chaves", + "y" : 72, "drilldown" : "Gustavo Chaves", - "y" : 72 + "name" : "#19: Gustavo Chaves" }, { "name" : "#20: Yet Ebreo", @@ -815,24 +801,24 @@ "y" : 72 }, { - "name" : "#21: Yozen Hernandez", "drilldown" : "Yozen Hernandez", - "y" : 70 + "y" : 70, + "name" : "#21: Yozen Hernandez" }, { - "name" : "#22: Guillermo Ramos", "drilldown" : "Guillermo Ramos", - "y" : 64 + "y" : 64, + "name" : "#22: Guillermo Ramos" }, { + "drilldown" : "Mark Senn", "y" : 62, - "name" : "#23: Mark Senn", - "drilldown" : "Mark Senn" + "name" : "#23: Mark Senn" }, { + "y" : 58, "drilldown" : "Kevin Colyer", - "name" : "#24: Kevin Colyer", - "y" : 58 + "name" : "#24: Kevin Colyer" }, { "name" : "#25: Jo Christian Oterhals", @@ -840,79 +826,79 @@ "y" : 56 }, { - "name" : "#26: Duane Powell", "drilldown" : "Duane Powell", - "y" : 54 + "y" : 54, + "name" : "#26: Duane Powell" }, { - "drilldown" : "Ozzy", "name" : "#27: Ozzy", + "drilldown" : "Ozzy", "y" : 52 }, { "name" : "#28: Randy Lauen", - "drilldown" : "Randy Lauen", - "y" : 52 + "y" : 52, + "drilldown" : "Randy Lauen" }, { - "name" : "#29: Lubos Kolouch", + "y" : 50, "drilldown" : "Lubos Kolouch", - "y" : 50 + "name" : "#29: Lubos Kolouch" }, { "y" : 48, - "name" : "#30: Noud", - "drilldown" : "Noud" + "drilldown" : "Noud", + "name" : "#30: Noud" }, { + "drilldown" : "Dr James A. Smith", "y" : 44, - "name" : "#31: Dr James A. Smith", - "drilldown" : "Dr James A. Smith" + "name" : "#31: Dr James A. Smith" }, { - "drilldown" : "Veesh Goldman", "name" : "#32: Veesh Goldman", - "y" : 42 + "y" : 42, + "drilldown" : "Veesh Goldman" }, { - "y" : 32, + "name" : "#33: Nick Logan", "drilldown" : "Nick Logan", - "name" : "#33: Nick Logan" + "y" : 32 }, { "drilldown" : "Lars Balker", - "name" : "#34: Lars Balker", - "y" : 30 + "y" : 30, + "name" : "#34: Lars Balker" }, { + "drilldown" : "Jaime Corchado", "y" : 24, - "name" : "#35: Jaime Corchado", - "drilldown" : "Jaime Corchado" + "name" : "#35: Jaime Corchado" }, { "y" : 24, - "name" : "#36: Maxim Nechaev", - "drilldown" : "Maxim Nechaev" + "drilldown" : "Maxim Nechaev", + "name" : "#36: Maxim Nechaev" }, { + "name" : "#37: Alicia Bielsa", "y" : 22, - "drilldown" : "Alicia Bielsa", - "name" : "#37: Alicia Bielsa" + "drilldown" : "Alicia Bielsa" }, { - "name" : "#38: Colin Crain", "drilldown" : "Colin Crain", - "y" : 20 + "y" : 20, + "name" : "#38: Colin Crain" }, { - "y" : 20, "name" : "#39: Doug Schrag", + "y" : 20, "drilldown" : "Doug Schrag" }, { - "name" : "#40: Dave Cross", "drilldown" : "Dave Cross", - "y" : 18 + "y" : 18, + "name" : "#40: Dave Cross" }, { "name" : "#41: Mark Anderson", @@ -920,59 +906,73 @@ "y" : 18 }, { - "name" : "#42: Neil Bowers", "drilldown" : "Neil Bowers", - "y" : 18 + "y" : 18, + "name" : "#42: Neil Bowers" }, { + "y" : 18, "drilldown" : "Walt Mankowski", - "name" : "#43: Walt Mankowski", - "y" : 18 + "name" : "#43: Walt Mankowski" }, { + "drilldown" : "Donald Hunter", "y" : 16, - "name" : "#44: Donald Hunter", - "drilldown" : "Donald Hunter" + "name" : "#44: Donald Hunter" }, { + "name" : "#45: Pete Houston", "y" : 16, - "drilldown" : "Pete Houston", - "name" : "#45: Pete Houston" + "drilldown" : "Pete Houston" }, { + "y" : 16, "drilldown" : "Robert Gratza", - "name" : "#46: Robert Gratza", - "y" : 16 + "name" : "#46: Robert Gratza" }, { - "name" : "#47: John Barrett", + "y" : 14, "drilldown" : "John Barrett", - "y" : 14 + "name" : "#47: John Barrett" }, { + "drilldown" : "Khalid", "y" : 14, - "name" : "#48: Khalid", - "drilldown" : "Khalid" + "name" : "#48: Khalid" }, { - "y" : 12, + "name" : "#49: Aaron Sherman", "drilldown" : "Aaron Sherman", - "name" : "#49: Aaron Sherman" + "y" : 12 }, { - "y" : 12, "drilldown" : "Kivanc Yazan", + "y" : 12, "name" : "#50: Kivanc Yazan" } ], - "colorByPoint" : "true", - "name" : "Perl Weekly Challenge Leaders" + "name" : "Perl Weekly Challenge Leaders", + "colorByPoint" : "true" } ], - "xAxis" : { - "type" : "category" + "yAxis" : { + "title" : { + "text" : "Total Score" + } }, "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-09-29 21:16:56 GMT" + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-09-29 22:41:10 GMT" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } + } + }, + "legend" : { + "enabled" : "false" } } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index bf011281bc..cfe6783f37 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -1,25 +1,64 @@ { + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, "tooltip" : { "shared" : 1, "pointFormat" : "{series.name}: {point.y}
" }, "yAxis" : { - "min" : 0, "title" : { "text" : "" - } - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-09-29 21:16:50 GMT" + }, + "min" : 0 }, "plotOptions" : { "column" : { "stacking" : "percent" } }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-09-29 22:41:04 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", + "Bruno Ramos", + "Clive Holloway", + "Colin Crain", + "Daniel Mantovani", + "Daniel Mita", + "Dave Cross", + "Dave Jacoby", + "David Kayal", + "Denis Yurashku", + "Donald Hunter", + "Doug Schrag", + "Duane Powell", + "Duncan C. White", + "E. Choroba" + ] + }, + "chart" : { + "type" : "column" + }, "series" : [ { - "name" : "Perl 5", "data" : [ 0, 2, @@ -51,7 +90,8 @@ 27, 46, 46 - ] + ], + "name" : "Perl 5" }, { "data" : [ @@ -89,6 +129,7 @@ "name" : "Perl 6" }, { + "name" : "Blog", "data" : [ 0, 0, @@ -120,48 +161,7 @@ 0, 1, 22 - ], - "name" : "Blog" + ] } - ], - "xAxis" : { - "categories" : [ - "Aaron Sherman", - "Abigail", - "Adam Russell", - "Ailbhe Tweedie", - "Alex Daniel", - "Alexander Karelas", - "Alexey Melezhik", - "Alicia Bielsa", - "Andrezgz", - "Antonio Gamiz", - "Arne Sommer", - "Arpad Toth", - "Athanasius", - "Aubrey Quarcoo", - "Bill Palmer", - "Bob Kleemann", - "Bruno Ramos", - "Clive Holloway", - "Colin Crain", - "Daniel Mantovani", - "Daniel Mita", - "Dave Cross", - "Dave Jacoby", - "David Kayal", - "Denis Yurashku", - "Donald Hunter", - "Doug Schrag", - "Duane Powell", - "Duncan C. White", - "E. Choroba" - ] - }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, - "chart" : { - "type" : "column" - } + ] } diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index c1ca3169a9..672d5c8a21 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -1,47 +1,19 @@ { - "chart" : { - "type" : "column" + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" + } + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" }, "title" : { "text" : "Perl Weekly Challenge - 2019" }, - "xAxis" : { - "categories" : [ - "Eddy HS", - "Feng Chang", - "Finley", - "Francis Whittle", - "Fred Zinn", - "Freddie B", - "Guillermo Ramos", - "Gustavo Chaves", - "Hauke Dampfling", - "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", - "Kiran Kumar", - "Kivanc Yazan", - "Lars Balker", - "Laurent Rosenfeld", - "Lubos Kolouch" - ] - }, "series" : [ { - "name" : "Perl 5", "data" : [ 2, 19, @@ -73,7 +45,8 @@ 11, 54, 25 - ] + ], + "name" : "Perl 5" }, { "data" : [ @@ -146,22 +119,49 @@ ] } ], - "plotOptions" : { - "column" : { - "stacking" : "percent" - } + "chart" : { + "type" : "column" }, - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 + "xAxis" : { + "categories" : [ + "Eddy HS", + "Feng Chang", + "Finley", + "Francis Whittle", + "Fred Zinn", + "Freddie B", + "Guillermo Ramos", + "Gustavo Chaves", + "Hauke Dampfling", + "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", + "Kiran Kumar", + "Kivanc Yazan", + "Lars Balker", + "Laurent Rosenfeld", + "Lubos Kolouch" + ] }, "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-09-29 21:16:50 GMT" + "text" : "[Champions: 30] Last updated at 2019-09-29 22:41:04 GMT" }, - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 + "plotOptions" : { + "column" : { + "stacking" : "percent" + } } } di