From 847e53be79fd29d0be9c0aeabd3be3a84410f495 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Tue, 2 Jun 2020 14:51:58 +0100 Subject: - Added Perl solutions to the "Rotate String" task. --- challenge-063/mohammad-anwar/perl/ch-2.pl | 33 + challenge-063/mohammad-anwar/perl/ch-2a.pl | 37 + stats/pwc-current.json | 258 +-- stats/pwc-language-breakdown-summary.json | 80 +- stats/pwc-language-breakdown.json | 2488 ++++++++++++++-------------- stats/pwc-leaders.json | 746 ++++----- stats/pwc-summary-1-30.json | 34 +- stats/pwc-summary-121-150.json | 56 +- stats/pwc-summary-151-180.json | 52 +- stats/pwc-summary-31-60.json | 102 +- stats/pwc-summary-61-90.json | 46 +- stats/pwc-summary-91-120.json | 50 +- stats/pwc-summary.json | 32 +- 13 files changed, 2042 insertions(+), 1972 deletions(-) create mode 100644 challenge-063/mohammad-anwar/perl/ch-2.pl create mode 100644 challenge-063/mohammad-anwar/perl/ch-2a.pl diff --git a/challenge-063/mohammad-anwar/perl/ch-2.pl b/challenge-063/mohammad-anwar/perl/ch-2.pl new file mode 100644 index 0000000000..846db32d2a --- /dev/null +++ b/challenge-063/mohammad-anwar/perl/ch-2.pl @@ -0,0 +1,33 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +my $count = rotate($ARGV[0], 1); +print "Rotation: $count\n"; + +sub rotate { + my ($string, $verbose) = @_; + + die "ERROR: Missing string.\n" + unless defined $string; + die "ERROR: Invalid string [$string].\n" + unless ($string =~ /^[xy]+$/i); + + my $size = length($string); + my $temp = $string; + my $i = 1; + my $c = 1; + while ($i <= $size) { + my $part_a = substr($temp, 0, $i); + my $part_b = substr($temp, $i); + $temp = sprintf("%s%s", $part_b, $part_a); + print "[$c]: [$temp]\n" if ($verbose); + last if ($temp eq $string); + + $i++; $c++; + $i = 1 if ($i > $size); + } + + return $c; +} diff --git a/challenge-063/mohammad-anwar/perl/ch-2a.pl b/challenge-063/mohammad-anwar/perl/ch-2a.pl new file mode 100644 index 0000000000..d51180d150 --- /dev/null +++ b/challenge-063/mohammad-anwar/perl/ch-2a.pl @@ -0,0 +1,37 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More; + +is (rotate('xyxx'), 7, 'xyxx'); +is (rotate('xyxy'), 3, 'xyxy'); + +done_testing; + +sub rotate { + my ($string, $verbose) = @_; + + die "ERROR: Missing string.\n" + unless defined $string; + die "ERROR: Invalid string [$string].\n" + unless ($string =~ /^[xy]+$/i); + + my $size = length($string); + my $temp = $string; + my $i = 1; + my $c = 1; + while ($i <= $size) { + my $part_a = substr($temp, 0, $i); + my $part_b = substr($temp, $i); + $temp = sprintf("%s%s", $part_b, $part_a); + print "[$c]: [$temp]\n" if ($verbose); + last if ($temp eq $string); + + $i++; $c++; + $i = 1 if ($i > $size); + } + + return $c; +} diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 3f749f7d18..7640d4c73f 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,98 +1,12 @@ { - "chart" : { - "type" : "column" - }, - "xAxis" : { - "type" : "category" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } - }, - "legend" : { - "enabled" : 0 - }, - "series" : [ - { - "colorByPoint" : 1, - "name" : "Perl Weekly Challenge - 063", - "data" : [ - { - "y" : 3, - "drilldown" : "Bartosz Jarzyna", - "name" : "Bartosz Jarzyna" - }, - { - "name" : "Dave Jacoby", - "y" : 2, - "drilldown" : "Dave Jacoby" - }, - { - "name" : "Javier Luque", - "y" : 5, - "drilldown" : "Javier Luque" - }, - { - "y" : 4, - "drilldown" : "Luca Ferrari", - "name" : "Luca Ferrari" - }, - { - "name" : "Mohammad S Anwar", - "drilldown" : "Mohammad S Anwar", - "y" : 2 - }, - { - "drilldown" : "Niels van Dijke", - "y" : 2, - "name" : "Niels van Dijke" - }, - { - "y" : 1, - "drilldown" : "Pete Houston", - "name" : "Pete Houston" - }, - { - "name" : "Roger Bell_West", - "y" : 4, - "drilldown" : "Roger Bell_West" - }, - { - "y" : 4, - "drilldown" : "Sangeet Kar", - "name" : "Sangeet Kar" - }, - { - "y" : 2, - "drilldown" : "Simon Proctor", - "name" : "Simon Proctor" - }, - { - "drilldown" : "Ulrich Rieke", - "y" : 4, - "name" : "Ulrich Rieke" - }, - { - "drilldown" : "Wanderdoc", - "y" : 2, - "name" : "Wanderdoc" - } - ] - } - ], - "tooltip" : { - "followPointer" : 1, - "headerFormat" : "{series.name}
", - "pointFormat" : "{point.name}: {point.y:f}
" + "subtitle" : { + "text" : "[Champions: 12] Last updated at 2020-06-02 13:51:41 GMT" }, "drilldown" : { "series" : [ { + "id" : "Bartosz Jarzyna", + "name" : "Bartosz Jarzyna", "data" : [ [ "Perl", @@ -102,23 +16,19 @@ "Blog", 1 ] - ], - "id" : "Bartosz Jarzyna", - "name" : "Bartosz Jarzyna" + ] }, { + "id" : "Dave Jacoby", + "name" : "Dave Jacoby", "data" : [ [ "Perl", 2 ] - ], - "name" : "Dave Jacoby", - "id" : "Dave Jacoby" + ] }, { - "name" : "Javier Luque", - "id" : "Javier Luque", "data" : [ [ "Perl", @@ -132,9 +42,13 @@ "Blog", 1 ] - ] + ], + "name" : "Javier Luque", + "id" : "Javier Luque" }, { + "name" : "Luca Ferrari", + "id" : "Luca Ferrari", "data" : [ [ "Raku", @@ -144,33 +58,31 @@ "Blog", 2 ] - ], - "id" : "Luca Ferrari", - "name" : "Luca Ferrari" + ] }, { + "id" : "Mohammad S Anwar", + "name" : "Mohammad S Anwar", "data" : [ [ "Perl", - 1 + 2 ], [ "Raku", 1 ] - ], - "id" : "Mohammad S Anwar", - "name" : "Mohammad S Anwar" + ] }, { - "name" : "Niels van Dijke", - "id" : "Niels van Dijke", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Niels van Dijke", + "id" : "Niels van Dijke" }, { "data" : [ @@ -179,10 +91,12 @@ 1 ] ], - "name" : "Pete Houston", - "id" : "Pete Houston" + "id" : "Pete Houston", + "name" : "Pete Houston" }, { + "id" : "Roger Bell_West", + "name" : "Roger Bell_West", "data" : [ [ "Perl", @@ -192,11 +106,11 @@ "Raku", 2 ] - ], - "id" : "Roger Bell_West", - "name" : "Roger Bell_West" + ] }, { + "id" : "Sangeet Kar", + "name" : "Sangeet Kar", "data" : [ [ "Perl", @@ -206,23 +120,21 @@ "Raku", 2 ] - ], - "id" : "Sangeet Kar", - "name" : "Sangeet Kar" + ] }, { + "name" : "Simon Proctor", + "id" : "Simon Proctor", "data" : [ [ "Raku", 2 ] - ], - "name" : "Simon Proctor", - "id" : "Simon Proctor" + ] }, { - "id" : "Ulrich Rieke", "name" : "Ulrich Rieke", + "id" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -235,26 +147,114 @@ ] }, { + "id" : "Wanderdoc", + "name" : "Wanderdoc", "data" : [ [ "Perl", 2 ] - ], - "id" : "Wanderdoc", - "name" : "Wanderdoc" + ] } ] }, - "title" : { - "text" : "Perl Weekly Challenge - 063" - }, - "subtitle" : { - "text" : "[Champions: 12] Last updated at 2020-06-02 11:00:24 GMT" + "chart" : { + "type" : "column" }, "yAxis" : { "title" : { "text" : "Total Solutions" } + }, + "title" : { + "text" : "Perl Weekly Challenge - 063" + }, + "xAxis" : { + "type" : "category" + }, + "series" : [ + { + "data" : [ + { + "drilldown" : "Bartosz Jarzyna", + "y" : 3, + "name" : "Bartosz Jarzyna" + }, + { + "drilldown" : "Dave Jacoby", + "y" : 2, + "name" : "Dave Jacoby" + }, + { + "y" : 5, + "drilldown" : "Javier Luque", + "name" : "Javier Luque" + }, + { + "name" : "Luca Ferrari", + "y" : 4, + "drilldown" : "Luca Ferrari" + }, + { + "name" : "Mohammad S Anwar", + "y" : 3, + "drilldown" : "Mohammad S Anwar" + }, + { + "name" : "Niels van Dijke", + "drilldown" : "Niels van Dijke", + "y" : 2 + }, + { + "name" : "Pete Houston", + "y" : 1, + "drilldown" : "Pete Houston" + }, + { + "name" : "Roger Bell_West", + "y" : 4, + "drilldown" : "Roger Bell_West" + }, + { + "y" : 4, + "drilldown" : "Sangeet Kar", + "name" : "Sangeet Kar" + }, + { + "drilldown" : "Simon Proctor", + "y" : 2, + "name" : "Simon Proctor" + }, + { + "drilldown" : "Ulrich Rieke", + "y" : 4, + "name" : "Ulrich Rieke" + }, + { + "name" : "Wanderdoc", + "y" : 2, + "drilldown" : "Wanderdoc" + } + ], + "colorByPoint" : 1, + "name" : "Perl Weekly Challenge - 063" + } + ], + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "{series.name}
", + "followPointer" : 1 + }, + "legend" : { + "enabled" : 0 + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 7f9205b17f..214f9a8d74 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,33 +1,25 @@ { - "title" : { - "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" + "legend" : { + "enabled" : "false" }, "tooltip" : { "pointFormat" : "{point.y:.0f}" }, - "subtitle" : { - "text" : "Last updated at 2020-06-02 11:00:24 GMT" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : null - } - }, - "xAxis" : { - "type" : "category", - "labels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - } - } - }, - "chart" : { - "type" : "column" - }, "series" : [ { + "name" : "Contributions", + "dataLabels" : { + "enabled" : "true", + "y" : 10, + "rotation" : -90, + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + }, + "color" : "#FFFFFF", + "align" : "right", + "format" : "{point.y:.0f}" + }, "data" : [ [ "Blog", @@ -35,29 +27,37 @@ ], [ "Perl", - 2619 + 2620 ], [ "Raku", 1654 ] - ], - "name" : "Contributions", - "dataLabels" : { - "format" : "{point.y:.0f}", - "align" : "right", - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - }, - "enabled" : "true", - "rotation" : -90, - "y" : 10, - "color" : "#FFFFFF" - } + ] } ], - "legend" : { - "enabled" : "false" + "xAxis" : { + "labels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + }, + "type" : "category" + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : null + } + }, + "subtitle" : { + "text" : "Last updated at 2020-06-02 13:51:41 GMT" + }, + "chart" : { + "type" : "column" + }, + "title" : { + "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index a0ab14e160..60afef75d2 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,1172 +1,20 @@ { - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-06-02 11:00:24 GMT" + "legend" : { + "enabled" : "false" }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "tooltip" : { - "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "headerFormat" : "", - "followPointer" : "true" - }, - "drilldown" : { - "series" : [ - { - "data" : [ - [ - "Perl", - 86 - ], - [ - "Raku", - 45 - ], - [ - "Blog", - 11 - ] - ], - "name" : "001", - "id" : "001" - }, - { - "data" : [ - [ - "Perl", - 65 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 10 - ] - ], - "id" : "002", - "name" : "002" - }, - { - "data" : [ - [ - "Perl", - 34 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 9 - ] - ], - "id" : "003", - "name" : "003" - }, - { - "id" : "004", - "name" : "004", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 12 - ] - ], - "id" : "005", - "name" : "005" - }, - { - "name" : "006", - "id" : "006", - "data" : [ - [ - "Perl", - 29 - ], - [ - "Raku", - 16 - ], - [ - "Blog", - 7 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 28 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 10 - ] - ], - "id" : "007", - "name" : "007" - }, - { - "id" : "008", - "name" : "008", - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 20 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 18 - ], - [ - "Blog", - 13 - ] - ], - "id" : "009", - "name" : "009" - }, - { - "data" : [ - [ - "Perl", - 32 - ], - [ - "Raku", - 17 - ], - [ - "Blog", - 11 - ] - ], - "id" : "010", - "name" : "010" - }, - { - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 10 - ] - ], - "id" : "011", - "name" : "011" - }, - { - "id" : "012", - "name" : "012", - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "id" : "013", - "name" : "013", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 13 - ] - ] - }, - { - "name" : "014", - "id" : "014", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ], - "name" : "015", - "id" : "015" - }, - { - "name" : "016", - "id" : "016", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 12 - ] - ], - "id" : "017", - "name" : "017" - }, - { - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 14 - ] - ], - "name" : "018", - "id" : "018" - }, - { - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 13 - ] - ], - "name" : "019", - "id" : "019" - }, - { - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 13 - ] - ], - "id" : "020", - "name" : "020" - }, - { - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 10 - ] - ], - "id" : "021", - "name" : "021" - }, - { - "name" : "022", - "id" : "022", - "data" : [ - [ - "Perl", - 32 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "id" : "023", - "name" : "023", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 11 - ] - ], - "name" : "024", - "id" : "024" - }, - { - "data" : [ - [ - "Perl", - 26 - ], - [ - "Raku", - 17 - ], - [ - "Blog", - 12 - ] - ], - "name" : "025", - "id" : "025" - }, - { - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 10 - ] - ], - "id" : "026", - "name" : "026" - }, - { - "id" : "027", - "name" : "027", - "data" : [ - [ - "Perl", - 29 - ], - [ - "Raku", - 20 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 9 - ] - ], - "id" : "028", - "name" : "028" - }, - { - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 12 - ] - ], - "name" : "029", - "id" : "029" - }, - { - "data" : [ - [ - "Perl", - 74 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 10 - ] - ], - "name" : "030", - "id" : "030" - }, - { - "id" : "031", - "name" : "031", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "id" : "032", - "name" : "032", - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "id" : "033", - "name" : "033", - "data" : [ - [ - "Perl", - 62 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 30 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 11 - ] - ], - "id" : "034", - "name" : "034" - }, - { - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 20 - ], - [ - "Blog", - 9 - ] - ], - "id" : "035", - "name" : "035" - }, - { - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 20 - ], - [ - "Blog", - 11 - ] - ], - "id" : "036", - "name" : "036" - }, - { - "data" : [ - [ - "Perl", - 34 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ], - "id" : "037", - "name" : "037" - }, - { - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 12 - ] - ], - "name" : "038", - "id" : "038" - }, - { - "data" : [ - [ - "Perl", - 29 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 12 - ] - ], - "id" : "039", - "name" : "039" - }, - { - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 10 - ] - ], - "name" : "040", - "id" : "040" - }, - { - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 9 - ] - ], - "id" : "041", - "name" : "041" - }, - { - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 11 - ] - ], - "name" : "042", - "id" : "042" - }, - { - "id" : "043", - "name" : "043", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 11 - ] - ], - "name" : "044", - "id" : "044" - }, - { - "id" : "045", - "name" : "045", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "name" : "046", - "id" : "046", - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "name" : "047", - "id" : "047", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "id" : "048", - "name" : "048", - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "id" : "049", - "name" : "049", - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 12 - ] - ], - "name" : "050", - "id" : "050" - }, - { - "id" : "051", - "name" : "051", - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "id" : "052", - "name" : "052", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "name" : "053", - "id" : "053", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 39 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 16 - ] - ], - "name" : "054", - "id" : "054" - }, - { - "name" : "055", - "id" : "055", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "id" : "056", - "name" : "056", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "name" : "057", - "id" : "057", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 11 - ] - ], - "id" : "058", - "name" : "058" - }, - { - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 15 - ] - ], - "name" : "059", - "id" : "059" - }, - { - "id" : "060", - "name" : "060", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 13 - ] - ], - "id" : "061", - "name" : "061" - }, - { - "name" : "062", - "id" : "062", - "data" : [ - [ - "Perl", - 24 - ], - [ - "Raku", - 17 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "id" : "063", - "name" : "063", - "data" : [ - [ - "Perl", - 18 - ], - [ - "Raku", - 13 - ], - [ - "Blog", - 4 - ] - ] - } - ] - }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, - "legend" : { - "enabled" : "false" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - } + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } } }, "series" : [ { + "name" : "Perl Weekly Challenge Languages", + "colorByPoint" : "true", "data" : [ { "name" : "#001", @@ -1175,22 +23,22 @@ }, { "name" : "#002", - "y" : 109, - "drilldown" : "002" + "drilldown" : "002", + "y" : 109 }, { - "name" : "#003", "drilldown" : "003", - "y" : 71 + "y" : 71, + "name" : "#003" }, { - "drilldown" : "004", "y" : 91, + "drilldown" : "004", "name" : "#004" }, { - "y" : 72, "drilldown" : "005", + "y" : 72, "name" : "#005" }, { @@ -1199,19 +47,19 @@ "name" : "#006" }, { - "name" : "#007", + "y" : 59, "drilldown" : "007", - "y" : 59 + "name" : "#007" }, { - "name" : "#008", + "y" : 72, "drilldown" : "008", - "y" : 72 + "name" : "#008" }, { "name" : "#009", - "drilldown" : "009", - "y" : 68 + "y" : 68, + "drilldown" : "009" }, { "name" : "#010", @@ -1219,24 +67,24 @@ "drilldown" : "010" }, { - "drilldown" : "011", "y" : 79, + "drilldown" : "011", "name" : "#011" }, { + "name" : "#012", "drilldown" : "012", - "y" : 83, - "name" : "#012" + "y" : 83 }, { - "name" : "#013", "y" : 76, - "drilldown" : "013" + "drilldown" : "013", + "name" : "#013" }, { "name" : "#014", - "drilldown" : "014", - "y" : 96 + "y" : 96, + "drilldown" : "014" }, { "y" : 93, @@ -1244,9 +92,9 @@ "name" : "#015" }, { - "drilldown" : "016", + "name" : "#016", "y" : 66, - "name" : "#016" + "drilldown" : "016" }, { "drilldown" : "017", @@ -1259,24 +107,24 @@ "y" : 76 }, { - "name" : "#019", "y" : 97, - "drilldown" : "019" + "drilldown" : "019", + "name" : "#019" }, { + "name" : "#020", "drilldown" : "020", - "y" : 95, - "name" : "#020" + "y" : 95 }, { - "name" : "#021", + "drilldown" : "021", "y" : 67, - "drilldown" : "021" + "name" : "#021" }, { + "name" : "#022", "drilldown" : "022", - "y" : 63, - "name" : "#022" + "y" : 63 }, { "drilldown" : "023", @@ -1319,49 +167,49 @@ "drilldown" : "030" }, { - "name" : "#031", "y" : 87, - "drilldown" : "031" + "drilldown" : "031", + "name" : "#031" }, { - "name" : "#032", + "y" : 92, "drilldown" : "032", - "y" : 92 + "name" : "#032" }, { - "name" : "#033", + "y" : 108, "drilldown" : "033", - "y" : 108 + "name" : "#033" }, { - "drilldown" : "034", + "name" : "#034", "y" : 62, - "name" : "#034" + "drilldown" : "034" }, { - "y" : 62, + "name" : "#035", "drilldown" : "035", - "name" : "#035" + "y" : 62 }, { - "name" : "#036", + "drilldown" : "036", "y" : 66, - "drilldown" : "036" + "name" : "#036" }, { + "name" : "#037", "drilldown" : "037", - "y" : 65, - "name" : "#037" + "y" : 65 }, { - "y" : 65, "drilldown" : "038", + "y" : 65, "name" : "#038" }, { - "drilldown" : "039", + "name" : "#039", "y" : 60, - "name" : "#039" + "drilldown" : "039" }, { "name" : "#040", @@ -1374,9 +222,9 @@ "name" : "#041" }, { + "name" : "#042", "drilldown" : "042", - "y" : 88, - "name" : "#042" + "y" : 88 }, { "name" : "#043", @@ -1384,9 +232,9 @@ "drilldown" : "043" }, { - "y" : 82, + "name" : "#044", "drilldown" : "044", - "name" : "#044" + "y" : 82 }, { "drilldown" : "045", @@ -1394,48 +242,48 @@ "name" : "#045" }, { - "drilldown" : "046", "y" : 85, + "drilldown" : "046", "name" : "#046" }, { "name" : "#047", - "drilldown" : "047", - "y" : 82 + "y" : 82, + "drilldown" : "047" }, { "name" : "#048", - "drilldown" : "048", - "y" : 106 + "y" : 106, + "drilldown" : "048" }, { - "drilldown" : "049", "y" : 85, + "drilldown" : "049", "name" : "#049" }, { - "drilldown" : "050", + "name" : "#050", "y" : 96, - "name" : "#050" + "drilldown" : "050" }, { "name" : "#051", - "drilldown" : "051", - "y" : 87 + "y" : 87, + "drilldown" : "051" }, { - "drilldown" : "052", "y" : 89, + "drilldown" : "052", "name" : "#052" }, { - "name" : "#053", "y" : 99, - "drilldown" : "053" + "drilldown" : "053", + "name" : "#053" }, { - "drilldown" : "054", "y" : 99, + "drilldown" : "054", "name" : "#054" }, { @@ -1450,18 +298,18 @@ }, { "name" : "#057", - "drilldown" : "057", - "y" : 78 + "y" : 78, + "drilldown" : "057" }, { + "name" : "#058", "y" : 61, - "drilldown" : "058", - "name" : "#058" + "drilldown" : "058" }, { - "name" : "#059", "y" : 82, - "drilldown" : "059" + "drilldown" : "059", + "name" : "#059" }, { "name" : "#060", @@ -1475,23 +323,1175 @@ }, { "name" : "#062", - "y" : 51, - "drilldown" : "062" + "drilldown" : "062", + "y" : 51 }, { - "y" : 35, + "y" : 36, "drilldown" : "063", "name" : "#063" } - ], - "name" : "Perl Weekly Challenge Languages", - "colorByPoint" : "true" + ] + } + ], + "tooltip" : { + "headerFormat" : "", + "pointFormat" : "Challenge {point.name}: {point.y:f}
", + "followPointer" : "true" + }, + "xAxis" : { + "type" : "category" + }, + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "chart" : { + "type" : "column" + }, + "drilldown" : { + "series" : [ + { + "data" : [ + [ + "Perl", + 86 + ], + [ + "Raku", + 45 + ], + [ + "Blog", + 11 + ] + ], + "id" : "001", + "name" : "001" + }, + { + "data" : [ + [ + "Perl", + 65 + ], + [ + "Raku", + 34 + ], + [ + "Blog", + 10 + ] + ], + "name" : "002", + "id" : "002" + }, + { + "name" : "003", + "id" : "003", + "data" : [ + [ + "Perl", + 34 + ], + [ + "Raku", + 28 + ], + [ + "Blog", + 9 + ] + ] + }, + { + "name" : "004", + "id" : "004", + "data" : [ + [ + "Perl", + 50 + ], + [ + "Raku", + 31 + ], + [ + "Blog", + 10 + ] + ] + }, + { + "name" : "005", + "id" : "005", + "data" : [ + [ + "Perl", + 36 + ], + [ + "Raku", + 24 + ], + [ + "Blog", + 12 + ] + ] + }, + { + "name" : "006", + "id" : "006", + "data" : [ + [ + "Perl", + 29 + ], + [ + "Raku", + 16 + ], + [ + "Blog", + 7 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 28 + ], + [ + "Raku", + 21 + ], + [ + "Blog", + 10 + ] + ], + "id" : "007", + "name" : "007" + }, + { + "data" : [ + [ + "Perl", + 40 + ], + [ + "Raku", + 20 + ], + [ + "Blog", + 12 + ] + ], + "name" : "008", + "id" : "008" + }, + { + "data" : [ + [ + "Perl", + 37 + ], + [ + "Raku", + 18 + ], + [ + "Blog", + 13 + ] + ], + "name" : "009", + "id" : "009" + }, + { + "data" : [ + [ + "Perl", + 32 + ], + [ + "Raku", + 17 + ], + [ + "Blog", + 11 + ] + ], + "name" : "010", + "id" : "010" + }, + { + "data" : [ + [ + "Perl", + 43 + ], + [ + "Raku", + 26 + ], + [ + "Blog", + 10 + ] + ], + "id" : "011", + "name" : "011" + }, + { + "name" : "012", + "id" : "012", + "data" : [ + [ + "Perl", + 44 + ], + [ + "Raku", + 28 + ], + [ + "Blog", + 11 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 42 + ], + [ + "Raku", + 21 + ], + [ + "Blog", + 13 + ] + ], + "name" : "013", + "id" : "013" + }, + { + "name" : "014", + "id" : "014", + "data" : [ + [ + "Perl", + 52 + ], + [ + "Raku", + 29 + ], + [ + "Blog", + 15 + ] + ] + }, + { + "name" : "015", + "id" : "015", + "data" : [ + [ + "Perl", + 52 + ], + [ + "Raku", + 26 + ], + [ + "Blog", + 15 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 33 + ], + [ + "Raku", + 21 + ], + [ + "Blog", + 12 + ] + ], + "id" : "016", + "name" : "016" + }, + { + "id" : "017", + "name" : "017", + "data" : [ + [ + "Perl", + 42 + ], + [ + "Raku", + 25 + ], + [ + "Blog", + 12 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 33 + ], + [ + "Raku", + 29 + ], + [ + "Blog", + 14 + ] + ], + "name" : "018", + "id" : "018" + }, + { + "data" : [ + [ + "Perl", + 52 + ], + [ + "Raku", + 32 + ], + [ + "Blog", + 13 + ] + ], + "id" : "019", + "name" : "019" + }, + { + "data" : [ + [ + "Perl", + 47 + ], + [ + "Raku", + 35 + ], + [ + "Blog", + 13 + ] + ], + "id" : "020", + "name" : "020" + }, + { + "data" : [ + [ + "Perl", + 35 + ], + [ + "Raku", + 22 + ], + [ + "Blog", + 10 + ] + ], + "name" : "021", + "id" : "021" + }, + { + "name" : "022", + "id" : "022", + "data" : [ + [ + "Perl", + 32 + ], + [ + "Raku", + 21 + ], + [ + "Blog", + 10 + ] + ] + }, + { + "name" : "023", + "id" : "023", + "data" : [ + [ + "Perl", + 49 + ], + [ + "Raku", + 30 + ], + [ + "Blog", + 12 + ] + ] + }, + { + "name" : "024", + "id" : "024", + "data" : [ + [ + "Perl", + 35 + ], + [ + "Raku", + 24 + ], + [ + "Blog", + 11 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 26 + ], + [ + "Raku", + 17 + ], + [ + "Blog", + 12 + ] + ], + "name" : "025", + "id" : "025" + }, + { + "data" : [ + [ + "Perl", + 33 + ], + [ + "Raku", + 27 + ], + [ + "Blog", + 10 + ] + ], + "name" : "026", + "id" : "026" + }, + { + "data" : [ + [ + "Perl", + 29 + ], + [ + "Raku", + 20 + ], + [ + "Blog", + 9 + ] + ], + "id" : "027", + "name" : "027" + }, + { + "data" : [ + [ + "Perl", + 45 + ], + [ + "Raku", + 24 + ], + [ + "Blog", + 9 + ] + ], + "id" : "028", + "name" : "028" + }, + { + "data" : [ + [ + "Perl", + 40 + ], + [ + "Raku", + 25 + ], + [ + "Blog", + 12 + ] + ], + "id" : "029", + "name" : "029" + }, + { + "data" : [ + [ + "Perl", + 74 + ], + [ + "Raku", + 31 + ], + [ + "Blog", + 10 + ] + ], + "id" : "030", + "name" : "030" + }, + { + "data" : [ + [ + "Perl", + 50 + ], + [ + "Raku", + 28 + ], + [ + "Blog", + 9 + ] + ], + "name" : "031", + "id" : "031" + }, + { + "data" : [ + [ + "Perl", + 57 + ], + [ + "Raku", + 25 + ], + [ + "Blog", + 10 + ] + ], + "id" : "032", + "name" : "032" + }, + { + "id" : "033", + "name" : "033", + "data" : [ + [ + "Perl", + 62 + ], + [ + "Raku", + 36 + ], + [ + "Blog", + 10 + ] + ] + }, + { + "name" : "034", + "id" : "034", + "data" : [ + [ + "Perl", + 30 + ], + [ + "Raku", + 21 + ], + [ + "Blog", + 11 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 33 + ], + [ + "Raku", + 20 + ], + [ + "Blog", + 9 + ] + ], + "id" : "035", + "name" : "035" + }, + { + "name" : "036", + "id" : "036", + "data" : [ + [ + "Perl", + 35 + ], + [ + "Raku", + 20 + ], + [ + "Blog", + 11 + ] + ] + }, + { + "name" : "037", + "id" : "037", + "data" : [ + [ + "Perl", + 34 + ], + [ + "Raku", + 22 + ], + [ + "Blog", + 9 + ] + ] + }, + { + "id" : "038", + "name" : "038", + "data" : [ + [ + "Perl", + 31 + ], + [ + "Raku", + 22 + ], + [ + "Blog", + 12 + ] + ] + }, + { + "name" : "039", + "id" : "039", + "data" : [ + [ + "Perl", + 29 + ], + [ + "Raku", + 19 + ], + [ + "Blog", + 12 + ] + ] + }, + { + "name" : "040", + "id" : "040", + "data" : [ + [ + "Perl", + 39 + ], + [ + "Raku", + 22 + ], + [ + "Blog", + 10 + ] + ] + }, + { + "name" : "041", + "id" : "041", + "data" : [ + [ + "Perl", + 37 + ], + [ + "Raku", + 28 + ], + [ + "Blog", + 9 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 47 + ], +