From 0f6f9d8dc439d66232dd86672d3e02869ddfd5d5 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Tue, 24 Nov 2020 19:32:22 +0000 Subject: - Added solutions by Ulrich Rieke. --- challenge-088/ulrich-rieke/cpp/ch-1.cpp | 29 + challenge-088/ulrich-rieke/haskell/ch-1.hs | 8 + challenge-088/ulrich-rieke/perl/ch-1.pl | 28 + challenge-088/ulrich-rieke/raku/ch-1.raku | 21 + challenge-088/ulrich-rieke/raku/ch-2.raku | 90 + stats/pwc-current.json | 177 +- stats/pwc-language-breakdown-summary.json | 66 +- stats/pwc-language-breakdown.json | 3508 ++++++++++++++-------------- stats/pwc-leaders.json | 336 +-- stats/pwc-summary-1-30.json | 38 +- stats/pwc-summary-121-150.json | 116 +- stats/pwc-summary-151-180.json | 92 +- stats/pwc-summary-181-210.json | 98 +- stats/pwc-summary-31-60.json | 30 +- stats/pwc-summary-61-90.json | 40 +- stats/pwc-summary-91-120.json | 24 +- stats/pwc-summary.json | 458 ++-- 17 files changed, 2677 insertions(+), 2482 deletions(-) create mode 100644 challenge-088/ulrich-rieke/cpp/ch-1.cpp create mode 100644 challenge-088/ulrich-rieke/haskell/ch-1.hs create mode 100644 challenge-088/ulrich-rieke/perl/ch-1.pl create mode 100644 challenge-088/ulrich-rieke/raku/ch-1.raku create mode 100644 challenge-088/ulrich-rieke/raku/ch-2.raku diff --git a/challenge-088/ulrich-rieke/cpp/ch-1.cpp b/challenge-088/ulrich-rieke/cpp/ch-1.cpp new file mode 100644 index 0000000000..3537fac9d4 --- /dev/null +++ b/challenge-088/ulrich-rieke/cpp/ch-1.cpp @@ -0,0 +1,29 @@ +#include +#include +#include +#include +#include +#include + +int main( ) { + std::vector numbers ; + std::string input ; + std::cout << "please enter positive numbers ( -1 to end ) !\n" ; + std::getline( std::cin , input ) ; + int num = std::stoi( input ) ; + while ( num != -1 ) { + numbers.push_back( num ) ; + std::getline( std::cin , input ) ; + num = std::stoi( input ) ; + } + int product = std::accumulate( numbers.begin( ) , numbers.end( ) , + 1 , std::multiplies( ) ) ; + std::vector theProducts ; + for ( int i = 0 ; i < numbers.size( ) ; i++ ) { + theProducts.push_back( product / numbers[ i ] ) ; + } + std::cout << "( " ; + std::copy( theProducts.begin( ), theProducts.end( ) , + std::ostream_iterator( std::cout , " ") ) ; + std::cout << ")\n" ; + return 0 ; diff --git a/challenge-088/ulrich-rieke/haskell/ch-1.hs b/challenge-088/ulrich-rieke/haskell/ch-1.hs new file mode 100644 index 0000000000..d598c93769 --- /dev/null +++ b/challenge-088/ulrich-rieke/haskell/ch-1.hs @@ -0,0 +1,8 @@ +module Challenge088 + where +import Data.List ( (!!) ) +solution :: [Int] -> [Int] +solution list = [prod `div` ( list !! i ) | i <- [0 .. length list - 1]] + where + prod :: Int + prod = product list diff --git a/challenge-088/ulrich-rieke/perl/ch-1.pl b/challenge-088/ulrich-rieke/perl/ch-1.pl new file mode 100644 index 0000000000..ca3b342765 --- /dev/null +++ b/challenge-088/ulrich-rieke/perl/ch-1.pl @@ -0,0 +1,28 @@ +#!/usr/bin/perl ; +use strict ; +use warnings ; +use List::Util qw( product ) ; + +sub enterArray { + my @array ; + print "Enter positive numbers , -1 to end!\n"; + my $num = ; + chomp $num ; + while ( $num != -1 ) { + push @array , $num ; + $num = ; + chomp $num ; + } + return @array ; +} + +my @array = enterArray ; +my @M ; +my $product = product @array ; +my $len = scalar @array ; +for my $i ( 0 .. $len - 1 ) { + push @M , $product / $array[ $i ] ; +} +print "( " ; +map { print "$_ " } @M ; +print ")\n" ; diff --git a/challenge-088/ulrich-rieke/raku/ch-1.raku b/challenge-088/ulrich-rieke/raku/ch-1.raku new file mode 100644 index 0000000000..642d4aa3be --- /dev/null +++ b/challenge-088/ulrich-rieke/raku/ch-1.raku @@ -0,0 +1,21 @@ +use v6 ; + +sub enterArray( ) { + my @array ; + say "Enter positive numbers, -1 to end!" ; + my $num = $*IN.get ; + while ( +$num != -1 ) { + @array.push( $num ) ; + $num = $*IN.get ; + } + return @array ; +} + +my @array = enterArray( ) ; +my $product = [*] @array.map( {.Int} ) ; +my $len = @array.elems ; +my @M ; +for ( 0 .. $len - 1 ) -> $i { + @M.push( $product / @array[ $i ] ) ; +} +@M.say ; diff --git a/challenge-088/ulrich-rieke/raku/ch-2.raku b/challenge-088/ulrich-rieke/raku/ch-2.raku new file mode 100644 index 0000000000..f2c326eac7 --- /dev/null +++ b/challenge-088/ulrich-rieke/raku/ch-2.raku @@ -0,0 +1,90 @@ +use v6 ; + +#looks for the direction of the next move, depending on the current +#position in the array, the currrent movement and whether the next cell +#to jump to is beyond the borders of the array or has already been visited + +sub findDirection( @visited, $currentRow, $currentCol , $nextDir is copy ) { + state $rows = @visited.elems ; + state $cols = @visited[0].elems ; + given $nextDir { + when "right" { if ($currentCol + 1 < $cols and + @visited[$currentRow][$currentCol + 1 ] eq 'n' ) { + $nextDir = "right" ; + } + else { + $nextDir = "down" ; + } + } + when "down" { if ($currentRow + 1 < $rows and + @visited[ $currentRow + 1 ][ $currentCol ] eq 'n' ) { + $nextDir = "down" ; + } + else { + $nextDir = "left" ; + } + } + when "left" { if ( $currentCol - 1 > -1 and + @visited[ $currentRow][ $currentCol - 1 ] eq 'n' ) { + $nextDir = "left" ; + } + else { + $nextDir = "up" ; + } + } + when "up" { if ( $currentRow - 1 > -1 and + @visited[ $currentRow - 1][ $currentCol ] eq 'n' ) { + $nextDir = "up" ; + } + else { + $nextDir = "right" ; + } + } + } + return $nextDir ; +} + +sub enterArray( Int $m , Int $n ) { + my @array ; + say "Enter the array ( $m lines with $n numbers each!) " ; + for ( 0 .. $m - 1 ) -> $row { + my @subarray ; + say "Enter a row, separated by blanks!" ; + my $line = $*IN.get ; + while ( $line.comb.elems < $n ) { + say "Enter new line!" ; + $line = $*IN.get ; + } + @subarray.push( |($line.split( /\s/ ))) ; + @array.push( @subarray ) ; + } + return @array ; +} + +sub MAIN( Int $m , Int $n ) { + my @array = enterArray( $m , $n ) ; + my @visited ; #mark all fields as 'n'ot visited + for ( 0 .. $m - 1 ) -> $i { + my @subarray = ('n' xx $n).Array ; + @visited.push( @subarray ) ; + } + my $currentRow = 0 ; + my $currentCol = 0 ; + my @list ; + my $nextDir = "right" ; + @list.push( @array[ 0 ][ 0] ) ; + @visited[ 0 ][ 0 ] = 'y' ; #the left upper cell is visited + repeat { + $nextDir = findDirection( @visited , $currentRow , $currentCol , + $nextDir ) ; + given $nextDir { + when "right" { $currentCol++ } + when "up" { $currentRow-- } + when "down" { $currentRow++ } + when "left" { $currentCol-- } + } + @visited[ $currentRow ][ $currentCol ] = 'y' ;#mark as visited + @list.push( @array[ $currentRow ][ $currentCol] ) ;#add to list + } until ( @list.elems == $m * $n ) ; + say @list ; +} diff --git a/stats/pwc-current.json b/stats/pwc-current.json index d232e1a7e8..564e748c28 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,8 +1,11 @@ { + "title" : { + "text" : "Perl Weekly Challenge - 088" + }, "series" : [ { - "colorByPoint" : 1, "name" : "Perl Weekly Challenge - 088", + "colorByPoint" : 1, "data" : [ { "drilldown" : "Andrew Shitov", @@ -10,19 +13,19 @@ "y" : 1 }, { - "name" : "Dave Jacoby", "y" : 2, + "name" : "Dave Jacoby", "drilldown" : "Dave Jacoby" }, { "name" : "E. Choroba", - "y" : 2, - "drilldown" : "E. Choroba" + "drilldown" : "E. Choroba", + "y" : 2 }, { - "drilldown" : "James Smith", + "y" : 2, "name" : "James Smith", - "y" : 2 + "drilldown" : "James Smith" }, { "y" : 2, @@ -31,123 +34,159 @@ }, { "name" : "Niels van Dijke", - "y" : 2, - "drilldown" : "Niels van Dijke" + "drilldown" : "Niels van Dijke", + "y" : 2 }, { - "drilldown" : "PJ Durai", "name" : "PJ Durai", + "drilldown" : "PJ Durai", "y" : 2 }, { + "drilldown" : "Pete Houston", "name" : "Pete Houston", - "y" : 2, - "drilldown" : "Pete Houston" + "y" : 2 }, { - "name" : "Philip Hood", "y" : 2, + "name" : "Philip Hood", "drilldown" : "Philip Hood" }, { - "name" : "Roger Bell_West", "y" : 4, - "drilldown" : "Roger Bell_West" + "drilldown" : "Roger Bell_West", + "name" : "Roger Bell_West" }, { "y" : 3, - "name" : "Simon Green", - "drilldown" : "Simon Green" + "drilldown" : "Simon Green", + "name" : "Simon Green" }, { - "y" : 2, "name" : "Simon Proctor", - "drilldown" : "Simon Proctor" + "drilldown" : "Simon Proctor", + "y" : 2 }, { - "name" : "Stuart Little", "y" : 2, - "drilldown" : "Stuart Little" + "drilldown" : "Stuart Little", + "name" : "Stuart Little" }, { "y" : 3, + "name" : "Ulrich Rieke", + "drilldown" : "Ulrich Rieke" + }, + { + "drilldown" : "W. Luis Mochan", "name" : "W. Luis Mochan", - "drilldown" : "W. Luis Mochan" + "y" : 3 } ] } ], + "chart" : { + "type" : "column" + }, + "xAxis" : { + "type" : "category" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } + }, + "legend" : { + "enabled" : 0 + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "tooltip" : { + "headerFormat" : "{series.name}
", + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : 1 + }, + "subtitle" : { + "text" : "[Champions: 15] Last updated at 2020-11-24 19:31:01 GMT" + }, "drilldown" : { "series" : [ { - "id" : "Andrew Shitov", "data" : [ [ "Raku", 1 ] ], + "id" : "Andrew Shitov", "name" : "Andrew Shitov" }, { + "name" : "Dave Jacoby", + "id" : "Dave Jacoby", "data" : [ [ "Perl", 2 ] - ], - "name" : "Dave Jacoby", - "id" : "Dave Jacoby" + ] }, { "id" : "E. Choroba", + "name" : "E. Choroba", "data" : [ [ "Perl", 2 ] - ], - "name" : "E. Choroba" + ] }, { + "id" : "James Smith", "name" : "James Smith", "data" : [ [ "Perl", 2 ] - ], - "id" : "James Smith" + ] }, { + "id" : "Mark Anderson", "name" : "Mark Anderson", "data" : [ [ "Raku", 2 ] - ], - "id" : "Mark Anderson" + ] }, { - "name" : "Niels van Dijke", "data" : [ [ "Perl", 2 ] ], + "name" : "Niels van Dijke", "id" : "Niels van Dijke" }, { + "name" : "PJ Durai", "id" : "PJ Durai", "data" : [ [ "Raku", 2 ] - ], - "name" : "PJ Durai" + ] }, { "data" : [ @@ -156,22 +195,20 @@ 2 ] ], - "name" : "Pete Houston", - "id" : "Pete Houston" + "id" : "Pete Houston", + "name" : "Pete Houston" }, { + "id" : "Philip Hood", "name" : "Philip Hood", "data" : [ [ "Raku", 2 ] - ], - "id" : "Philip Hood" + ] }, { - "id" : "Roger Bell_West", - "name" : "Roger Bell_West", "data" : [ [ "Perl", @@ -181,10 +218,11 @@ "Raku", 2 ] - ] + ], + "name" : "Roger Bell_West", + "id" : "Roger Bell_West" }, { - "name" : "Simon Green", "data" : [ [ "Perl", @@ -195,17 +233,18 @@ 1 ] ], + "name" : "Simon Green", "id" : "Simon Green" }, { - "id" : "Simon Proctor", "data" : [ [ "Raku", 2 ] ], - "name" : "Simon Proctor" + "name" : "Simon Proctor", + "id" : "Simon Proctor" }, { "data" : [ @@ -218,7 +257,20 @@ "id" : "Stuart Little" }, { - "id" : "W. Luis Mochan", + "data" : [ + [ + "Perl", + 1 + ], + [ + "Raku", + 2 + ] + ], + "id" : "Ulrich Rieke", + "name" : "Ulrich Rieke" + }, + { "data" : [ [ "Perl", @@ -229,42 +281,9 @@ 1 ] ], + "id" : "W. Luis Mochan", "name" : "W. Luis Mochan" } ] - }, - "xAxis" : { - "type" : "category" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "chart" : { - "type" : "column" - }, - "title" : { - "text" : "Perl Weekly Challenge - 088" - }, - "legend" : { - "enabled" : 0 - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - } - } - }, - "subtitle" : { - "text" : "[Champions: 14] Last updated at 2020-11-24 19:25:24 GMT" - }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1, - "headerFormat" : "{series.name}
" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 646707be4c..4265c74a6c 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,7 +1,34 @@ { + "yAxis" : { + "title" : { + "text" : null + }, + "min" : 0 + }, + "legend" : { + "enabled" : "false" + }, + "title" : { + "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" + }, + "chart" : { + "type" : "column" + }, "series" : [ { "name" : "Contributions", + "dataLabels" : { + "y" : 10, + "rotation" : -90, + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + }, + "format" : "{point.y:.0f}", + "color" : "#FFFFFF", + "align" : "right", + "enabled" : "true" + }, "data" : [ [ "Blog", @@ -9,55 +36,28 @@ ], [ "Perl", - 3911 + 3912 ], [ "Raku", - 2538 + 2540 ] - ], - "dataLabels" : { - "y" : 10, - "align" : "right", - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - }, - "format" : "{point.y:.0f}", - "color" : "#FFFFFF", - "rotation" : -90, - "enabled" : "true" - } + ] } ], - "yAxis" : { - "min" : 0, - "title" : { - "text" : null - } - }, "xAxis" : { - "type" : "category", "labels" : { "style" : { "fontSize" : "13px", "fontFamily" : "Verdana, sans-serif" } - } + }, + "type" : "category" }, "subtitle" : { - "text" : "Last updated at 2020-11-24 19:25:24 GMT" + "text" : "Last updated at 2020-11-24 19:31:01 GMT" }, "tooltip" : { "pointFormat" : "{point.y:.0f}" - }, - "chart" : { - "type" : "column" - }, - "legend" : { - "enabled" : "false" - }, - "title" : { - "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index f4e1f481f2..0ab199f5be 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,1665 +1,51 @@ { - "tooltip" : { - "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "followPointer" : "true", - "headerFormat" : "" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-11-24 19:25:24 GMT" - }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, "legend" : { "enabled" : "false" }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - } - } - }, - "chart" : { - "type" : "column" - }, - "drilldown" : { - "series" : [ - { - "data" : [ - [ - "Perl", - 89 - ], - [ - "Raku", - 45 - ], - [ - "Blog", - 11 - ] - ], - "name" : "001", - "id" : "001" - }, - { - "id" : "002", - "data" : [ - [ - "Perl", - 70 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 10 - ] - ], - "name" : "002" - }, - { - "name" : "003", - "data" : [ - [ - "Perl", - 34 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 9 - ] - ], - "id" : "003" - }, - { - "name" : "004", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 10 - ] - ], - "id" : "004" - }, - { - "name" : "005", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 12 - ] - ], - "id" : "005" - }, - { - "name" : "006", - "data" : [ - [ - "Perl", - 29 - ], - [ - "Raku", - 16 - ], - [ - "Blog", - 7 - ] - ], - "id" : "006" - }, - { - "id" : "007", - "name" : "007", - "data" : [ - [ - "Perl", - 28 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 20 - ], - [ - "Blog", - 12 - ] - ], - "name" : "008", - "id" : "008" - }, - { - "id" : "009", - "name" : "009", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 13 - ] - ] - }, - { - "id" : "010", - "name" : "010", - "data" : [ - [ - "Perl", - 32 - ], - [ - "Raku", - 17 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "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", - 23 - ], - [ - "Blog", - 13 - ] - ], - "name" : "013" - }, - { - "id" : "014", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 15 - ] - ], - "name" : "014" - }, - { - "name" : "015", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ], - "id" : "015" - }, - { - "name" : "016", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 12 - ] - ], - "id" : "016" - }, - { - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 12 - ] - ], - "name" : "017", - "id" : "017" - }, - { - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 14 - ] - ], - "name" : "018", - "id" : "018" - }, - { - "name" : "019", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 13 - ] - ], - "id" : "019" - }, - { - "id" : "020", - "name" : "020", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 13 - ] - ] - }, - { - "id" : "021", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 10 - ] - ], - "name" : "021" - }, - { - "id" : "022", - "data" : [ - [ - "Perl", - 32 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 10 - ] - ], - "name" : "022" - }, - { - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 12 - ] - ], - "name" : "023", - "id" : "023" - }, - { - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 11 - ] - ], - "name" : "024", - "id" : "024" - }, - { - "id" : "025", - "data" : [ - [ - "Perl", - 26 - ], - [ - "Raku", - 17 - ], - [ - "Blog", - 12 - ] - ], - "name" : "025" - }, - { - "id" : "026", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 10 - ] - ], - "name" : "026" - }, - { - "name" : "027", - "data" : [ - [ - "Perl", - 29 - ], - [ - "Raku", - 20 - ], - [ - "Blog", - 9 - ] - ], - "id" : "027" - }, - { - "name" : "028", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 9 - ] - ], - "id" : "028" - }, - { - "id" : "029", - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 12 - ] - ], - "name" : "029" - }, - { - "data" : [ - [ - "Perl", - 74 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 10 - ] - ], - "name" : "030", - "id" : "030" - }, - { - "id" : "031", - "name" : "031", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 10 - ] - ], - "name" : "032", - "id" : "032" - }, - { - "id" : "033", - "name" : "033", - "data" : [ - [ - "Perl", - 62 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "name" : "034", - "data" : [ - [ - "Perl", - 30 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 11 - ] - ], - "id" : "034" - }, - { - "id" : "035", - "name" : "035", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 20 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "id" : "036", - "name" : "036", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 20 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 34 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ], - "name" : "037", - "id" : "037" - }, - { - "id" : "038", - "name" : "038", - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 29 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 12 - ] - ], - "name" : "039", - "id" : "039" - }, - { - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 10 - ] - ], - "name" : "040", - "id" : "040" - }, - { - "id" : "041", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "name" : "041" - }, - { - "name" : "042", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 11 - ] - ], - "id" : "042" - }, - { - "name" : "043", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 11 - ] - ], - "id" : "043" - }, - { - "name" : "044", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 11 - ] - ], - "id" : "044" - }, - { - "id" : "045", - "name" : "045", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "name" : "046", - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 10 - ] - ], - "id" : "046" - }, - { - "id" : "047", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 10 - ] - ], - "name" : "047" - }, - { - "id" : "048", - "name" : "048", - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "id" : "049", - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 12 - ] - ], - "name" : "049" - }, - { - "name" : "050", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 12 - ] - ], - "id" : "050" - }, - { - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 11 - ] - ], - "name" : "051", - "id" : "051" - }, - { - "id" : "052", - "name" : "052", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "id" : "053", - "name" : "053", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 39 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "name" : "054", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 40 - ], - [ - "Blog", - 18 - ] - ], - "id" : "054" - }, - { - "id" : "055", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 14 - ] - ], - "name" : "055" - }, - { - "id" : "056", - "name" : "056", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "id" : "057", - "name" : "057", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 13 - ] - ], - "name" : "058", - "id" : "058" - }, - { - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 16 - ] - ], - "name" : "059", - "id" : "059" - }, - { - "id" : "060", - "name" : "060", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 14 - ] - ], - "name" : "061", - "id" : "061" - }, - { - "id" : "062", - "name" : "062", - "data" : [ - [ - "Perl", - 26 - ], - [ - "Raku", - 17 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "name" : "063", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 13 - ] - ], - "id" : "063" - }, - { - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 16 - ] - ], - "name" : "064", - "id" : "064" - }, - { - "name" : "065", - "data" : [ - [ - "Perl", - 32 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 15 - ] - ], - "id" : "065" - }, - { - "name" : "066", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ], - "id" : "066" - }, - { - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 18 - ] - ], - "name" : "067", - "id" : "067" - }, - { - "id" : "068", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 13 - ] - ], - "name" : "068" - }, - { - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 16 - ] - ], - "name" : "069", - "id" : "069" - }, - { - "name" : "070", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 17 - ] - ], - "id" : "070" - }, - { - "name" : "071", - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 15 - ] - ], - "id" : "071" - }, - { - "id" : "072", - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 42 - ], - [ - "Blog", - 19 - ] - ], - "name" : "072" - }, - { - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 40 - ], - [ - "Blog", - 17 - ] - ], - "name" : "073", - "id" : "073" - }, - { - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 39 - ], - [ - "Blog", - 20 - ] - ], - "name" : "074", - "id" : "074" - }, - { - "id" : "075", - "data" : [ - [ - "Perl", - 55 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 20 - ] - ], - "name" : "075" - }, - { - "name" : "076", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 16 - ] - ], - "id" : "076" - }, - { - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 14 - ] - ], - "name" : "077", - "id" : "077" - }, - { - "name" : "078", - "data" : [ - [ - "Perl", - 66 - ], - [ - "Raku", - 41 - ], - [ - "Blog", - 18 - ] - ], - "id" : "078" - }, - { - "name" : "079", - "data" : [ - [ - "Perl", - 66 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 17 - ] - ], - "id" : "079" - }, - { - "name" : "080", - "data" : [ - [ - "Perl", - 73 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 16 - ] - ], - "id" : "080" - }, - { - "id" : "081", - "data" : [ - [ - "Perl", - 63 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 15 - ] - ], - "name" : "081" - }, - { - "id" : "082", - "data" : [ - [ - "Perl", - 60 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 17 - ] - ], - "name" : "082" - }, - { - "id" : "083", - "name" : "083", - "data" : [ - [ - "Perl", - 71 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 69 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 12 - ] - ], - "name" : "084", - "id" : "084" - }, - { - "data" : [ - [ - "Perl", - 62 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 18 - ] - ], - "name" : "085", - "id" : "085" - }, - { - "data" : [ - [ - "Perl", - 54 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 15 - ] - ], - "name" : "086", - "id" : "086" - }, - { - "name" : "087", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ], - "id" : "087" - }, - { - "id" : "088", - "data" : [ - [ - "Perl", - 16 - ], - [ - "Raku", - 13 - ], - [ - "Blog", - 2 - ] - ], - "name" : "088" - } - ] - }, - "xAxis" : { - "type" : "category" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" + "yAxis" : { + "title" : { + "text" : "Total Solutions" } }, "series" : [ { - "colorByPoint" : "true", "name" : "Perl Weekly Challenge Languages", + "colorByPoint" : "true", "data" : [ { + "name" : "#001", "drilldown" : "001", - "y" : 145, - "name" : "#001" + "y" : 145 }, { - "drilldown" : "002", + "y" : 114, "name" : "#002", - "y" : 114 + "drilldown" : "002" }, { - "drilldown" : "003", + "y" : 71, "name" : "#003", - "y" : 71 + "drilldown" : "003" }, { "drilldown" : "004", - "y" : 91, - "name" : "#004" + "name" : "#004", + "y" : 91 }, { + "drilldown" : "005", "name" : "#005", - "y" : 72, - "drilldown" : "005" + "y" : 72 }, { - "drilldown" : "006", "name" : "#006", + "drilldown" : "006", "y" : 52 }, { - "name" : "#007", "y" : 59, - "drilldown" : "007" + "drilldown" : "007", + "name" : "#007" }, { "drilldown" : "008", @@ -1668,83 +54,83 @@ }, { "name" : "#009", - "y" : 70, - "drilldown" : "009" + "drilldown" : "009", + "y" : 70 }, { - "y" : 60, + "drilldown" : "010", "name" : "#010", - "drilldown" : "010" + "y" : 60 }, { + "y" : 79, "drilldown" : "011", - "name" : "#011", - "y" : 79 + "name" : "#011" }, { - "drilldown" : "012", "y" : 83, - "name" : "#012" + "name" : "#012", + "drilldown" : "012" }, { - "drilldown" : "013", "name" : "#013", + "drilldown" : "013", "y" : 78 }, { - "name" : "#014", "y" : 96, - "drilldown" : "014" + "drilldown" : "014", + "name" : "#014" }, { - "drilldown" : "015", "y" : 93, - "name" : "#015" + "name" : "#015", + "drilldown" : "015" }, { + "name" : "#016", "drilldown" : "016", - "y" : 66, - "name" : "#016" + "y" : 66 }, { - "drilldown" : "017", + "y" : 79, "name" : "#017", - "y" : 79 + "drilldown" : "017" }, { "name" : "#018", - "y" : 76, - "drilldown" : "018" + "drilldown" : "018", + "y" : 76 }, { - "drilldown" : "019", "y" : 97, + "drilldown" : "019", "name" : "#019" }, { - "drilldown" : "020", "y" : 95, + "drilldown" : "020", "name" : "#020" }, { - "drilldown" : "021", + "y" : 67, "name" : "#021", - "y" : 67 + "drilldown" : "021" }, { - "drilldown" : "022", "y" : 63, + "drilldown" : "022", "name" : "#022" }, { - "drilldown" : "023", "name" : "#023", + "drilldown" : "023", "y" : 91 }, { - "drilldown" : "024", + "y" : 70, "name" : "#024", - "y" : 70 + "drilldown" : "024" }, { "drilldown" : "025", @@ -1753,67 +139,67 @@ }, { "name" : "#026", - "y" : 70, - "drilldown" : "026" + "drilldown" : "026", + "y" : 70 }, { "drilldown" : "027", - "y" : 58, - "name" : "#027" + "name" : "#027", + "y" : 58 }, { - "drilldown" : "028", "y" : 78, + "drilldown" : "028", "name" : "#028" }, { - "drilldown" : "029", "y" : 77, + "drilldown" : "029", "name" : "#029" }, { + "name" : "#030", "drilldown" : "030", - "y" : 115, - "name" : "#030" + "y" : 115 }, { - "name" : "#031", "y" : 89, - "drilldown" : "031" + "drilldown" : "031", + "name" : "#031" }, { "drilldown" : "032", - "y" : 94, - "name" : "#032" + "name" : "#032", + "y" : 94 }, { "drilldown" : "033", - "y" : 108, - "name" : "#033" + "name" : "#033", + "y" : 108 }, { + "y" : 62, "drilldown" : "034", - "name" : "#034", - "y" : 62 + "name" : "#034" }, { - "drilldown" : "035", + "y" : 62, "name" : "#035", - "y" : 62 + "drilldown" : "035" }, { - "drilldown" : "036", "y" : 66, - "name" : "#036" + "name" : "#036", + "drilldown" : "036" }, { - "name" : "#037", "y" : 65, + "name" : "#037", "drilldown" : "037" }, { - "drilldown" : "038", "name" : "#038", + "drilldown" : "038", "y" : 65 }, { @@ -1822,33 +208,33 @@ "drilldown" : "039" }, { - "drilldown" : "040", "y" : 73, + "drilldown" : "040", "name" : "#040" }, { + "name" : "#041", "drilldown" : "041", - "y" : 76, - "name" : "#041" + "y" : 76 }, { + "y" : 90, "drilldown" : "042", - "name" : "#042", - "y" : 90 + "name" : "#042" }, { - "drilldown" : "043", "y" : 66, + "drilldown" : "043", "name" : "#043" }, { + "y" : 82, "drilldown" : "044", - "name" : "#044", - "y" : 82 + "name" : "#044" }, { - "name" : "#045", "y" : 94, + "name" : "#045", "drilldown" : "045" }, { @@ -1857,23 +243,23 @@ "drilldown" : "046" }, { - "drilldown" : "047", "y" : 82, + "drilldown" : "047", "name" : "#047" }, { + "drilldown" : "048", "name" : "#048", - "y" : 108, - "drilldown" : "048" + "y" : 108 }, { - "drilldown" : "049", "y" : 85, + "drilldown" : "049", "name" : "#049" }, { - "drilldown" : "050", "y" : 96, + "drilldown" : "050", "name" : "#050" }, { @@ -1882,69 +268,69 @@ "y" : 87 }, { - "drilldown" : "052", "y" : 89, - "name" : "#052" + "name" : "#052", + "drilldown" : "052" }, { "drilldown" : "053", - "y" : 99, - "name" : "#053" + "name" : "#053", + "y" : 99 }, { - "drilldown" : "054", + "y" : 103, "name" : "#054", - "y" : 103 + "drilldown" : "054" }, { + "name" : "#055", "drilldown" : "055", - "y" : 88, - "name" : "#055" + "y" : 88 }, { - "name" : "#056", "y" : 95, - "drilldown" : "056" + "drilldown" : "056", + "name" : "#056" }, { + "drilldown" : "057", "name" : "#057", - "y" : 80, - "drilldown" : "057" + "y" : 80 }, { + "drilldown" : "058", "name" : "#058", - "y" : 69, - "drilldown" : "058" + "y" : 69 }, { - "name" : "#059", "y" : 89, - "drilldown" : "059" + "drilldown" : "059", + "name" : "#059" }, { "name" : "#060", - "y" : 85, - "drilldown" : "060" + "drilldown" : "060", + "y" : 85 }, { "name" : "#061", - "y" : 81, - "drilldown" : "061" + "drilldown" : "061", + "y" : 81 }, { - "y" : 54, "name" : "#062", - "drilldown" : "062" + "drilldown" : "062", + "y" : 54 }, { - "drilldown" : "063", "y" : 89, - "name" : "#063" + "name" : "#063", + "drilldown" : "063" }, { - "y" : 80, + "drilldown" : "064", "name" : "#064", - "drilldown" : "064" + "y" : 80 }, { "y" : 71, @@ -1952,19 +338,19 @@ "drilldown" : "065" }, { + "y" : 84, "drilldown" : "066", - "name" : "#066", - "y" : 84 + "name" : "#066" }, { + "y" : 90, "drilldown" : "067", - "name" : "#067",