From 8684739b03ed8d9eb2e8de12d5ed334da56cd382 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Thu, 9 Jan 2020 12:14:45 +0000 Subject: - Added solutions by Ryan Thompson. --- challenge-042/ryan-thompson/perl/ch-1.pl | 11 + challenge-042/ryan-thompson/perl/ch-2.pl | 34 ++ challenge-042/ryan-thompson/perl5/ch-1.pl | 11 - challenge-042/ryan-thompson/perl5/ch-2.pl | 34 -- challenge-042/ryan-thompson/perl6/ch-1.p6 | 11 - challenge-042/ryan-thompson/perl6/ch-2.p6 | 22 - challenge-042/ryan-thompson/raku/ch-1.p6 | 11 + challenge-042/ryan-thompson/raku/ch-2.p6 | 22 + stats/pwc-current.json | 193 ++++---- stats/pwc-language-breakdown-summary.json | 60 +-- stats/pwc-language-breakdown.json | 322 ++++++------- stats/pwc-leaders.json | 772 +++++++++++++++--------------- stats/pwc-summary-1-30.json | 100 ++-- stats/pwc-summary-121-150.json | 30 +- stats/pwc-summary-31-60.json | 112 ++--- stats/pwc-summary-61-90.json | 36 +- stats/pwc-summary-91-120.json | 106 ++-- stats/pwc-summary.json | 330 ++++++------- 18 files changed, 1120 insertions(+), 1097 deletions(-) create mode 100755 challenge-042/ryan-thompson/perl/ch-1.pl create mode 100755 challenge-042/ryan-thompson/perl/ch-2.pl delete mode 100755 challenge-042/ryan-thompson/perl5/ch-1.pl delete mode 100755 challenge-042/ryan-thompson/perl5/ch-2.pl delete mode 100644 challenge-042/ryan-thompson/perl6/ch-1.p6 delete mode 100644 challenge-042/ryan-thompson/perl6/ch-2.p6 create mode 100644 challenge-042/ryan-thompson/raku/ch-1.p6 create mode 100644 challenge-042/ryan-thompson/raku/ch-2.p6 diff --git a/challenge-042/ryan-thompson/perl/ch-1.pl b/challenge-042/ryan-thompson/perl/ch-1.pl new file mode 100755 index 0000000000..88b410aee9 --- /dev/null +++ b/challenge-042/ryan-thompson/perl/ch-1.pl @@ -0,0 +1,11 @@ +#!/usr/bin/env perl +# +# ch-1.pl - Print octal numbers from 0..50 +# +# Ryan Thompson + +# The following is a polyglot (runs in Perl and Raku): +printf "Decimal %2d = Octal %2o\n", $_, $_ for 0..50; + +# This printf feature will be important for our Raku solution: +printf 'Decimal %1$2d = Octal %1$2o'."\n", $_ for 0..50; diff --git a/challenge-042/ryan-thompson/perl/ch-2.pl b/challenge-042/ryan-thompson/perl/ch-2.pl new file mode 100755 index 0000000000..f569fd7b0d --- /dev/null +++ b/challenge-042/ryan-thompson/perl/ch-2.pl @@ -0,0 +1,34 @@ +#!/usr/bin/env perl +# +# ch-2.pl - Validate balanced brackets +# +# Ryan Thompson + +use 5.010; +use warnings; +use strict; +use List::Util 'shuffle'; + +# To have any hope of being balanced, the string must be of even length, +# and must contain the same number of ( and ) brackets, so that's what we do. +sub gen_str { join '', shuffle map { ($_) x $_[0] } qw<( )> } + +# This type of balance checking is trivial with a regex +sub balanced_tiny(_) { $_[0] =~ /^(\((?1)*\))*$/ } + +# Same sub, less line noise +sub balanced(_) { + $_[0] =~ /^ # Start of string + ( # Match group 1 + \( # Opening bracket + (?1)* # Recurse to start of group 1 + \) # Closing bracket + )* # Group 1, zero or more times + $/x # End of string +} + +# And now we'll check a few +for my $n (0..5) { + say "$_ - " . (balanced ? 'OK' : 'NOT OK') for map { gen_str($n) } 1..5; +} + diff --git a/challenge-042/ryan-thompson/perl5/ch-1.pl b/challenge-042/ryan-thompson/perl5/ch-1.pl deleted file mode 100755 index 88b410aee9..0000000000 --- a/challenge-042/ryan-thompson/perl5/ch-1.pl +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env perl -# -# ch-1.pl - Print octal numbers from 0..50 -# -# Ryan Thompson - -# The following is a polyglot (runs in Perl and Raku): -printf "Decimal %2d = Octal %2o\n", $_, $_ for 0..50; - -# This printf feature will be important for our Raku solution: -printf 'Decimal %1$2d = Octal %1$2o'."\n", $_ for 0..50; diff --git a/challenge-042/ryan-thompson/perl5/ch-2.pl b/challenge-042/ryan-thompson/perl5/ch-2.pl deleted file mode 100755 index f569fd7b0d..0000000000 --- a/challenge-042/ryan-thompson/perl5/ch-2.pl +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env perl -# -# ch-2.pl - Validate balanced brackets -# -# Ryan Thompson - -use 5.010; -use warnings; -use strict; -use List::Util 'shuffle'; - -# To have any hope of being balanced, the string must be of even length, -# and must contain the same number of ( and ) brackets, so that's what we do. -sub gen_str { join '', shuffle map { ($_) x $_[0] } qw<( )> } - -# This type of balance checking is trivial with a regex -sub balanced_tiny(_) { $_[0] =~ /^(\((?1)*\))*$/ } - -# Same sub, less line noise -sub balanced(_) { - $_[0] =~ /^ # Start of string - ( # Match group 1 - \( # Opening bracket - (?1)* # Recurse to start of group 1 - \) # Closing bracket - )* # Group 1, zero or more times - $/x # End of string -} - -# And now we'll check a few -for my $n (0..5) { - say "$_ - " . (balanced ? 'OK' : 'NOT OK') for map { gen_str($n) } 1..5; -} - diff --git a/challenge-042/ryan-thompson/perl6/ch-1.p6 b/challenge-042/ryan-thompson/perl6/ch-1.p6 deleted file mode 100644 index 7fb8177166..0000000000 --- a/challenge-042/ryan-thompson/perl6/ch-1.p6 +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env perl6 - -# ch-1.p6 - Print octal numbers from 0..50 -# -# Ryan Thompson - -# Perl5 method still works, verbatim -printf "Decimal %2d = Octal %2o\n", $_, $_ for 0..50; - -# This is my preferred solution: -say (0..50).fmt('Decimal %1$2d = Octal %2o', "\n"); diff --git a/challenge-042/ryan-thompson/perl6/ch-2.p6 b/challenge-042/ryan-thompson/perl6/ch-2.p6 deleted file mode 100644 index eda0b037ac..0000000000 --- a/challenge-042/ryan-thompson/perl6/ch-2.p6 +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env perl6 - -# ch-2.p6 - Balanced Braces -# -# Ryan Thompson - -# First, the generator -sub gen-str( Int $half-len ) { ('()' x $half-len).comb.pick(*).join } - -# And now, the checker -sub balanced( Str $str is copy --> Bool ) { - Nil while $str ~~ s:g/'()'//; - $str.chars == 0 -} - -# Check a few -say "0 length - ", balanced('') ?? 'OK' !! 'NOT OK'; # No need to repeat this -for 1..5 -> $n { - for (^5).map({ gen-str($n) }) -> $str { - say "$str - ", balanced($str) ?? 'OK' !! 'NOT OK'; - } -} diff --git a/challenge-042/ryan-thompson/raku/ch-1.p6 b/challenge-042/ryan-thompson/raku/ch-1.p6 new file mode 100644 index 0000000000..7fb8177166 --- /dev/null +++ b/challenge-042/ryan-thompson/raku/ch-1.p6 @@ -0,0 +1,11 @@ +#!/usr/bin/env perl6 + +# ch-1.p6 - Print octal numbers from 0..50 +# +# Ryan Thompson + +# Perl5 method still works, verbatim +printf "Decimal %2d = Octal %2o\n", $_, $_ for 0..50; + +# This is my preferred solution: +say (0..50).fmt('Decimal %1$2d = Octal %2o', "\n"); diff --git a/challenge-042/ryan-thompson/raku/ch-2.p6 b/challenge-042/ryan-thompson/raku/ch-2.p6 new file mode 100644 index 0000000000..eda0b037ac --- /dev/null +++ b/challenge-042/ryan-thompson/raku/ch-2.p6 @@ -0,0 +1,22 @@ +#!/usr/bin/env perl6 + +# ch-2.p6 - Balanced Braces +# +# Ryan Thompson + +# First, the generator +sub gen-str( Int $half-len ) { ('()' x $half-len).comb.pick(*).join } + +# And now, the checker +sub balanced( Str $str is copy --> Bool ) { + Nil while $str ~~ s:g/'()'//; + $str.chars == 0 +} + +# Check a few +say "0 length - ", balanced('') ?? 'OK' !! 'NOT OK'; # No need to repeat this +for 1..5 -> $n { + for (^5).map({ gen-str($n) }) -> $str { + say "$str - ", balanced($str) ?? 'OK' !! 'NOT OK'; + } +} diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 5047c9fe4a..4f0f6738e7 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,37 +1,20 @@ { - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } - }, - "title" : { - "text" : "Perl Weekly Challenge - 042" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "subtitle" : { - "text" : "[Champions: 20] Last updated at 2020-01-09 11:55:14 GMT" + "chart" : { + "type" : "column" }, "series" : [ { - "colorByPoint" : 1, + "name" : "Perl Weekly Challenge - 042", "data" : [ { "y" : 2, - "drilldown" : "Alicia Bielsa", - "name" : "Alicia Bielsa" + "name" : "Alicia Bielsa", + "drilldown" : "Alicia Bielsa" }, { "y" : 3, - "drilldown" : "Arne Sommer", - "name" : "Arne Sommer" + "name" : "Arne Sommer", + "drilldown" : "Arne Sommer" }, { "y" : 2, @@ -39,24 +22,24 @@ "drilldown" : "Daniel Mita" }, { - "y" : 2, "name" : "Dave Jacoby", + "y" : 2, "drilldown" : "Dave Jacoby" }, { + "drilldown" : "Duane Powell", "y" : 2, - "name" : "Duane Powell", - "drilldown" : "Duane Powell" + "name" : "Duane Powell" }, { + "y" : 2, "name" : "E. Choroba", - "drilldown" : "E. Choroba", - "y" : 2 + "drilldown" : "E. Choroba" }, { - "y" : 2, + "drilldown" : "Fabrizio Poggi", "name" : "Fabrizio Poggi", - "drilldown" : "Fabrizio Poggi" + "y" : 2 }, { "drilldown" : "Javier Luque", @@ -64,79 +47,86 @@ "y" : 5 }, { + "name" : "Kivanc Yazan", "y" : 2, - "drilldown" : "Kivanc Yazan", - "name" : "Kivanc Yazan" + "drilldown" : "Kivanc Yazan" }, { - "name" : "Markus Holzer", "drilldown" : "Markus Holzer", + "name" : "Markus Holzer", "y" : 2 }, { + "name" : "Nazareno Delucca", "y" : 2, - "drilldown" : "Nazareno Delucca", - "name" : "Nazareno Delucca" + "drilldown" : "Nazareno Delucca" }, { - "name" : "Peter Scott", "drilldown" : "Peter Scott", + "name" : "Peter Scott", "y" : 2 }, { - "drilldown" : "Roger Bell West", "name" : "Roger Bell West", - "y" : 4 + "y" : 4, + "drilldown" : "Roger Bell West" }, { "drilldown" : "Ruben Westerberg", - "name" : "Ruben Westerberg", - "y" : 4 + "y" : 4, + "name" : "Ruben Westerberg" }, { - "name" : "Saif Ahmed", - "drilldown" : "Saif Ahmed", - "y" : 2 + "drilldown" : "Ryan Thompson", + "name" : "Ryan Thompson", + "y" : 6 }, { + "name" : "Saif Ahmed", "y" : 2, + "drilldown" : "Saif Ahmed" + }, + { "drilldown" : "Simon Proctor", - "name" : "Simon Proctor" + "name" : "Simon Proctor", + "y" : 2 }, { - "drilldown" : "Steven Wilson", + "y" : 1, "name" : "Steven Wilson", - "y" : 1 + "drilldown" : "Steven Wilson" }, { - "y" : 2, "name" : "Ulrich Rieke", + "y" : 2, "drilldown" : "Ulrich Rieke" }, { "y" : 2, - "drilldown" : "Walt Mankowski", - "name" : "Walt Mankowski" + "name" : "Walt Mankowski", + "drilldown" : "Walt Mankowski" }, { "y" : 2, - "drilldown" : "Wanderdoc", - "name" : "Wanderdoc" + "name" : "Wanderdoc", + "drilldown" : "Wanderdoc" } ], - "name" : "Perl Weekly Challenge - 042" + "colorByPoint" : 1 } ], - "chart" : { - "type" : "column" - }, "tooltip" : { "pointFormat" : "{point.name}: {point.y:f}
", "headerFormat" : "{series.name}
", "followPointer" : 1 }, - "legend" : { - "enabled" : 0 + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "subtitle" : { + "text" : "[Champions: 21] Last updated at 2020-01-09 12:14:16 GMT" }, "drilldown" : { "series" : [ @@ -151,7 +141,6 @@ "name" : "Alicia Bielsa" }, { - "name" : "Arne Sommer", "id" : "Arne Sommer", "data" : [ [ @@ -162,21 +151,22 @@ "Blog", 1 ] - ] + ], + "name" : "Arne Sommer" }, { "id" : "Daniel Mita", + "name" : "Daniel Mita", "data" : [ [ "Raku", 2 ] - ], - "name" : "Daniel Mita" + ] }, { - "name" : "Dave Jacoby", "id" : "Dave Jacoby", + "name" : "Dave Jacoby", "data" : [ [ "Perl", @@ -191,30 +181,31 @@ 2 ] ], - "id" : "Duane Powell", - "name" : "Duane Powell" + "name" : "Duane Powell", + "id" : "Duane Powell" }, { + "id" : "E. Choroba", "name" : "E. Choroba", "data" : [ [ "Perl", 2 ] - ], - "id" : "E. Choroba" + ] }, { "id" : "Fabrizio Poggi", + "name" : "Fabrizio Poggi", "data" : [ [ "Perl", 2 ] - ], - "name" : "Fabrizio Poggi" + ] }, { + "id" : "Javier Luque", "data" : [ [ "Perl", @@ -229,22 +220,21 @@ 1 ] ], - "id" : "Javier Luque", "name" : "Javier Luque" }, { - "id" : "Kivanc Yazan", + "name" : "Kivanc Yazan", "data" : [ [ "Perl", 2 ] ], - "name" : "Kivanc Yazan" + "id" : "Kivanc Yazan" }, { - "name" : "Markus Holzer", "id" : "Markus Holzer", + "name" : "Markus Holzer", "data" : [ [ "Raku", @@ -253,24 +243,24 @@ ] }, { + "name" : "Nazareno Delucca", "data" : [ [ "Perl", 2 ] ], - "id" : "Nazareno Delucca", - "name" : "Nazareno Delucca" + "id" : "Nazareno Delucca" }, { - "id" : "Peter Scott", "data" : [ [ "Perl", 2 ] ], - "name" : "Peter Scott" + "name" : "Peter Scott", + "id" : "Peter Scott" }, { "id" : "Roger Bell West", @@ -287,8 +277,21 @@ "name" : "Roger Bell West" }, { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ] + ], "name" : "Ruben Westerberg", - "id" : "Ruben Westerberg", + "id" : "Ruben Westerberg" + }, + { + "id" : "Ryan Thompson", "data" : [ [ "Perl", @@ -297,12 +300,17 @@ [ "Raku", 2 + ], + [ + "Blog", + 2 ] - ] + ], + "name" : "Ryan Thompson" }, { - "name" : "Saif Ahmed", "id" : "Saif Ahmed", + "name" : "Saif Ahmed", "data" : [ [ "Perl", @@ -321,14 +329,14 @@ "id" : "Simon Proctor" }, { - "id" : "Steven Wilson", + "name" : "Steven Wilson", "data" : [ [ "Perl", 1 ] ], - "name" : "Steven Wilson" + "id" : "Steven Wilson" }, { "name" : "Ulrich Rieke", @@ -347,22 +355,37 @@ 2 ] ], - "id" : "Walt Mankowski", - "name" : "Walt Mankowski" + "name" : "Walt Mankowski", + "id" : "Walt Mankowski" }, { - "name" : "Wanderdoc", "data" : [ [ "Perl", 2 ] ], + "name" : "Wanderdoc", "id" : "Wanderdoc" } ] }, + "legend" : { + "enabled" : 0 + }, "xAxis" : { "type" : "category" + }, + "title" : { + "text" : "Perl Weekly Challenge - 042" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index b6f46610fc..0318e23783 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,22 +1,16 @@ { - "xAxis" : { - "type" : "category", - "labels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - } - } + "title" : { + "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" }, - "legend" : { - "enabled" : "false" + "yAxis" : { + "min" : 0, + "title" : { + "text" : null + } }, "tooltip" : { "pointFormat" : "{point.y:.0f}" }, - "subtitle" : { - "text" : "Last updated at 2020-01-09 11:55:14 GMT" - }, "chart" : { "type" : "column" }, @@ -25,39 +19,45 @@ "data" : [ [ "Blog", - 446 + 448 ], [ "Perl", - 1717 + 1719 ], [ "Raku", - 1034 + 1036 ] ], + "name" : "Contributions", "dataLabels" : { + "rotation" : -90, "align" : "right", - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - }, "y" : 10, "format" : "{point.y:.0f}", - "enabled" : "true", "color" : "#FFFFFF", - "rotation" : -90 - }, - "name" : "Contributions" + "enabled" : "true", + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + } } ], - "yAxis" : { - "min" : 0, - "title" : { - "text" : null + "xAxis" : { + "type" : "category", + "labels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } } }, - "title" : { - "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" + "legend" : { + "enabled" : "false" + }, + "subtitle" : { + "text" : "Last updated at 2020-01-09 12:14:15 GMT" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 9d65b00075..4d6f57e3a3 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,23 +1,13 @@ { - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - } - } - }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, "yAxis" : { "title" : { "text" : "Total Solutions" } }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-01-09 11:55:14 GMT" + "tooltip" : { + "followPointer" : "true", + "headerFormat" : "", + "pointFormat" : "Challenge {point.name}: {point.y:f}
" }, "chart" : { "type" : "column" @@ -27,19 +17,19 @@ "colorByPoint" : "true", "data" : [ { - "y" : 140, + "drilldown" : "001", "name" : "#001", - "drilldown" : "001" + "y" : 140 }, { + "name" : "#002", "y" : 109, - "drilldown" : "002", - "name" : "#002" + "drilldown" : "002" }, { - "drilldown" : "003", "name" : "#003", - "y" : 71 + "y" : 71, + "drilldown" : "003" }, { "y" : 91, @@ -47,29 +37,29 @@ "drilldown" : "004" }, { - "y" : 71, "name" : "#005", + "y" : 71, "drilldown" : "005" }, { - "y" : 48, "drilldown" : "006", + "y" : 48, "name" : "#006" }, { - "y" : 56, "drilldown" : "007", + "y" : 56, "name" : "#007" }, { - "y" : 70, "drilldown" : "008", + "y" : 70, "name" : "#008" }, { - "drilldown" : "009", "name" : "#009", - "y" : 68 + "y" : 68, + "drilldown" : "009" }, { "y" : 60, @@ -77,24 +67,24 @@ "drilldown" : "010" }, { - "drilldown" : "011", "name" : "#011", - "y" : 79 + "y" : 79, + "drilldown" : "011" }, { - "name" : "#012", "drilldown" : "012", + "name" : "#012", "y" : 83 }, { "y" : 76, - "drilldown" : "013", - "name" : "#013" + "name" : "#013", + "drilldown" : "013" }, { - "y" : 96, + "drilldown" : "014", "name" : "#014", - "drilldown" : "014" + "y" : 96 }, { "y" : 93, @@ -102,19 +92,19 @@ "drilldown" : "015" }, { - "name" : "#016", "drilldown" : "016", - "y" : 66 + "y" : 66, + "name" : "#016" }, { "name" : "#017", - "drilldown" : "017", - "y" : 79 + "y" : 79, + "drilldown" : "017" }, { "name" : "#018", - "drilldown" : "018", - "y" : 76 + "y" : 76, + "drilldown" : "018" }, { "drilldown" : "019", @@ -122,44 +112,44 @@ "y" : 95 }, { - "drilldown" : "020", + "y" : 95, "name" : "#020", - "y" : 95 + "drilldown" : "020" }, { "y" : 67, - "drilldown" : "021", - "name" : "#021" + "name" : "#021", + "drilldown" : "021" }, { - "name" : "#022", "drilldown" : "022", + "name" : "#022", "y" : 63 }, { - "y" : 91, + "drilldown" : "023", "name" : "#023", - "drilldown" : "023" + "y" : 91 }, { "name" : "#024", - "drilldown" : "024", - "y" : 70 + "y" : 70, + "drilldown" : "024" }, { "drilldown" : "025", - "name" : "#025", - "y" : 55 + "y" : 55, + "name" : "#025" }, { - "drilldown" : "026", "name" : "#026", - "y" : 70 + "y" : 70, + "drilldown" : "026" }, { - "drilldown" : "027", + "y" : 58, "name" : "#027", - "y" : 58 + "drilldown" : "027" }, { "drilldown" : "028", @@ -172,19 +162,19 @@ "y" : 77 }, { - "y" : 115, + "drilldown" : "030", "name" : "#030", - "drilldown" : "030" + "y" : 115 }, { - "drilldown" : "031", + "y" : 87, "name" : "#031", - "y" : 87 + "drilldown" : "031" }, { - "drilldown" : "032", "name" : "#032", - "y" : 92 + "y" : 92, + "drilldown" : "032" }, { "drilldown" : "033", @@ -192,58 +182,56 @@ "y" : 108 }, { + "y" : 60, "name" : "#034", - "drilldown" : "034", - "y" : 60 + "drilldown" : "034" }, { + "y" : 60, "name" : "#035", - "drilldown" : "035", - "y" : 60 + "drilldown" : "035" }, { - "name" : "#036", "drilldown" : "036", - "y" : 61 + "y" : 61, + "name" : "#036" }, { "name" : "#037", - "drilldown" : "037", - "y" : 63 + "y" : 63, + "drilldown" : "037" }, { "drilldown" : "038", - "name" : "#038", - "y" : 60 + "y" : 60, + "name" : "#038" }, { - "y" : 60, "name" : "#039", + "y" : 60, "drilldown" : "039" }, { - "y" : 66, + "drilldown" : "040", "name" : "#040", - "drilldown" : "040" + "y" : 66 }, { - "name" : "#041", "drilldown" : "041", - "y" : 67 + "y" : 67, + "name" : "#041" }, { "drilldown" : "042", "name" : "#042", - "y" : 47 + "y" : 53 } ], "name" : "Perl Weekly Challenge Languages" } ], - "tooltip" : { - "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "headerFormat" : "", - "followPointer" : "true" + "xAxis" : { + "type" : "category" }, "legend" : { "enabled" : "false" @@ -252,7 +240,6 @@ "series" : [ { "name" : "001", - "id" : "001", "data" : [ [ "Perl", @@ -266,11 +253,10 @@ "Blog", 11 ] - ] + ], + "id" : "001" }, { - "name" : "002", - "id" : "002", "data" : [ [ "Perl", @@ -284,9 +270,13 @@ "Blog", 10 ] - ] + ], + "name" : "002", + "id" : "002" }, { + "id" : "003", + "name" : "003", "data" : [ [ "Perl", @@ -300,12 +290,10 @@ "Blog", 9 ] - ], - "id" : "003", - "name" : "003" + ] }, { - "id" : "004", + "name" : "004", "data" : [ [ "Perl", @@ -320,11 +308,9 @@ 10 ] ], - "name" : "004" + "id" : "004" }, { - "name" : "005", - "id" : "005", "data" : [ [ "Perl", @@ -338,9 +324,12 @@ "Blog", 12 ] - ] + ], + "name" : "005", + "id" : "005" }, { + "name" : "006", "data" : [ [ "Perl", @@ -355,11 +344,11 @@ 7 ] ], - "id" : "006", - "name" : "006" + "id" : "006" }, { "id" : "007", + "name" : "007", "data" : [ [ "Perl", @@ -373,8 +362,7 @@ "Blog", 10 ] - ], - "name" : "007" + ] }, { "name" : "008", @@ -395,8 +383,8 @@ "id" : "008" }, { - "name" : "009", "id" : "009", + "name" : "009", "data" : [ [ "Perl", @@ -431,7 +419,7 @@ "name" : "010" }, { - "name" : "011", + "id" : "011", "data" : [ [ "Perl", @@ -446,9 +434,10 @@ 10 ] ], - "id" : "011" + "name" : "011" }, { + "name" : "012", "data" : [ [ "Perl", @@ -463,11 +452,9 @@ 11 ] ], - "id" : "012", - "name" : "012" + "id" : "012" }, { - "name" : "013", "data" : [ [ "Perl", @@ -482,11 +469,10 @@ 13 ] ], + "name" : "013", "id" : "013" }, { - "name" : "014", - "id" : "014", "data" : [ [ "Perl", @@ -500,11 +486,13 @@ "Blog", 15 ] - ] + ], + "name" : "014", + "id" : "014" }, { - "name" : "015", "id" : "015", + "name" : "015", "data" : [ [ "Perl", @@ -521,7 +509,6 @@ ] }, { - "id" : "016", "data" : [ [ "Perl", @@ -536,9 +523,11 @@ 12 ] ], - "name" : "016" + "name" : "016", + "id" : "016" }, { + "id" : "017", "name" : "017", "data" : [ [ @@ -553,10 +542,10 @@ "Blog", 12 ] - ], - "id" : "017" + ] }, { + "id" : "018", "data" : [ [ "Perl", @@ -571,11 +560,9 @@ 14 ] ], - "id" : "018", "name" : "018" }, { - "id" : "019", "data" : [ [ "Perl", @@ -590,10 +577,10 @@ 13 ] ], - "name" : "019" + "name" : "019", + "id" : "019" }, { - "name" : "020", "data" : [ [ "Perl", @@ -608,10 +595,11 @@ 13 ] ], + "name" : "020", "id" : "020" }, { - "id" : "021", + "name" : "021", "data" : [ [ "Perl", @@ -626,10 +614,9 @@ 10 ] ], - "name" : "021" + "id" : "021" }, { - "name" : "022", "id" : "022", "data" : [ [ @@ -644,7 +631,8 @@ "Blog", 10 ] - ] + ], + "name" : "022" }, { "data" : [ @@ -661,8 +649,8 @@ 12 ] ], - "id" : "023", - "name" : "023" + "name" : "023", + "id" : "023" }, { "data" : [ @@ -679,8 +667,8 @@ 11 ] ], - "id" : "024", - "name" : "024" + "name" : "024", + "id" : "024" }, { "id" : "025", @@ -701,6 +689,7 @@ "name" : "025" }, { + "id" : "026", "data" : [ [ "Perl", @@ -715,12 +704,10 @@ 10 ] ], - "id" : "026", "name" : "026" }, { "name" : "027", - "id" : "027", "data" : [ [ "Perl", @@ -734,10 +721,10 @@ "Blog", 9 ] - ] + ], + "id" : "027" }, { - "id" : "028", "data" : [ [ "Perl", @@ -752,9 +739,12 @@ 9 ] ], - "name" : "028" + "name" : "028", + "id" : "028" }, { + "id" : "029", + "name" : "029", "data" : [ [ "Perl", @@ -768,11 +758,10 @@ "Blog", 12 ] - ], - "id" : "029", - "name" : "029" + ] }, { + "name" : "030", "data" : [ [ "Perl", @@ -787,12 +776,10 @@ 10 ] ], - "id" : "030", - "name" : "030" + "id" : "030" }, { "name" : "031", - "id" : "031", "data" : [ [ "Perl", @@ -806,10 +793,11 @@ "Blog", 9 ] - ] + ], + "id" : "031" }, { - "id" : "032", + "name" : "032", "data" : [ [ "Perl", @@ -824,11 +812,9 @@ 10 ] ], - "name" : "032" + "id" : "032" }, { - "name" : "033", - "id" : "033", "data" : [ [ "Perl", @@ -842,11 +828,13 @@ "Blog", 10 ] - ] + ], + "name" : "033", + "id" : "033" }, { - "name" : "034", "id" : "034", + "name" : "034", "data" : [ [ "Perl", @@ -863,7 +851,7 @@ ] }, { - "id" : "035", + "name" : "035", "data" : [ [ "Perl", @@ -878,9 +866,11 @@ 9 ] ], - "name" : "035" + "id" : "035" }, { + "id" : "036", + "name" : "036", "data" : [ [ "Perl", @@ -894,11 +884,10 @@ "Blog", 10 ] - ], - "id" : "036", - "name" : "036" + ] }, { + "id" : "037", "name" : "037", "data" : [ [ @@ -913,11 +902,9 @@ "Blog", 9 ] - ], - "id" : "037" + ] }, { - "name" : "038", "id" : "038", "data" : [ [ @@ -932,10 +919,11 @@ "Blog", 11 ] - ] + ], + "name" : "038" }, { - "name" : "039", + "id" : "039", "data" : [ [ "Perl", @@ -950,10 +938,11 @@ 12 ] ], - "id" : "039" + "name" : "039" }, { "id" : "040", + "name" : "040", "data" : [ [ "Perl", @@ -967,11 +956,9 @@ "Blog", 9 ] - ], - "name" : "040" + ] }, { - "name" : "041", "id" : "041", "data" : [ [ @@ -986,29 +973,42 @@ "Blog", 6 ] - ] + ], + "name" : "041" }, { "name" : "042", "data" : [ [ "Perl", - 29 + 31 ], [ "Raku", - 16 + 18 ], [ "Blog", - 2 + 4 ] ], "id" : "042" } ] }, - "xAxis" : { - "type" : "category" + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-01-09 12:14:16 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index f53c7ea7d5..f637e1301a 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,4 +1,287 @@ { + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } + }, + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : "true", + "headerFormat" : "" + }, + "yAxis" : { + "title" : { + "text" : "Total Score" + } + }, + "chart" : { + "type" : "column" + }, + "series" : [ + { + "colorByPoint" : "true", + "data" : [ + { + "drilldown" : "Laurent Rosenfeld", + "y" : 512, + "name" : "#1: Laurent Rosenfeld" + }, + { + "drilldown" : "Joelle Maslak", + "name" : "#2: Joelle Maslak", + "y" : 334 + }, + { + "drilldown" : "Ruben Westerberg", + "y" : 332, + "name" : "#3: Ruben Westerberg" + }, + { + "y" : 326, + "name" : "#4: Jaldhar H. Vyas", + "drilldown" : "Jaldhar H. Vyas" + }, + { + "y" : 274, + "name" : "#5: Adam Russell", + "drilldown" : "Adam Russell" + }, + { + "drilldown" : "Arne Sommer", + "y" : 258, + "name" : "#6: Arne Sommer" + }, + { + "y" : 228, + "name" : "#7: Roger Bell West", + "drilldown" : "Roger Bell West" + }, + { + "y" : 224, + "name" : "#8: E. Choroba", + "drilldown" : "E. Choroba" + }, + { + "drilldown" : "Athanasius", + "name" : "#9: Athanasius", + "y" : 208 + }, + { + "drilldown" : "Andrezgz", + "y" : 166, + "name" : "#10: Andrezgz" + }, + { + "drilldown" : "Kian-Meng Ang", + "y" : 162, + "name" : "#11: Kian-Meng Ang" + }, + { + "drilldown" : "Simon Proctor", + "y" : 162, + "name" : "#12: Simon Proctor" + }, + { + "drilldown" : "Duncan C. White", + "y" : 144, + "name" : "#13: Duncan C. White" + }, + { + "drilldown" : "Dave Jacoby", + "y" : 136, + "name" : "#14: Dave Jacoby" + }, + { + "drilldown" : "Steven Wilson", + "y" : 128, + "name" : "#15: Steven Wilson" + }, + { + "y" : 120, + "name" : "#16: Javier Luque", + "drilldown" : "Javier Luque" + }, + { + "drilldown" : "Ryan Thompson", + "name" : "#17: Ryan Thompson", + "y" : 114 + }, + { + "drilldown" : "Yet Ebreo", + "y" : 114, + "name" : "#18: Yet Ebreo" + }, + { + "drilldown" : "Kevin Colyer", + "y" : 112, + "name" : "#19: Kevin Colyer" + }, + { + "y" : 108, + "name" : "#20: Duane Powell", + "drilldown" : "Duane Powell" + }, + { + "drilldown" : "Francis Whittle", + "name" : "#21: Francis Whittle", + "y" : 96 + }, + { + "drilldown" : "Noud Aldenhoven", + "name" : "#22: Noud Aldenhoven", + "y" : 90 + }, + { + "drilldown" : "Feng Chang", + "name" : "#23: Feng Chang", + "y" : 88 + }, + { + "name" : "#24: Colin Crain", + "y" : 84, + "drilldown" : "Colin Crain" + }, + { + "y" : 84, + "name" : "#25: Lubos Kolouch", + "drilldown" : "Lubos Kolouch" + }, + { + "drilldown" : "Daniel Mantovani", + "name" : "#26: Daniel Mantovani", + "y" : 82 + }, + { + "drilldown" : "Burkhard Nickels", + "y" : 80, + "name" : "#27: Burkhard Nickels" + }, + { + "name" : "#28: Mark Senn", + "y" : 80, + "drilldown" : "Mark Senn" + }, + { + "name" : "#29: Gustavo Chaves", + "y" : 72, + "drilldown" : "Gustavo Chaves" + }, + { + "drilldown" : "Yozen Hernandez", + "name" : "#30: Yozen Hernandez", + "y" : 70 + }, + { + "name" : "#31: Guillermo Ramos", + "y" : 64, + "drilldown" : "Guillermo Ramos" + }, + { + "y" : 64, + "name" : "#32: Ulrich Rieke", + "drilldown" : "Ulrich Rieke" + }, + { + "name" : "#33: Jo Christian Oterhals", + "y" : 60, + "drilldown" : "Jo Christian Oterhals" + }, + { + "y" : 56, + "name" : "#34: Ozzy", + "drilldown" : "Ozzy" + }, + { + "name" : "#35: Dr James A. Smith", + "y" : 52, + "drilldown" : "Dr James A. Smith" + }, + { + "drilldown" : "Randy Lauen", + "name" : "#36: Randy Lauen", + "y" : 52 + }, + { + "y" : 48, + "name" : "#37: Daniel Mita", + "drilldown" : "Daniel Mita" + }, + { + "drilldown" : "Dave Cross", + "name" : "#38: Dave Cross", + "y" : 46 + }, + { + "y" : 44, + "name" : "#39: Markus Holzer", + "drilldown" : "Markus Holzer" + }, + { + "name" : "#40: Veesh Goldman", + "y" : 44, + "drilldown" : "Veesh Goldman" + }, + { + "drilldown" : "Lars Balker", + "name" : "#41: Lars Balker", + "y" : 38 + }, + { + "drilldown" : "Kivanc Yazan", + "name" : "#42: Kivanc Yazan", + "y" : 32 + }, + { + "drilldown" : "Mark Anderson", + "name" : "#43: Mark Anderson", + "y" : 32 + }, + { + "drilldown" : "Nick Logan", + "y" : 32, + "name" : "#44: Nick Logan" + }, + { + "y" : 30, + "name" : "#45: Saif Ahmed", + "drilldown" : "Saif Ahmed" + }, + { + "drilldown" : "Pete Houston", + "name" : "#46: Pete Houston", + "y" : 28 + }, + { + "drilldown" : "Alicia Bielsa", + "y" : 26, + "name" : "#47: Alicia Bielsa" + }, + { + "name" : "#48: Walt Mankowski", + "y" : 26, + "drilldown" : "Walt Mankowski" + }, + { + "drilldown" : "Jaime Corchado", + "name" : "#49: Jaime Corchado", + "y" : 24 + }, + { + "name" : "#50: Lars Thegler", + "y" : 24, + "drilldown" : "Lars Thegler" + } + ], + "name" : "Perl Weekly Challenge Leaders" + } + ], "legend" : { "enabled" : "false" }, @@ -23,7 +306,7 @@ "id" : "Laurent Rosenfeld" }, { - "name" : "Joelle Maslak", + "id" : "Joelle Maslak", "data" : [ [ "Blog", @@ -38,10 +321,9 @@ 81 ] ], - "id" : "Joelle Maslak" + "name" : "Joelle Maslak" }, { - "id" : "Ruben Westerberg", "data" : [ [ "Perl", @@ -52,11 +334,10 @@ 83 ] ], - "name" : "Ruben Westerberg" + "name" : "Ruben Westerberg", + "id" : "Ruben Westerberg" }, { - "name" : "Jaldhar H. Vyas", - "id" : "Jaldhar H. Vyas", "data" : [ [ "Blog", @@ -70,10 +351,11 @@ "Raku", 70 ] - ] + ], + "name" : "Jaldhar H. Vyas", + "id" : "Jaldhar H. Vyas" }, { - "name" : "Adam Russell", "id" : "Adam Russell", "data" : [ [ @@ -88,9 +370,12 @@ "Raku", 9 ] - ] + ], + "name" : "Adam Russell" }, { + "id" : "Arne Sommer", + "name" : "Arne Sommer", "data" : [ [ "Blog", @@ -104,9 +389,7 @@ "Raku", 84 ] - ], - "id" : "Arne Sommer", - "name" : "Arne Sommer" + ] }, { "data" : [ @@ -123,8 +406,8 @@ 35 ] ], - "id" : "Roger Bell West", - "name" : "Roger Bell West" + "name" : "Roger Bell West", + "id" : "Roger Bell West" }, { "id" : "E. Choroba", @@ -141,7 +424,6 @@ "name" : "E. Choroba" }, { - "name" : "Athanasius", "id" : "Athanasius", "data" : [ [ @@ -156,20 +438,20 @@ "Raku", 38 ] - ] + ], + "name" : "Athanasius" }, { + "id" : "Andrezgz", "data" : [ [ "Perl", 83 ] ], - "id" : "Andrezgz", "name" : "Andrezgz" }, { - "id" : "Kian-Meng Ang", "data" : [ [ "Blog", @@ -180,9 +462,11 @@ 38 ] ], - "name" : "Kian-Meng Ang" + "name" : "Kian-Meng Ang", + "id" : "Kian-Meng Ang" }, { + "id" : "Simon Proctor", "name" : "Simon Proctor", "data" : [ [ @@ -197,8 +481,7 @@ "Raku", 69 ] - ], - "id" : "Simon Proctor" + ] }, { "name" : "Duncan C. White", @@ -215,6 +498,7 @@ "id" : "Duncan C. White" }, { + "name" : "Dave Jacoby", "data" : [ [ "Blog", @@ -229,10 +513,10 @@ 1 ] ], - "id" : "Dave Jacoby", - "name" : "Dave Jacoby" + "id" : "Dave Jacoby" }, { + "name" : "Steven Wilson", "data" : [ [ "Blog", @@ -247,8 +531,7 @@ 1 ] ], - "id" : "Steven Wilson", - "name" : "Steven Wilson" + "id" : "Steven Wilson" }, { "id" : "Javier Luque", @@ -268,8 +551,27 @@ ], "name" : "Javier Luque" }, + { + "id" : "Ryan Thompson", + "data" : [ + [ + "Blog", + 6 + ], + [ + "Perl", + 28 + ], + [ + "Raku", + 23 + ] + ], + "name" : "Ryan Thompson" + }, { "id" : "Yet Ebreo", + "name" : "Yet Ebreo", "data" : [ [ "Blog", @@ -283,10 +585,10 @@ "Raku", 21 ] - ], - "name" : "Yet Ebreo" + ] }, { + "id" : "Kevin Colyer", "data" : [ [ "Blog", @@ -301,34 +603,15 @@ 53 ] ], - "id" : "Kevin Colyer", "name" : "Kevin Colyer" }, { - "data" : [ - [ - "Perl", - 54 - ] - ], "id" : "Duane Powell", - "name" : "Duane Powell" - }, - { - "name" : "Ryan Thompson", - "id" : "Ryan Thompson", + "name" : "Duane Powell", "data" : [ - [ - "Blog", - 4 - ], [ "Perl", - 26 - ], - [ - "Raku", - 21 + 54 ] ] }, @@ -353,11 +636,11 @@ 45 ] ], - "id" : "Noud Aldenhoven", - "name" : "Noud Aldenhoven" + "name" : "Noud Aldenhoven", + "id" : "Noud Aldenhoven" }, { - "name" : "Feng Chang", + "id" : "Feng Chang", "data" : [ [ "Perl", @@ -368,9 +651,10 @@ 23 ] ], - "id" : "Feng Chang" + "name" : "Feng Chang" }, { + "name" : "Colin Crain", "data" : [ [ "Perl", @@ -381,31 +665,29 @@ 4 ] ], - "id" : "Colin Crain", - "name" : "Colin Crain" + "id" : "Colin Crain" }, { - "name" : "Lubos Kolouch", + "id" : "Lubos Kolouch", "data" : [ [ "Perl", 42 ] ], - "id" : "Lubos Kolouch" + "name" : "Lubos Kolouch" }, { "name" : "Daniel Mantovani", - "id" : "Daniel Mantovani", "data" : [ [ "Perl", 41 ] - ] + ], + "id" : "Daniel Mantovani" }, { - "name" : "Burkhard Nickels", "data" : [ [ "Blog", @@ -420,11 +702,10 @@ 2 ] ], + "name" : "Burkhard Nickels", "id" : "Burkhard Nickels" }, { - "name" : "Mark Senn", - "id" : "Mark Senn", "data" : [ [ "Blog", @@ -434,10 +715,12 @@ "Raku", 30 ] - ] + ], + "name" : "Mark Senn", + "id" : "Mark Senn" }, { - "id" : "Gustavo Chaves", + "name" : "Gustavo Chaves", "data" : [ [ "Blog", @@ -448,10 +731,9 @@ 32 ] ], - "name" : "Gustavo Chaves" + "id" : "Gustavo Chaves" }, { - "id" : "Yozen Hernandez", "data" : [ [ "Blog", @@ -462,7 +744,8 @@ 21 ] ], - "name" : "Yozen Hernandez" + "name" : "Yozen Hernandez", + "id" : "Yozen Hernandez" }, { "name" : "Guillermo Ramos", @@ -475,7 +758,6 @@ "id" : "Guillermo Ramos" }, { - "name" : "Ulrich Rieke", "id" : "Ulrich Rieke", "data" : [ [ @@ -486,11 +768,11 @@ "Raku", 20 ] - ] + ], + "name" : "Ulrich Rieke" }, { "name" : "Jo Christian Oterhals", - "id" : "Jo Christian Oterhals", "data" : [ [ "Blog", @@ -504,19 +786,21 @@ "Raku", 17 ] - ] + ], + "id" : "Jo Christian Oterhals" }, { + "id" : "Ozzy", "name" : "Ozzy", "data" : [ [ "Raku", 28 ] - ], - "id" : "Ozzy" + ] }, { + "id" : "Dr James A. Smith", "name" : "Dr James A. Smith", "data" : [ [ @@ -527,8 +811,7 @@ "Raku", 10 ] - ], - "id" : "Dr James A. Smith" + ] }, { "name" : "Randy Lauen", @@ -545,6 +828,7 @@ "id" : "Randy Lauen" }, { + "name" : "Daniel Mita", "data" : [ [ "Perl", @@ -555,10 +839,11 @@ 21 ] ], - "id" : "Daniel Mita", - "name" : "Daniel Mita" + "id" : "Daniel Mita" }, { + "id" : "Dave Cross", + "name" : "Dave Cross", "data" : [ [ "Blog", @@ -568,12 +853,9 @@ "Perl", 21 ] - ], - "id" : "Dave Cross", - "name" : "Dave Cross" + ] }, { - "id" : "Markus Holzer", "data" : [ [ "Perl", @@ -584,10 +866,11 @@ 20 ] ], - "name" : "Markus Holzer" + "name" : "Markus Holzer", + "id" : "Markus Holzer" }, { - "name" : "Veesh Goldman", + "id" : "Veesh Goldman", "data" : [ [ "Blog", @@ -602,11 +885,9 @@ 2 ] ], - "id" : "Veesh Goldman" + "name" : "Veesh Goldman" }, { - "name" : "Lars Balker", - "id" : "Lars Balker", "data" : [ [ "Perl", @@ -616,19 +897,22 @@ "Raku", 4 ] - ] + ], + "name" : "Lars Balker", + "id" : "Lars Balker" }, { "id" : "Kivanc Yazan", + "name" : "Kivanc Yazan", "data" : [ [ "Perl", 16 ] - ], - "name" : "Kivanc Yazan" + ] }, { + "id" : "Mark Anderson", "name" : "Mark Anderson", "data" : [ [ @@ -639,10 +923,10 @@ "Raku", 2 ] - ], - "id" : "Mark Anderson" + ] }, { + "name" : "Nick Logan", "data" : [ [ "Perl", @@ -653,10 +937,10 @@ 8 ] ], - "id" : "Nick Logan", - "name" : "Nick Logan" + "id" : "Nick Logan" }, { + "id" : "Saif Ahmed", "data" : [ [ "Blog", @@ -667,57 +951,56 @@ 14 ] ], - "id" : "Saif Ahmed", "name" : "Saif Ahmed" }, { - "id" : "Pete Houston", "data" : [ [ "Perl", 14 ] ], - "name" : "Pete Houston" + "name" : "Pete Houston", + "id" : "Pete Houston" }, { - "id" : "Alicia Bielsa", + "name" : "Alicia Bielsa", "data" : [ [ "Perl", 13 ] ], - "name" : "Alicia Bielsa" + "id" : "Alicia Bielsa" }, { - "id" : "Walt Mankowski", "data" : [ [ "Perl", 13 ] ], - "name" : "Walt Mankowski" + "name" : "Walt Mankowski", + "id" : "Walt Mankowski" }, { + "name" : "Jaime Corchado", "data" : [ [ "Perl", 12 ] ], - "id" : "Jaime Corchado", - "name" : "Jaime Corchado" + "id" : "Jaime Corchado" }, { + "id" : "Lars Thegler", "data" : [ [ "Perl", 12 ] ], - "id" : "Lars Thegler", "name" : "Lars Thegler" } ] @@ -726,289 +1009,6 @@ "type" : "category" }, "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2020-01-09 11:55:14 GMT" - }, - "chart" : { - "type" : "column" - }, - "series" : [ - { - "colorByPoint" : "true", - "data" : [ - { - "name" : "#1: Laurent Rosenfeld", - "drilldown" : "Laurent Rosenfeld", - "y" : 512 - }, - { - "y" : 334, - "drilldown" : "Joelle Maslak", - "name" : "#2: Joelle Maslak" - }, - { - "drilldown" : "Ruben Westerberg", - "name" : "#3: Ruben Westerberg", - "y" : 332 - }, -