From fc270b51265576837e204e0f05de7a644aa23243 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Tue, 15 Mar 2022 23:30:41 +0000 Subject: - Added solutions by Robert DiCicco. --- challenge-156/robert-dicicco/perl/ch-1.pl | 67 + challenge-156/robert-dicicco/perl/ch-2.pl | 77 + challenge-156/robert-dicicco/raku/ch-1.raku | 35 + challenge-156/robert-dicicco/raku/ch-2.raku | 45 + challenge-156/robert-dicicco/ruby/ch-1.rb | 27 + challenge-156/robert-dicicco/ruby/ch-2.rb | 39 + challenge-156/robert-dicicco/tcl/ch-2.tcl | 64 + stats/pwc-current.json | 141 +- stats/pwc-language-breakdown-summary.json | 68 +- stats/pwc-language-breakdown.json | 6188 +++++++++++++-------------- stats/pwc-leaders.json | 348 +- stats/pwc-summary-1-30.json | 112 +- stats/pwc-summary-121-150.json | 116 +- stats/pwc-summary-151-180.json | 38 +- stats/pwc-summary-181-210.json | 46 +- stats/pwc-summary-211-240.json | 108 +- stats/pwc-summary-241-270.json | 24 +- stats/pwc-summary-31-60.json | 102 +- stats/pwc-summary-61-90.json | 28 +- stats/pwc-summary-91-120.json | 118 +- stats/pwc-summary.json | 22 +- 21 files changed, 4093 insertions(+), 3720 deletions(-) create mode 100644 challenge-156/robert-dicicco/perl/ch-1.pl create mode 100644 challenge-156/robert-dicicco/perl/ch-2.pl create mode 100644 challenge-156/robert-dicicco/raku/ch-1.raku create mode 100644 challenge-156/robert-dicicco/raku/ch-2.raku create mode 100644 challenge-156/robert-dicicco/ruby/ch-1.rb create mode 100644 challenge-156/robert-dicicco/ruby/ch-2.rb create mode 100644 challenge-156/robert-dicicco/tcl/ch-2.tcl diff --git a/challenge-156/robert-dicicco/perl/ch-1.pl b/challenge-156/robert-dicicco/perl/ch-1.pl new file mode 100644 index 0000000000..6e8dd319a7 --- /dev/null +++ b/challenge-156/robert-dicicco/perl/ch-1.pl @@ -0,0 +1,67 @@ +#!perl.exe +use strict; +use warnings; +use ntheory qw/is_prime/; +use feature qw/say/; + +sub sum_of_digits { + my $binval = shift; + my $digsum = 0; + my @digarr = split(//,$binval); + foreach( @digarr ) { + $digsum += $_; + } + if (is_prime($digsum)) { + return $digsum; + } else { + return -1; + } +} + +my $TARGET = 10; +my $i = 1; +my $cnt = 0; +my @outarr; + +while ( $cnt < $TARGET ) { + my $binval = sprintf("%06B", $i); + my ($dsum) = sum_of_digits($binval); + if ($dsum > 0 ) { + push(@outarr, $i); + $cnt++; + } + $i++; +} +say "@outarr "; + +=pod + +=head1 NAME + +Challenge 156 Pernicious Numbers ( Perl ) + +=head1 AUTHOR + +Robert DiCicco + +=head1 DATE + +14-MAR-2022 + +=head1 DESCRIPTION + +Write a script to permute first 10 Pernicious Numbers. + +A pernicious number is a positive integer which has prime number + +of ones in its binary representation. + +The first pernicious number is 3 since binary representation of + +3 = (11) and 1 + 1 = 2, which is a prime. + +Expected Output + +3, 5, 6, 7, 9, 10, 11, 12, 13, 14 + +=cut diff --git a/challenge-156/robert-dicicco/perl/ch-2.pl b/challenge-156/robert-dicicco/perl/ch-2.pl new file mode 100644 index 0000000000..b07bf621a1 --- /dev/null +++ b/challenge-156/robert-dicicco/perl/ch-2.pl @@ -0,0 +1,77 @@ +#!perl.exe +use strict; +use warnings; +use feature qw/say/; +use ntheory qw/divisors/; +use Set::Scalar; + +sub digitsum { + my $arr = shift; + my $num = shift; + my $sum = 0; + foreach my $x (@$arr) { + $sum += $x; + } + if ($sum == $num) { + say "Subset: @$arr "; + say "Input: n = $num"; + say "Output: 0"; + say " "; + exit; + } + return 1; +} + +my $num = $ARGV[0]; + +my @divs = divisors($num); + +pop(@divs); + +my $set1 = Set::Scalar->new(@divs); + +my $iter = Set::Scalar->power_set_iterator($set1); +my @m; + +say "Divisors: @divs "; +do { + @m = $iter->(); + my $retval = digitsum(\@m, $num); +} while (@m); + +say "No subset sums to $num"; + +########################################################################### + +=pod + +=head1 NAME + +Challenge 156 Weird Numbers + +=head1 Author + +Robert DiCicco + +=head1 DATE + +14-MAR-2022 + +=head1 DESCRIPTION + +You are given number, $n > 0. + +Write a script to find out if the given number is a Weird Number. + +According to Wikipedia, it is defined as: + +The sum of the proper divisors (divisors including 1 but not itself) of the number is greater than the number, but no subset of those divisors sums to the number itself. + +Example 1: + +Input: $n = 12 +Output: 0 + +Since the proper divisors of 12 are 1, 2, 3, 4, and 6, which sum to 16; but 2 + 4 + 6 = 12. + +=cut diff --git a/challenge-156/robert-dicicco/raku/ch-1.raku b/challenge-156/robert-dicicco/raku/ch-1.raku new file mode 100644 index 0000000000..bf08e148c0 --- /dev/null +++ b/challenge-156/robert-dicicco/raku/ch-1.raku @@ -0,0 +1,35 @@ +use v6; + +# AUTHOR: Robert DiCicco +# DATE: 15-MAR-2022 +# Challenge 156 Pernicious Numbers ( Raku ) + +sub sum_of_digits ( $binval ) { + my $digsum = 0; + for ($binval.comb) { + $digsum += $_; + } + + is-prime($digsum) ?? return $digsum !! return -1; +} + +sub MAIN () { + my $TARGET = 10; + my $i = 1; + my $cnt = 0; + my @outarr; + + while $cnt < $TARGET { + my $binval = sprintf("%06B", $i); + my $dsum = sum_of_digits($binval); + + if ($dsum > 0 ) { + @outarr.push($i); + $cnt++; + } + + $i++; + } + + say @outarr; +} diff --git a/challenge-156/robert-dicicco/raku/ch-2.raku b/challenge-156/robert-dicicco/raku/ch-2.raku new file mode 100644 index 0000000000..b64d423f14 --- /dev/null +++ b/challenge-156/robert-dicicco/raku/ch-2.raku @@ -0,0 +1,45 @@ +use v6; + +use Prime::Factor; + +# Author: Robert DiCicco +# Date15-MAR-2022 +# Challenge 156 Weird Numbers ( Raku ) + +sub digitsum ( @arr ) { # sum the elements of an array + my $sum = 0; + for @arr { + $sum += $_; + } + + return $sum +} + +sub MAIN(Int $num) { + my @divs = divisors $num; # get divisors for the given number + @divs.pop; # get rid of the last element + + say "Divisors: " ~ @divs; + my @dc = @divs.combinations; # get all multi-length combinations of divisors + my $flag = 0; + + for @dc -> @partial { + my $sum = digitsum(@partial); # send it to be summed + + if ($sum == $num) { # print this stuff if the combination = to requested number + say "Subset: " ~ @partial; + say "Input: n = $num"; + say "Output: 0"; + say " "; + + $flag++; + last; + } + } + + if $flag == 0 { # print this stuff if no combination = to requested number + say "Input: n = $num"; + say "Output: 1"; + say "No subset sums to $num"; + } +} diff --git a/challenge-156/robert-dicicco/ruby/ch-1.rb b/challenge-156/robert-dicicco/ruby/ch-1.rb new file mode 100644 index 0000000000..2658aa3c34 --- /dev/null +++ b/challenge-156/robert-dicicco/ruby/ch-1.rb @@ -0,0 +1,27 @@ +#!ruby.exe +require 'prime' + +# AUTHOR: Robert DiCicco +# DATE: 14-MAR-2022 +# Challenge Pernicious Numbers 156 ( Ruby ) + +def SingleSumOfDigits (num) + digsum = num.digits.sum + return digsum.to_i +end + +outarr = [] # array to collect found numbers + +x = 1 # starting point +cnt = 0 # counter for found numbers +while cnt < 10 do # looking for 10 numbers + binval = "%06b" % x # binary set to 6 digits wide + retval = SingleSumOfDigits(binval.to_i); # sum of digits would be the count of ones + if Prime.prime?(retval) # if prime, push to the collector array + outarr.push(x) + cnt += 1 # bump the counter + end + x += 1 # and check next number +end + +p outarr # print the array diff --git a/challenge-156/robert-dicicco/ruby/ch-2.rb b/challenge-156/robert-dicicco/ruby/ch-2.rb new file mode 100644 index 0000000000..1e23859dd1 --- /dev/null +++ b/challenge-156/robert-dicicco/ruby/ch-2.rb @@ -0,0 +1,39 @@ +#!ruby.exe + +# AUTHOR: Robert DiCicco +# DATE: 14-MAR-2022 +# Challenge 156 Weird Numbers ( Ruby ) + +def divisors(n) + divisors = (1...n).select{|numbers| n%numbers == 0} + divisors.length == 0 ? "#{n} is prime" : divisors +end + +num = ARGV[0].to_i + +puts "Input: #{num}" +tmparr = divisors(num) + +puts "Divisors: #{tmparr}" + +sum = 0 + +(2..(tmparr.length - 1)).each { |i| + arr = tmparr.permutation(i).to_a + arr.each { |n| + n.each { |s| + sum += s + } + + if sum == num + puts "Subset: #{n} sum = #{sum}" + puts "Output: 0" + exit + end + + sum = 0 + } +} + +puts "No subset sums to #{num}" +puts "Output: 1" diff --git a/challenge-156/robert-dicicco/tcl/ch-2.tcl b/challenge-156/robert-dicicco/tcl/ch-2.tcl new file mode 100644 index 0000000000..81a8c83104 --- /dev/null +++ b/challenge-156/robert-dicicco/tcl/ch-2.tcl @@ -0,0 +1,64 @@ +# AUTHOR: Robert DiCicco +# DATE: 15-MAR-2022 +# Challenge 156 Weird Numbers ( Tcl ) + +package require math::numtheory + +proc combinations { list size } { ;# generate all combinations for supplied list of divisors + + if { $size == 0 } { + return [list [list]] + } + + set retval {} + + for { set i 0 } { ($i + $size) <= [llength $list] } { incr i } { + set firstElement [lindex $list $i] + set remainingElements [lrange $list [expr { $i + 1 }] end] + + foreach subset [combinations $remainingElements [expr { $size - 1 }]] { + lappend retval [linsert $subset 0 $firstElement] + } + } + + return $retval +} + +proc ladd l { ;# return sum of divisor subset + + if {![llength $l]} {return 0} + return [expr [join $l +]] + +} + +set mynum [ lindex $argv 0 ] ;# get number from the comman line +set flist [ math::numtheory::factors $mynum ] ;# get list of divisors + +set len [llength $flist] +set len [ expr { $len - 1 } ] + +set mylist [lreplace $flist $len $len] ;# drop the largest divisor + +# step through all combinations of divisors and check sums + +for { set cnt 2 } { $cnt < [llength $mylist] } { incr cnt } { + + set myval [combinations $mylist $cnt] + + foreach x $myval { + set digsum [ ladd $x ] + + if { $digsum == $mynum } { ;# found a subset with matching sum + puts "Divisors: $mylist" + puts "Subset: $x" + puts "Input: n = $mynum" + puts "Output: 0" + + exit + } + } +} + +puts "Divisors: $mylist" ;# else, drop through, not found +puts "Output: 1" +puts "No subset sums to $mynum" diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 313f4e563d..072152d4bc 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,47 +1,6 @@ { - "title" : { - "text" : "The Weekly Challenge - 156" - }, - "series" : [ - { - "colorByPoint" : 1, - "data" : [ - { - "drilldown" : "Dave Jacoby", - "y" : 3, - "name" : "Dave Jacoby" - }, - { - "drilldown" : "James Smith", - "y" : 3, - "name" : "James Smith" - }, - { - "name" : "Mark Anderson", - "y" : 2, - "drilldown" : "Mark Anderson" - }, - { - "name" : "PokGoPun", - "y" : 2, - "drilldown" : "PokGoPun" - }, - { - "name" : "Roger Bell_West", - "y" : 4, - "drilldown" : "Roger Bell_West" - }, - { - "y" : 3, - "drilldown" : "W. Luis Mochan", - "name" : "W. Luis Mochan" - } - ], - "name" : "The Weekly Challenge - 156" - } - ], - "chart" : { - "type" : "column" + "xAxis" : { + "type" : "category" }, "plotOptions" : { "series" : { @@ -52,13 +11,13 @@ "borderWidth" : 0 } }, - "legend" : { - "enabled" : 0 + "chart" : { + "type" : "column" }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } + "tooltip" : { + "headerFormat" : "{series.name}
", + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
" }, "drilldown" : { "series" : [ @@ -87,8 +46,8 @@ 1 ] ], - "name" : "James Smith", - "id" : "James Smith" + "id" : "James Smith", + "name" : "James Smith" }, { "id" : "Mark Anderson", @@ -101,16 +60,17 @@ "name" : "Mark Anderson" }, { - "id" : "PokGoPun", "name" : "PokGoPun", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "PokGoPun" }, { + "name" : "Robert DiCicco", "data" : [ [ "Perl", @@ -121,8 +81,21 @@ 2 ] ], + "id" : "Robert DiCicco" + }, + { "name" : "Roger Bell_West", - "id" : "Roger Bell_West" + "id" : "Roger Bell_West", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ] + ] }, { "name" : "W. Luis Mochan", @@ -141,14 +114,60 @@ ] }, "subtitle" : { - "text" : "[Champions: 6] Last updated at 2022-03-15 23:12:36 GMT" + "text" : "[Champions: 7] Last updated at 2022-03-15 23:28:52 GMT" }, - "xAxis" : { - "type" : "category" + "series" : [ + { + "name" : "The Weekly Challenge - 156", + "colorByPoint" : 1, + "data" : [ + { + "y" : 3, + "drilldown" : "Dave Jacoby", + "name" : "Dave Jacoby" + }, + { + "y" : 3, + "drilldown" : "James Smith", + "name" : "James Smith" + }, + { + "name" : "Mark Anderson", + "drilldown" : "Mark Anderson", + "y" : 2 + }, + { + "name" : "PokGoPun", + "drilldown" : "PokGoPun", + "y" : 2 + }, + { + "drilldown" : "Robert DiCicco", + "name" : "Robert DiCicco", + "y" : 4 + }, + { + "y" : 4, + "name" : "Roger Bell_West", + "drilldown" : "Roger Bell_West" + }, + { + "y" : 3, + "drilldown" : "W. Luis Mochan", + "name" : "W. Luis Mochan" + } + ] + } + ], + "title" : { + "text" : "The Weekly Challenge - 156" }, - "tooltip" : { - "headerFormat" : "{series.name}
", - "followPointer" : 1, - "pointFormat" : "{point.name}: {point.y:f}
" + "legend" : { + "enabled" : 0 + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 6787bd48dc..240578e96d 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,34 +1,6 @@ { - "legend" : { - "enabled" : "false" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : null - } - }, - "chart" : { - "type" : "column" - }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - }, "series" : [ { - "dataLabels" : { - "y" : 10, - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - }, - "rotation" : -90, - "enabled" : "true", - "color" : "#FFFFFF", - "align" : "right", - "format" : "{point.y:.0f}" - }, - "name" : "Contributions", "data" : [ [ "Blog", @@ -36,28 +8,56 @@ ], [ "Perl", - 7482 + 7484 ], [ "Raku", - 4495 + 4497 ] - ] + ], + "dataLabels" : { + "y" : 10, + "rotation" : -90, + "enabled" : "true", + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + }, + "color" : "#FFFFFF", + "format" : "{point.y:.0f}", + "align" : "right" + }, + "name" : "Contributions" } ], "subtitle" : { - "text" : "Last updated at 2022-03-15 23:12:36 GMT" + "text" : "Last updated at 2022-03-15 23:28:52 GMT" }, "title" : { "text" : "The Weekly Challenge Contributions [2019 - 2022]" }, + "legend" : { + "enabled" : "false" + }, + "yAxis" : { + "title" : { + "text" : null + }, + "min" : 0 + }, + "chart" : { + "type" : "column" + }, "xAxis" : { + "type" : "category", "labels" : { "style" : { "fontSize" : "13px", "fontFamily" : "Verdana, sans-serif" } - }, - "type" : "category" + } + }, + "tooltip" : { + "pointFormat" : "{point.y:.0f}" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index b474591a01..ba83e70aee 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,2885 +1,41 @@ { - "tooltip" : { - "followPointer" : "true", - "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "headerFormat" : "" - }, - "xAxis" : { - "type" : "category" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2022-03-15 23:12:36 GMT" - }, - "drilldown" : { - "series" : [ - { - "name" : "001", - "data" : [ - [ - "Perl", - 103 - ], - [ - "Raku", - 47 - ], - [ - "Blog", - 11 - ] - ], - "id" : "001" - }, - { - "id" : "002", - "data" : [ - [ - "Perl", - 79 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 10 - ] - ], - "name" : "002" - }, - { - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "name" : "003", - "id" : "003" - }, - { - "name" : "004", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ], - "id" : "004" - }, - { - "id" : "005", - "name" : "005", - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "name" : "006", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 18 - ], - [ - "Blog", - 7 - ] - ], - "id" : "006" - }, - { - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 10 - ] - ], - "name" : "007", - "id" : "007" - }, - { - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 12 - ] - ], - "name" : "008", - "id" : "008" - }, - { - "id" : "009", - "name" : "009", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 13 - ] - ] - }, - { - "id" : "010", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 11 - ] - ], - "name" : "010" - }, - { - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 10 - ] - ], - "name" : "011", - "id" : "011" - }, - { - "id" : "012", - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 11 - ] - ], - "name" : "012" - }, - { - "name" : "013", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 13 - ] - ], - "id" : "013" - }, - { - "data" : [ - [ - "Perl", - 55 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 15 - ] - ], - "name" : "014", - "id" : "014" - }, - { - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 15 - ] - ], - "name" : "015", - "id" : "015" - }, - { - "name" : "016", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 12 - ] - ], - "id" : "016" - }, - { - "id" : "017", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ], - "name" : "017" - }, - { - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ], - "name" : "018", - "id" : "018" - }, - { - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 13 - ] - ], - "name" : "019", - "id" : "019" - }, - { - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 13 - ] - ], - "name" : "020", - "id" : "020" - }, - { - "name" : "021", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 10 - ] - ], - "id" : "021" - }, - { - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 10 - ] - ], - "name" : "022", - "id" : "022" - }, - { - "name" : "023", - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 12 - ] - ], - "id" : "023" - }, - { - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 11 - ] - ], - "name" : "024", - "id" : "024" - }, - { - "name" : "025", - "data" : [ - [ - "Perl", - 28 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 12 - ] - ], - "id" : "025" - }, - { - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 10 - ] - ], - "name" : "026", - "id" : "026" - }, - { - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ], - "name" : "027", - "id" : "027" - }, - { - "id" : "028", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 9 - ] - ], - "name" : "028" - }, - { - "id" : "029", - "name" : "029", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "id" : "030", - "data" : [ - [ - "Perl", - 76 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ], - "name" : "030" - }, - { - "name" : "031", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "id" : "031" - }, - { - "id" : "032", - "name" : "032", - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "name" : "033", - "data" : [ - [ - "Perl", - 64 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 10 - ] - ], - "id" : "033" - }, - { - "id" : "034", - "data" : [ - [ - "Perl", - 32 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 11 - ] - ], - "name" : "034" - }, - { - "id" : "035", - "name" : "035", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "name" : "036", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 11 - ] - ], - "id" : "036" - }, - { - "id" : "037", - "data" : [ - [ - "Perl", - 34 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 9 - ] - ], - "name" : "037" - }, - { - "id" : "038", - "data" : [ - [ - "Perl", - 32 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 12 - ] - ], - "name" : "038" - }, - { - "name" : "039", - "data" : [ - [ - "Perl", - 29 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 12 - ] - ], - "id" : "039" - }, - { - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 10 - ] - ], - "name" : "040", - "id" : "040" - }, - { - "id" : "041", - "name" : "041", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "id" : "042", - "name" : "042", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 11 - ] - ], - "name" : "043", - "id" : "043" - }, - { - "id" : "044", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 11 - ] - ], - "name" : "044" - }, - { - "id" : "045", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 11 - ] - ], - "name" : "045" - }, - { - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ], - "name" : "046", - "id" : "046" - }, - { - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 10 - ] - ], - "name" : "047", - "id" : "047" - }, - { - "name" : "048", - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 12 - ] - ], - "id" : "048" - }, - { - "id" : "049", - "name" : "049", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "id" : "050", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 12 - ] - ], - "name" : "050" - }, - { - "name" : "051", - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 11 - ] - ], - "id" : "051" - }, - { - "id" : "052", - "name" : "052", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "name" : "053", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 41 - ], - [ - "Blog", - 15 - ] - ], - "id" : "053" - }, - { - "id" : "054", - "name" : "054", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 40 - ], - [ - "Blog", - 18 - ] - ] - }, - { - "id" : "055", - "name" : "055", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "id" : "056", - "name" : "056", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "name" : "057", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ], - "id" : "057" - }, - { - "name" : "058", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 13 - ] - ], - "id" : "058" - }, - { - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 16 - ] - ], - "name" : "059", - "id" : "059" - }, - { - "id" : "060", - "name" : "060", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "id" : "061", - "name" : "061", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 28 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 11 - ] - ], - "name" : "062", - "id" : "062" - }, - { - "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", - 26 - ], - [ - "Blog", - 15 - ] - ], - "id" : "065" - }, - { - "name" : "066", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ], - "id" : "066" - }, - { - "name" : "067", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 18 - ] - ], - "id" : "067" - }, - { - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 13 - ] - ], - "name" : "068", - "id" : "068" - }, - { - "id" : "069", - "name" : "069", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "name" : "070", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 17 - ] - ], - "id" : "070" - }, - { - "name" : "071", - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 15 - ] - ], - "id" : "071" - }, - { - "name" : "072", - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 42 - ], - [ - "Blog", - 19 - ] - ], - "id" : "072" - }, - { - "id" : "073", - "name" : "073", - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 40 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "id" : "074", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 39 - ], - [ - "Blog", - 20 - ] - ], - "name" : "074" - }, - { - "id" : "075", - "name" : "075", - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 20 - ] - ] - }, - { - "name" : "076", - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 16 - ] - ], - "id" : "076" - }, - { - "name" : "077", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 14 - ] - ], - "id" : "077" - }, - { - "id" : "078", - "data" : [ - [ - "Perl", - 68 - ], - [ - "Raku", - 41 - ], - [ - "Blog", - 18 - ] - ], - "name" : "078" - }, - { - "data" : [ - [ - "Perl", - 68 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 17 - ] - ], - "name" : "079", - "id" : "079" - }, - { - "id" : "080", - "data" : [ - [ - "Perl", - 75 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 16 - ] - ], - "name" : "080" - }, - { - "data" : [ - [ - "Perl", - 65 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 15 - ] - ], - "name" : "081", - "id" : "081" - }, - { - "data" : [ - [ - "Perl", - 62 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 17 - ] - ], - "name" : "082", - "id" : "082" - }, - { - "data" : [ - [ - "Perl", - 73 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 16 - ] - ], - "name" : "083", - "id" : "083" - }, - { - "id" : "084", - "data" : [ - [ - "Perl", - 71 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 12 - ] - ], - "name" : "084" - }, - { - "name" : "085", - "data" : [ - [ - "Perl", - 64 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 18 - ] - ], - "id" : "085" - }, - { - "name" : "086", - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 15 - ] - ], - "id" : "086" - }, - { - "id" : "087", - "name" : "087", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "id" : "088", - "data" : [ - [ - "Perl", - 65 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 20 - ] - ], - "name" : "088" - }, - { - "id" : "089", - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 20 - ] - ], - "name" : "089" - }, - { - "id" : "090", - "name" : "090", - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 39 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "id" : "091", - "name" : "091", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "name" : "092", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 16 - ] - ], - "id" : "092" - }, - { - "id" : "093", - "name" : "093", - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "id" : "094", - "name" : "094", - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "id" : "095", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 19 - ] - ], - "name" : "095" - }, - { - "name" : "096", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 19 - ] - ], - "id" : "096" - }, - { - "id" : "097", - "name" : "097", - "data" : [ - [ - "Perl", - 63 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 19 - ] - ] - }, - { - "name" : "098", - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 17 - ] - ], - "id" : "098" - }, - { - "id" : "099", - "name" : "099", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "id" : "100", - "name" : "100", - "data" : [ - [ - "Perl", - 69 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 21 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 13 - ] - ], - "name" : "101", - "id" : "101" - }, - { - "id" : "102", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 15 - ] - ], - "name" : "102" - }, - { - "name" : "103", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 15 - ] - ], - "id" : "103" - }, - { - "id" : "104", - "name" : "104", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "id" : "105", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 14 - ] - ], - "name" : "105" - }, - { - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 17 - ] - ], - "name" : "106", - "id" : "106" - }, - { - "name" : "107", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 19 - ] - ], - "id" : "107" - }, - { - "id" : "108", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 20 - ] - ], - "name" : "108" - }, - { - "id" : "109", - "name" : "109", - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 22 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 25 - ] - ], - "name" : "110", - "id" : "110" - }, - { - "id" : "111", - "name" : "111", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "id" : "112", - "name" : "112", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 19 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 19 - ] - ], - "name" : "113", - "id" : "113" - }, - { - "id" : "114", - "name" : "114", - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 21 - ] - ] - }, - { - "id" : "115", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 20 - ] - ], - "name" : "115" - }, - { - "id" : "116", - "name" : "116", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "id" : "117", - "name" : "117", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 19 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 17 - ] - ], - "name" : "118", - "id" : "118" - }, - { - "id" : "119", - "name" : "119", - "data" : [ - [ - "Perl", - 69 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 21 - ] - ] - }, - { - "name" : "120", - "data" : [ - [ - "Perl", - 65 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 21 - ] - ], - "id" : "120" - }, - { - "id" : "121", - "name" : "121", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "id" : "122", - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 20 - ] - ], - "name" : "122" - }, - { - "name" : "123", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 18 - ] - ], - "id" : "123" - }, - { - "name" : "124", - "data" : [ - [ - "Perl", - 44 - ],