From 7bcc4a63695846396ff27f0d658167243e959fc4 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Wed, 24 Jun 2020 05:58:50 +0100 Subject: - Added solutions by 3ter. --- challenge-066/3ter/README | 1 + challenge-066/3ter/ch-1.pl | 56 - challenge-066/3ter/ch-2.pl | 44 - challenge-066/3ter/perl/ch-1.pl | 56 + challenge-066/3ter/perl/ch-2.pl | 44 + members.json | 1 + stats/pwc-current.json | 131 +- stats/pwc-language-breakdown-summary.json | 54 +- stats/pwc-language-breakdown.json | 2650 ++++++++++++++--------------- stats/pwc-leaders.json | 344 ++-- stats/pwc-summary-1-30.json | 66 +- stats/pwc-summary-121-150.json | 58 +- stats/pwc-summary-151-180.json | 82 +- stats/pwc-summary-31-60.json | 56 +- stats/pwc-summary-61-90.json | 110 +- stats/pwc-summary-91-120.json | 112 +- stats/pwc-summary.json | 366 ++-- 17 files changed, 2128 insertions(+), 2103 deletions(-) create mode 100644 challenge-066/3ter/README delete mode 100644 challenge-066/3ter/ch-1.pl delete mode 100644 challenge-066/3ter/ch-2.pl create mode 100644 challenge-066/3ter/perl/ch-1.pl create mode 100644 challenge-066/3ter/perl/ch-2.pl diff --git a/challenge-066/3ter/README b/challenge-066/3ter/README new file mode 100644 index 0000000000..8c594431f3 --- /dev/null +++ b/challenge-066/3ter/README @@ -0,0 +1 @@ +Solutions by 3ter. diff --git a/challenge-066/3ter/ch-1.pl b/challenge-066/3ter/ch-1.pl deleted file mode 100644 index 577c8a3d73..0000000000 --- a/challenge-066/3ter/ch-1.pl +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/perl -use strict; -use warnings; -use v5.30; - -my ( $num, $den ) = @ARGV; -die 'Please provide two integers e.g. \'ch-1.pl 5 2\'' - if ( !defined($num) or !defined($den) ); - -say "$num//$den = " . divide_integers( $num, $den ); - -sub divide_integers { - my ( $num, $den ) = @_; - - # two edge cases - if ( $den == 0 ) { - return 'n/a'; - } - if ( $num == $den ) { - return 1; - } - - # extract the sign and forget about it later - my $sign = 0; - if ( $num < 0 and $den > 0 or $num > 0 and $den < 0 ) { - $sign = -1; - if ( abs($num) < abs($den) ) { - return -1; - } - } - elsif ( abs($num) < abs($den) ) { - return 0; - } - $num = abs($num); - $den = abs($den); - - # solve division by using addition - my $count_num_in_den = 1; - my $multiples_of_den = 0; - while ( ( $multiples_of_den += $den ) < $num ) { - $count_num_in_den++; - } - - if ( $multiples_of_den > $num ) { - $count_num_in_den--; - } - if ( $sign == -1 ) { - - # floor rounds negative numbers down so the - # absolute value gets one bigger - $count_num_in_den++; - $count_num_in_den = 0 - $count_num_in_den; - } - return $count_num_in_den; -} - diff --git a/challenge-066/3ter/ch-2.pl b/challenge-066/3ter/ch-2.pl deleted file mode 100644 index c1258b6253..0000000000 --- a/challenge-066/3ter/ch-2.pl +++ /dev/null @@ -1,44 +0,0 @@ -#!/usr/bin/perl -use strict; -use warnings; -use v5.30; - -my ($int) = @ARGV; -die 'Please provide one integer e.g. \'ch-2.pl 9\'' - if ( !defined($int) ); - -say power_integers($int); - -sub power_integers { - my ($int) = @_; - - my ( $factor, $power ) = get_factor_and_power($int); - if ( defined($power) and $power > 0 ) { - return $factor . '^' . $power; - } - else { - return 0; - } -} - -sub get_factor_and_power { - my ($int) = @_; - - # try those factors naively - my $factor; - my $max_factor = int( sqrt($int) ); - foreach my $potential_factor ( 2 .. $max_factor ) { - if ( $int % $potential_factor == 0 ) { - $factor = $potential_factor; - - # verify that the factor is powerful enough - my $power = 1; - while ( $factor**$power < $int ) { - $power++; - } - return ( $factor, $power ) if ( $factor**$power == $int ); - } - } - return 0; -} - diff --git a/challenge-066/3ter/perl/ch-1.pl b/challenge-066/3ter/perl/ch-1.pl new file mode 100644 index 0000000000..577c8a3d73 --- /dev/null +++ b/challenge-066/3ter/perl/ch-1.pl @@ -0,0 +1,56 @@ +#!/usr/bin/perl +use strict; +use warnings; +use v5.30; + +my ( $num, $den ) = @ARGV; +die 'Please provide two integers e.g. \'ch-1.pl 5 2\'' + if ( !defined($num) or !defined($den) ); + +say "$num//$den = " . divide_integers( $num, $den ); + +sub divide_integers { + my ( $num, $den ) = @_; + + # two edge cases + if ( $den == 0 ) { + return 'n/a'; + } + if ( $num == $den ) { + return 1; + } + + # extract the sign and forget about it later + my $sign = 0; + if ( $num < 0 and $den > 0 or $num > 0 and $den < 0 ) { + $sign = -1; + if ( abs($num) < abs($den) ) { + return -1; + } + } + elsif ( abs($num) < abs($den) ) { + return 0; + } + $num = abs($num); + $den = abs($den); + + # solve division by using addition + my $count_num_in_den = 1; + my $multiples_of_den = 0; + while ( ( $multiples_of_den += $den ) < $num ) { + $count_num_in_den++; + } + + if ( $multiples_of_den > $num ) { + $count_num_in_den--; + } + if ( $sign == -1 ) { + + # floor rounds negative numbers down so the + # absolute value gets one bigger + $count_num_in_den++; + $count_num_in_den = 0 - $count_num_in_den; + } + return $count_num_in_den; +} + diff --git a/challenge-066/3ter/perl/ch-2.pl b/challenge-066/3ter/perl/ch-2.pl new file mode 100644 index 0000000000..c1258b6253 --- /dev/null +++ b/challenge-066/3ter/perl/ch-2.pl @@ -0,0 +1,44 @@ +#!/usr/bin/perl +use strict; +use warnings; +use v5.30; + +my ($int) = @ARGV; +die 'Please provide one integer e.g. \'ch-2.pl 9\'' + if ( !defined($int) ); + +say power_integers($int); + +sub power_integers { + my ($int) = @_; + + my ( $factor, $power ) = get_factor_and_power($int); + if ( defined($power) and $power > 0 ) { + return $factor . '^' . $power; + } + else { + return 0; + } +} + +sub get_factor_and_power { + my ($int) = @_; + + # try those factors naively + my $factor; + my $max_factor = int( sqrt($int) ); + foreach my $potential_factor ( 2 .. $max_factor ) { + if ( $int % $potential_factor == 0 ) { + $factor = $potential_factor; + + # verify that the factor is powerful enough + my $power = 1; + while ( $factor**$power < $int ) { + $power++; + } + return ( $factor, $power ) if ( $factor**$power == $int ); + } + } + return 0; +} + diff --git a/members.json b/members.json index edc8e35256..cb958789b6 100644 --- a/members.json +++ b/members.json @@ -1,4 +1,5 @@ { + "3ter" : "3ter", "aaron-rowe" : "Aaron Rowe", "aaron-sherman" : "Aaron Sherman", "abigail" : "Abigail", diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 6143b38d29..e439a2ac0e 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,38 +1,47 @@ { - "subtitle" : { - "text" : "[Champions: 10] Last updated at 2020-06-23 18:38:09 GMT" - }, - "xAxis" : { - "type" : "category" + "tooltip" : { + "headerFormat" : "{series.name}
", + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
" }, - "title" : { - "text" : "Perl Weekly Challenge - 066" + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } }, "drilldown" : { "series" : [ { + "name" : "3ter", "data" : [ [ - "Raku", + "Perl", 2 ] ], + "id" : "3ter" + }, + { "name" : "Andrew Shitov", + "data" : [ + [ + "Raku", + 2 + ] + ], "id" : "Andrew Shitov" }, { "name" : "Dave Jacoby", + "id" : "Dave Jacoby", "data" : [ [ "Perl", 2 ] - ], - "id" : "Dave Jacoby" + ] }, { - "id" : "Javier Luque", - "name" : "Javier Luque", "data" : [ [ "Perl", @@ -46,11 +55,13 @@ "Blog", 1 ] - ] + ], + "id" : "Javier Luque", + "name" : "Javier Luque" }, { - "id" : "Luca Ferrari", "name" : "Luca Ferrari", + "id" : "Luca Ferrari", "data" : [ [ "Raku", @@ -64,25 +75,27 @@ }, { "id" : "Niels van Dijke", - "name" : "Niels van Dijke", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Niels van Dijke" }, { - "name" : "Pete Houston", + "id" : "Pete Houston", "data" : [ [ "Perl", 1 ] ], - "id" : "Pete Houston" + "name" : "Pete Houston" }, { + "name" : "Roger Bell_West", + "id" : "Roger Bell_West", "data" : [ [ "Perl", @@ -92,19 +105,17 @@ "Raku", 2 ] - ], - "name" : "Roger Bell_West", - "id" : "Roger Bell_West" + ] }, { - "name" : "Steven Wilson", "data" : [ [ "Perl", 1 ] ], - "id" : "Steven Wilson" + "id" : "Steven Wilson", + "name" : "Steven Wilson" }, { "name" : "Wanderdoc", @@ -117,64 +128,69 @@ "id" : "Wanderdoc" }, { - "id" : "Yet Ebreo", + "name" : "Yet Ebreo", "data" : [ [ "Perl", 2 ] ], - "name" : "Yet Ebreo" + "id" : "Yet Ebreo" } ] }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } + "legend" : { + "enabled" : 0 }, "series" : [ { + "colorByPoint" : 1, + "name" : "Perl Weekly Challenge - 066", "data" : [ { + "name" : "3ter", + "drilldown" : "3ter", + "y" : 2 + }, + { + "name" : "Andrew Shitov", "y" : 2, - "drilldown" : "Andrew Shitov", - "name" : "Andrew Shitov" + "drilldown" : "Andrew Shitov" }, { + "y" : 2, "drilldown" : "Dave Jacoby", - "name" : "Dave Jacoby", - "y" : 2 + "name" : "Dave Jacoby" }, { - "y" : 5, "name" : "Javier Luque", + "y" : 5, "drilldown" : "Javier Luque" }, { "drilldown" : "Luca Ferrari", - "name" : "Luca Ferrari", - "y" : 4 + "y" : 4, + "name" : "Luca Ferrari" }, { - "drilldown" : "Niels van Dijke", "name" : "Niels van Dijke", + "drilldown" : "Niels van Dijke", "y" : 2 }, { + "name" : "Pete Houston", "y" : 1, - "drilldown" : "Pete Houston", - "name" : "Pete Houston" + "drilldown" : "Pete Houston" }, { - "y" : 4, + "name" : "Roger Bell_West", "drilldown" : "Roger Bell_West", - "name" : "Roger Bell_West" + "y" : 4 }, { "y" : 1, - "name" : "Steven Wilson", - "drilldown" : "Steven Wilson" + "drilldown" : "Steven Wilson", + "name" : "Steven Wilson" }, { "name" : "Wanderdoc", @@ -182,33 +198,32 @@ "y" : 2 }, { - "y" : 2, "drilldown" : "Yet Ebreo", + "y" : 2, "name" : "Yet Ebreo" } - ], - "name" : "Perl Weekly Challenge - 066", - "colorByPoint" : 1 + ] } ], - "tooltip" : { - "headerFormat" : "{series.name}
", - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1 + "title" : { + "text" : "Perl Weekly Challenge - 066" + }, + "subtitle" : { + "text" : "[Champions: 11] Last updated at 2020-06-24 04:58:26 GMT" }, "plotOptions" : { "series" : { - "borderWidth" : 0, "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 } }, - "legend" : { - "enabled" : 0 - }, "chart" : { "type" : "column" + }, + "xAxis" : { + "type" : "category" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index b3e034f34b..b8ba751c90 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,27 +1,18 @@ { + "tooltip" : { + "pointFormat" : "{point.y:.0f}" + }, "yAxis" : { + "min" : 0, "title" : { "text" : null - }, - "min" : 0 + } }, - "title" : { - "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" + "legend" : { + "enabled" : "false" }, "series" : [ { - "dataLabels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - }, - "rotation" : -90, - "enabled" : "true", - "align" : "right", - "color" : "#FFFFFF", - "y" : 10, - "format" : "{point.y:.0f}" - }, "data" : [ [ "Blog", @@ -29,33 +20,42 @@ ], [ "Perl", - 2726 + 2728 ], [ "Raku", 1730 ] ], - "name" : "Contributions" + "name" : "Contributions", + "dataLabels" : { + "color" : "#FFFFFF", + "format" : "{point.y:.0f}", + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + }, + "y" : 10, + "align" : "right", + "rotation" : -90, + "enabled" : "true" + } } ], - "tooltip" : { - "pointFormat" : "{point.y:.0f}" + "title" : { + "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" }, - "legend" : { - "enabled" : "false" + "subtitle" : { + "text" : "Last updated at 2020-06-24 04:58:26 GMT" }, "chart" : { "type" : "column" }, - "subtitle" : { - "text" : "Last updated at 2020-06-23 18:38:09 GMT" - }, "xAxis" : { "labels" : { "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" } }, "type" : "category" diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 34266d8b3f..748eb80ff2 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,1222 +1,22 @@ { - "drilldown" : { - "series" : [ - { - "name" : "001", - "data" : [ - [ - "Perl", - 86 - ], - [ - "Raku", - 45 - ], - [ - "Blog", - 11 - ] - ], - "id" : "001" - }, - { - "id" : "002", - "name" : "002", - "data" : [ - [ - "Perl", - 65 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "name" : "003", - "data" : [ - [ - "Perl", - 34 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 9 - ] - ], - "id" : "003" - }, - { - "id" : "004", - "name" : "004", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "id" : "005", - "name" : "005", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 29 - ], - [ - "Raku", - 16 - ], - [ - "Blog", - 7 - ] - ], - "name" : "006", - "id" : "006" - }, - { - "id" : "007", - "data" : [ - [ - "Perl", - 28 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 10 - ] - ], - "name" : "007" - }, - { - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 20 - ], - [ - "Blog", - 12 - ] - ], - "name" : "008", - "id" : "008" - }, - { - "name" : "009", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 18 - ], - [ - "Blog", - 13 - ] - ], - "id" : "009" - }, - { - "name" : "010", - "data" : [ - [ - "Perl", - 32 - ], - [ - "Raku", - 17 - ], - [ - "Blog", - 11 - ] - ], - "id" : "010" - }, - { - "id" : "011", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 10 - ] - ], - "name" : "011" - }, - { - "id" : "012", - "name" : "012", - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "id" : "013", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 13 - ] - ], - "name" : "013" - }, - { - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 15 - ] - ], - "name" : "014", - "id" : "014" - }, - { - "name" : "015", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ], - "id" : "015" - }, - { - "id" : "016", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 12 - ] - ], - "name" : "016" - }, - { - "id" : "017", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 12 - ] - ], - "name" : "017" - }, - { - "id" : "018", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 14 - ] - ], - "name" : "018" - }, - { - "name" : "019", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 13 - ] - ], - "id" : "019" - }, - { - "name" : "020", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 13 - ] - ], - "id" : "020" - }, - { - "name" : "021", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 10 - ] - ], - "id" : "021" - }, - { - "id" : "022", - "data" : [ - [ - "Perl", - 32 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 10 - ] - ], - "name" : "022" - }, - { - "name" : "023", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 12 - ] - ], - "id" : "023" - }, - { - "id" : "024", - "name" : "024", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "id" : "025", - "name" : "025", - "data" : [ - [ - "Perl", - 26 - ], - [ - "Raku", - 17 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "name" : "026", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 10 - ] - ], - "id" : "026" - }, - { - "name" : "027", - "data" : [ - [ - "Perl", - 29 - ], - [ - "Raku", - 20 - ], - [ - "Blog", - 9 - ] - ], - "id" : "027" - }, - { - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 9 - ] - ], - "name" : "028", - "id" : "028" - }, - { - "id" : "029", - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 12 - ] - ], - "name" : "029" - }, - { - "id" : "030", - "name" : "030", - "data" : [ - [ - "Perl", - 74 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "name" : "031", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 9 - ] - ], - "id" : "031" - }, - { - "name" : "032", - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 10 - ] - ], - "id" : "032" - }, - { - "name" : "033", - "data" : [ - [ - "Perl", - 62 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 10 - ] - ], - "id" : "033" - }, - { - "name" : "034", - "data" : [ - [ - "Perl", - 30 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 11 - ] - ], - "id" : "034" - }, - { - "id" : "035", - "name" : "035", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 20 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "name" : "036", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 20 - ], - [ - "Blog", - 11 - ] - ], - "id" : "036" - }, - { - "name" : "037", - "data" : [ - [ - "Perl", - 34 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ], - "id" : "037" - }, - { - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 12 - ] - ], - "name" : "038", - "id" : "038" - }, - { - "data" : [ - [ - "Perl", - 29 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 12 - ] - ], - "name" : "039", - "id" : "039" - }, - { - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 10 - ] - ], - "name" : "040", - "id" : "040" - }, - { - "id" : "041", - "name" : "041", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "name" : "042", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 11 - ] - ], - "id" : "042" - }, - { - "id" : "043", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 11 - ] - ], - "name" : "043" - }, - { - "name" : "044", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 11 - ] - ], - "id" : "044" - }, - { - "id" : "045", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 11 - ] - ], - "name" : "045" - }, - { - "id" : "046", - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 10 - ] - ], - "name" : "046" - }, - { - "name" : "047", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 10 - ] - ], - "id" : "047" - }, - { - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 12 - ] - ], - "name" : "048", - "id" : "048" - }, - { - "id" : "049", - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 12 - ] - ], - "name" : "049" - }, - { - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 12 - ] - ], - "name" : "050", - "id" : "050" - }, - { - "name" : "051", - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 11 - ] - ], - "id" : "051" - }, - { - "name" : "052", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 14 - ] - ], - "id" : "052" - }, - { - "name" : "053", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 39 - ], - [ - "Blog", - 15 - ] - ], - "id" : "053" - }, - { - "id" : "054", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 16 - ] - ], - "name" : "054" - }, - { - "name" : "055", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ], - "id" : "055" - }, - { - "name" : "056", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 16 - ] - ], - "id" : "056" - }, - { - "id" : "057", - "name" : "057", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "id" : "058", - "name" : "058", - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "name" : "059", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 15 - ] - ], - "id" : "059" - }, - { - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ], - "name" : "060", - "id" : "060" - }, - { - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 14 - ] - ], - "name" : "061", - "id" : "061" - }, - { - "id" : "062", - "name" : "062", - "data" : [ - [ - "Perl", - 26 - ], - [ - "Raku", - 17 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "name" : "063", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 13 - ] - ], - "id" : "063" - }, - { - "name" : "064", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 16 - ] - ], - "id" : "064" - }, - { - "id" : "065", - "name" : "065", - "data" : [ - [ - "Perl", - 32 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "name" : "066", - "data" : [ - [ - "Perl", - 14 - ], - [ - "Raku", - 8 - ], - [ - "Blog", - 3 - ] - ], - "id" : "066" - } - ] - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } + "chart" : { + "type" : "column" }, - "title" : { - "text" : "Perl Weekly Challenge Language" + "xAxis" : { + "type" : "category" }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } + "tooltip" : { + "headerFormat" : "", + "followPointer" : "true", + "pointFormat" : "Challenge {point.name}: {point.y:f}
" }, "series" : [ { - "colorByPoint" : "true", - "name" : "Perl Weekly Challenge Languages", "data" : [ { + "drilldown" : "001", "y" : 142, - "name" : "#001", - "drilldown" : "001" + "name" : "#001" }, { "y" : 109, @@ -1224,8 +24,8 @@ "name" : "#002" }, { - "y" : 71, "name" : "#003", + "y" : 71, "drilldown" : "003" }, { @@ -1234,18 +34,18 @@ "name" : "#004" }, { + "y" : 72, "drilldown" : "005", - "name" : "#005", - "y" : 72 + "name" : "#005" }, { "drilldown" : "006", - "name" : "#006", - "y" : 52 + "y" : 52, + "name" : "#006" }, { - "y" : 59, "drilldown" : "007", + "y" : 59, "name" : "#007" }, { @@ -1255,118 +55,118 @@ }, { "name" : "#009", - "drilldown" : "009", - "y" : 68 + "y" : 68, + "drilldown" : "009" }, { "drilldown" : "010", - "name" : "#010", - "y" : 60 + "y" : 60, + "name" : "#010" }, { + "name" : "#011", "y" : 79, - "drilldown" : "011", - "name" : "#011" + "drilldown" : "011" }, { + "name" : "#012", "y" : 83, - "drilldown" : "012", - "name" : "#012" + "drilldown" : "012" }, { - "name" : "#013", "drilldown" : "013", - "y" : 76 + "y" : 76, + "name" : "#013" }, { - "drilldown" : "014", "name" : "#014", - "y" : 96 + "y" : 96, + "drilldown" : "014" }, { "name" : "#015", - "drilldown" : "015", - "y" : 93 + "y" : 93, + "drilldown" : "015" }, { - "y" : 66, + "name" : "#016", "drilldown" : "016", - "name" : "#016" + "y" : 66 }, { + "name" : "#017", "y" : 79, - "drilldown" : "017", - "name" : "#017" + "drilldown" : "017" }, { "y" : 76, - "name" : "#018", - "drilldown" : "018" + "drilldown" : "018", + "name" : "#018" }, { - "drilldown" : "019", "name" : "#019", - "y" : 97 + "y" : 97, + "drilldown" : "019" }, { + "drilldown" : "020", "y" : 95, - "name" : "#020", - "drilldown" : "020" + "name" : "#020" }, { - "y" : 67, + "name" : "#021", "drilldown" : "021", - "name" : "#021" + "y" : 67 }, { "name" : "#022", - "drilldown" : "022", - "y" : 63 + "y" : 63, + "drilldown" : "022" }, { - "drilldown" : "023", "name" : "#023", + "drilldown" : "023", "y" : 91 }, { "y" : 70, - "name" : "#024", - "drilldown" : "024" + "drilldown" : "024", + "name" : "#024" }, { + "name" : "#025", "y" : 55, - "drilldown" : "025", - "name" : "#025" + "drilldown" : "025" }, { "name" : "#026", - "drilldown" : "026", - "y" : 70 + "y" : 70, + "drilldown" : "026" }, { - "drilldown" : "027", "name" : "#027", + "drilldown" : "027", "y" : 58 }, { - "drilldown" : "028", "name" : "#028", - "y" : 78 + "y" : 78, + "drilldown" : "028" }, { "name" : "#029", - "drilldown" : "029", - "y" : 77 + "y" : 77, + "drilldown" : "029" }, { - "drilldown" : "030", "name" : "#030", - "y" : 115 + "y" : 115, + "drilldown" : "030" }, { "y" : 87, - "name" : "#031", - "drilldown" : "031" + "drilldown" : "031", + "name" : "#031" }, { "name" : "#032", @@ -1379,64 +179,64 @@ "y" : 108 }, { + "name" : "#034", "y" : 62, - "drilldown" : "034", - "name" : "#034" + "drilldown" : "034" }, { - "y" : 62, "name" : "#035", + "y" : 62, "drilldown" : "035" }, { - "y" : 66, + "name" : "#036", "drilldown" : "036", - "name" : "#036" + "y" : 66 }, { "drilldown" : "037", - "name" : "#037", - "y" : 65 + "y" : 65, + "name" : "#037" }, { + "y" : 65, "drilldown" : "038", - "name" : "#038", - "y" : 65 + "name" : "#038" }, { - "y" : 60, "drilldown" : "039", + "y" : 60, "name" : "#039" }, { + "y" : 71, "drilldown" : "040", - "name" : "#040", - "y" : 71 + "name" : "#040" }, { - "y" : 74, "name" : "#041", + "y" : 74, "drilldown" : "041" }, { "drilldown" : "042", - "name" : "#042", - "y" : 88 + "y" : 88, + "name" : "#042" }, { + "name" : "#043", "y" : 66, - "drilldown" : "043", - "name" : "#043" + "drilldown" : "043" }, { + "y" : 82, "drilldown" : "044", - "name" : "#044", - "y" : 82 + "name" : "#044" }, { - "name" : "#045", "drilldown" : "045", - "y" : 94 + "y" : 94, + "name" : "#045" }, { "y" : 85, @@ -1444,88 +244,88 @@ "name" : "#046" }, { + "drilldown" : "047", "y" : 82, - "name" : "#047", - "drilldown" : "047" + "name" : "#047" }, { - "drilldown" : "048", "name" : "#048", - "y" : 106 + "y" : 106, + "drilldown" : "048" }, { + "y" : 85, "drilldown" : "049", - "name" : "#049", - "y" : 85 + "name" : "#049" }, { "y" : 96, - "name" : "#050", - "drilldown" : "050" + "drilldown" : "050", + "name" : "#050" }, { + "name" : "#051", "y" : 87, - "drilldown" : "051", - "name" : "#051" + "drilldown" : "051" }, { - "y" : 89, "name" : "#052", + "y" : 89, "drilldown" : "052" }, { + "name" : "#053", "y" : 99, - "drilldown" : "053", - "name" : "#053" + "drilldown" : "053" }, { "name" : "#054", - "drilldown" : "054", - "y" : 99 + "y" : 99, + "drilldown" : "054" }, { - "drilldown" : "055", "name" : "#055", - "y" : 86 + "y" : 86, + "drilldown" : "055" }, { - "name" : "#056", + "y" : 93, "drilldown" : "056", - "y" : 93 + "name" : "#056" }, { - "y" : 78, "drilldown" : "057", + "y" : 78, "name" : "#057" }, { "name" : "#058", - "drilldown" : "058", - "y" : 61 + "y" : 61, + "drilldown" : "058" }, { - "y" : 82, + "name" : "#059", "drilldown" : "059", - "name" : "#059" + "y" : 82 }, { - "y" : 78, + "name" : "#060", "drilldown" : "060", - "name" : "#060" + "y" : 78 }, { - "y" : 79, "name" : "#061", + "y" : 79, "drilldown" : "061" }, { + "name" : "#062", "y" : 54, - "drilldown" : "062", - "name" : "#062" + "drilldown" : "062" }, { - "y" : 87, "name" : "#063", + "y" : 87, "drilldown" : "063" }, { @@ -1534,33 +334,1233 @@ "y" : 76 }, { - "y" : 71, "name" : "#065", + "y" : 71, "drilldown" : "065" }, { - "y" : 25, + "name" : "#066", "drilldown" : "066", - "name" : "#066" + "y" : 27 } - ] + ], + "name" : "Perl Weekly Challenge Languages", + "colorByPoint" : "true" } ], - "tooltip" : { - "followPointer" : "true", - "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "headerFormat" : "" - }, "legend" : { "enabled" : "false" }, - "chart" : { - "type" : "column" + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "drilldown" : { + "series" : [ + { + "data" : [ + [ + "Perl", + 86 + ], + [ + "Raku", + 45 + ], + [ + "Blog", + 11 + ] + ], + "id" : "001", + "name" : "001" + }, + { + "id" : "002", + "data" : [ + [ + "Perl", + 65 + ], + [ + "Raku", + 34 + ], + [ + "Blog", + 10 + ] + ], + "name" : "002" + }, + { + "id" : "003", + "data" : [ + [ + "Perl", + 34 + ], + [ + "Raku", + 28 + ], + [ + "Blog", + 9 + ] + ], + "name" : "003" + }, + { + "name" : "004", + "id" : "004", + "data" : [ + [ + "Perl", + 50 + ], + [ + "Raku", + 31 + ], + [ + "Blog", + 10 + ] + ] + }, + { + "name" : "005", + "data" : [ + [ + "Perl", + 36 + ], + [ + "Raku", + 24 + ], + [ + "Blog", + 12 + ] + ], + "id" : "005" + }, + { + "data" : [ + [ + "Perl", + 29 + ], + [ + "Raku", + 16 + ], + [ + "Blog", + 7 + ] + ], + "id" : "006", + "name" : "006" + }, + { + "data" : [ + [ + "Perl", + 28 + ], + [ + "Raku", + 21 + ], + [ + "Blog", + 10 + ] + ], + "id" : "007", + "name" : "007" + }, + { + "name" : "008", + "data" : [ + [ + "Perl", + 40 + ], + [ + "Raku", + 20 + ], + [ + "Blog", + 12 + ] + ], + "id" : "008" + }, + { + "name" : "009", + "data" : [ + [ + "Perl", + 37 + ], + [ + "Raku", + 18 + ], + [ + "Blog", + 13 + ] + ], + "id" : "009" + }, + { + "data" : [ + [ + "Perl", + 32 + ], + [ + "Raku", + 17 + ], + [ + "Blog", + 11 + ] + ], + "id" : "010", + "name" : "010" + }, + { + "name" : "011", + "id" : "011", + "data" : [ + [ + "Perl", + 43 + ], + [ + "Raku", + 26 + ], + [ + "Blog", + 10 + ] + ] + }, + { + "id" : "012", + "data" : [ + [ + "Perl", + 44 + ], + [ + "Raku", + 28 + ], + [ + "Blog", + 11 + ] + ], + "name" : "012" + }, + { + "name" : "013", + "data" : [ + [ + "Perl", + 42 + ], + [ + "Raku", + 21 + ], + [ + "Blog", + 13 + ] + ], + "id" : "013" + }, + { + "data" : [ + [ + "Perl", + 52 + ], + [ + "Raku", + 29 + ], + [ + "Blog", + 15 + ] + ], + "id" : "014", + "name" : "014" + }, + { + "name" : "015", + "data" : [ + [ + "Perl", + 52 + ], + [ + "Raku", + 26 + ], + [ + "Blog", + 15 + ] + ], + "id" : "015" + }, + { + "name" : "016", + "data" : [ + [ + "Perl", + 33 + ], + [ + "Raku", + 21 + ], + [ + "Blog", + 12 + ] + ], + "id" : "016" + }, + { + "id" : "017", + "data" : [ + [ + "Perl", + 42 + ], + [ + "Raku", + 25 + ], + [ + "Blog", + 12 + ] + ], + "name" : "017" + }, + { + "id" : "018", + "data" : [ + [ + "Perl", + 33 + ], + [ + "Raku", + 29 + ], + [ + "Blog", + 14 + ] + ], + "name" : "018" + }, + { + "id" : "019", + "data" : [ + [ + "Perl", + 52 + ], + [ + "Raku", + 32 + ], + [ + "Blog", + 13 + ] + ], + "name" : "019" + }, + { + "name" : "020", + "id" : "020", + "data" : [ + [ + "Perl", + 47 + ], + [ + "Raku", + 35 + ], + [ + "Blog", + 13 + ] + ] + }, + { + "name" : "021", + "data" : [ + [ + "Perl", + 35 + ], + [ + "Raku", + 22 + ], + [ + "Blog", + 10 + ] + ], + "id" : "021" + }, + { + "data" : [ + [ + "Perl", + 32 + ], + [ + "Raku", + 21 + ], + [ + "Blog", + 10 + ] + ], + "id" : "022", + "name" : "022" + }, + { + "name" : "023", + "id" : "023", + "data" : [ + [ + "Perl", + 49 + ], + [ + "Raku", + 30 + ], + [ + "Blog", + 12 + ] + ] + }, + { + "id" : "024", + "data" : [ + [ + "Perl", + 35 + ], + [ + "Raku", + 24 + ], + [ + "Blog", + 11 + ] + ], + "name" : "024" + }, + { + "name" : "025", + "data" : [ + [ + "Perl", + 26 + ], + [ + "Raku", + 17 + ], + [ + "Blog", + 12 + ] + ], + "id" : "025" + }, + { + "name" : "026", + "id" : "026", + "data" : [ + [ + "Perl", + 33 + ], + [ + "Raku", + 27 + ], + [ + "Blog", + 10 + ] + ] + }, + { + "name" : "027", + "id" : "027", + "data" : [ + [ + "Perl", + 29 + ], + [ + "Raku", + 20 + ], + [ + "Blog", + 9 + ] + ] + }, + { + "name" : "028", + "id" : "028", + "data" : [ + [ + "Perl", + 45 + ], + [ + "Raku", + 24 + ], + [ + "Blog", + 9 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 40 +