From 7cb57822062b1ecfa1b0f4dac1c7d32537de1ba4 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Sun, 11 Feb 2024 17:18:22 +0000 Subject: - Added solutions by Wanderdoc. - Added solutions by Simon Green. - Added solutions by Athanasius. - Added blog post by Roger Bell_West. --- challenge-255/wanderdoc/perl/ch-1.pl | 44 + challenge-255/wanderdoc/perl/ch-2.pl | 41 + stats/pwc-current.json | 265 +- stats/pwc-language-breakdown-summary.json | 54 +- stats/pwc-language-breakdown.json | 10030 ++++++++++++++-------------- stats/pwc-leaders.json | 758 +-- stats/pwc-summary-1-30.json | 130 +- stats/pwc-summary-121-150.json | 40 +- stats/pwc-summary-151-180.json | 104 +- stats/pwc-summary-181-210.json | 116 +- stats/pwc-summary-211-240.json | 40 +- stats/pwc-summary-241-270.json | 112 +- stats/pwc-summary-271-300.json | 44 +- stats/pwc-summary-301-330.json | 42 +- stats/pwc-summary-31-60.json | 112 +- stats/pwc-summary-61-90.json | 40 +- stats/pwc-summary-91-120.json | 96 +- stats/pwc-summary.json | 670 +- 18 files changed, 6440 insertions(+), 6298 deletions(-) create mode 100755 challenge-255/wanderdoc/perl/ch-1.pl create mode 100755 challenge-255/wanderdoc/perl/ch-2.pl diff --git a/challenge-255/wanderdoc/perl/ch-1.pl b/challenge-255/wanderdoc/perl/ch-1.pl new file mode 100755 index 0000000000..7f488339b4 --- /dev/null +++ b/challenge-255/wanderdoc/perl/ch-1.pl @@ -0,0 +1,44 @@ +#!perl +use strict; +use warnings FATAL => qw(all); + +=prompt +You are given two strings, $s and $t. The string $t is generated using the shuffled characters of the string $s with an additional character. Write a script to find the additional character in the string $t.. +Example 1 Input: $s = "Perl" $t = "Preel" Output: "e" +Example 2 Input: $s = "Weekly" $t = "Weeakly" Output: "a" +Example 3 Input: $s = "Box" $t = "Boxy" Output: "y" +=cut + + + + +use Test2::V0; + + + +sub find_diff_char +{ + my ($first, $second) = @_; + if ( length($second) < length($first) ) + { + ($first, $second) = ($second, $first); + } + my (%first_chars, %second_chars); + %first_chars = map { $_, $first_chars{$_}++ } split(//, $first); + %second_chars = map { $_, $second_chars{$_}++ } split(//, $second); + my @output; + for my $chr ( keys %second_chars ) + { + no autovivification; + push @output, $chr and next unless exists $first_chars{$chr}; + push @output, $chr if ( $second_chars{$chr} > $first_chars{$chr} ); + } + return @output; +} + + + +is(find_diff_char('Perl', 'Preel'), @{["e"]}, 'Example 1'); +is(find_diff_char('Weekly', 'Weeakly'), @{["a"]}, 'Example 2'); +is(find_diff_char('Box', 'Boxy'), @{["y"]}, 'Example 3'); +done_testing(); diff --git a/challenge-255/wanderdoc/perl/ch-2.pl b/challenge-255/wanderdoc/perl/ch-2.pl new file mode 100755 index 0000000000..fc333d7bdf --- /dev/null +++ b/challenge-255/wanderdoc/perl/ch-2.pl @@ -0,0 +1,41 @@ +#!perl +use strict; +use warnings FATAL => qw(all); + +=prompt +You are given a paragraph $p and a banned word $w. Write a script to return the most frequent word that is not banned. + +Example 1 +Input: $p = "Joe hit a ball, the hit ball flew far after it was hit." + $w = "hit" +Output: "ball" +The banned word "hit" occurs 3 times. The other word "ball" occurs 2 times. + +Example 2 +Input: $p = "Perl and Raku belong to the same family. Perl is the most popular language in the weekly challenge." + $w = "the" +Output: "Perl" +The banned word "the" occurs 3 times. The other word "Perl" occurs 2 times. +=cut + +use Test2::V0; + +sub most_frequent_word +{ + my ($paragraph, $banned) = @_; + my @words = grep length, split(/[ ,.]/, $paragraph); + my (%freq, $count_banned); + for my $word ( @words ) + { + $word eq $banned ? $count_banned++ : $freq{$word}++; + } + @words = sort { $freq{$b} <=> $freq{$a} } keys %freq; # @words is changed herewith! + return [$words[0], $count_banned] ; +} + +is(most_frequent_word("Joe hit a ball, the hit ball flew far after it was hit.", "hit"), [qw(ball 3)], 'Example 1'); +is(most_frequent_word("Perl and Raku belong to the same family. Perl is the most popular language in the weekly challenge.", "the"), [qw(Perl 3)], 'Example 2'); +done_testing; + + + diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 491273b1d8..4eb9aa3f17 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,19 +1,31 @@ { + "chart" : { + "type" : "column" + }, + "tooltip" : { + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "{series.name}
" + }, + "xAxis" : { + "type" : "category" + }, + "legend" : { + "enabled" : 0 + }, "plotOptions" : { "series" : { "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 + "enabled" : 1, + "format" : "{point.y}" }, "borderWidth" : 0 } }, - "subtitle" : { - "text" : "[Champions: 27] Last updated at 2024-02-10 21:00:30 GMT" - }, "drilldown" : { "series" : [ { + "name" : "Ali Moradi", "id" : "Ali Moradi", "data" : [ [ @@ -24,8 +36,7 @@ "Blog", 1 ] - ], - "name" : "Ali Moradi" + ] }, { "id" : "Arne Sommer", @@ -41,6 +52,20 @@ ], "name" : "Arne Sommer" }, + { + "name" : "Athanasius", + "id" : "Athanasius", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ] + ] + }, { "name" : "Bob Lied", "data" : [ @@ -57,6 +82,7 @@ }, { "name" : "Dave Jacoby", + "id" : "Dave Jacoby", "data" : [ [ "Perl", @@ -66,8 +92,7 @@ "Blog", 1 ] - ], - "id" : "Dave Jacoby" + ] }, { "data" : [ @@ -76,8 +101,8 @@ 2 ] ], - "name" : "David Ferrone", - "id" : "David Ferrone" + "id" : "David Ferrone", + "name" : "David Ferrone" }, { "id" : "E. Choroba", @@ -90,6 +115,8 @@ "name" : "E. Choroba" }, { + "name" : "Jorg Sommrey", + "id" : "Jorg Sommrey", "data" : [ [ "Perl", @@ -99,21 +126,20 @@ "Blog", 1 ] - ], - "name" : "Jorg Sommrey", - "id" : "Jorg Sommrey" + ] }, { + "name" : "Kjetil Skotheim", "data" : [ [ "Perl", 2 ] ], - "name" : "Kjetil Skotheim", "id" : "Kjetil Skotheim" }, { + "name" : "Laurent Rosenfeld", "data" : [ [ "Perl", @@ -128,11 +154,11 @@ 2 ] ], - "name" : "Laurent Rosenfeld", "id" : "Laurent Rosenfeld" }, { "name" : "Lubos Kolouch", + "id" : "Lubos Kolouch", "data" : [ [ "Perl", @@ -142,11 +168,10 @@ "Raku", 2 ] - ], - "id" : "Lubos Kolouch" + ] }, { - "name" : "Luca Ferrari", + "id" : "Luca Ferrari", "data" : [ [ "Raku", @@ -157,21 +182,21 @@ 9 ] ], - "id" : "Luca Ferrari" + "name" : "Luca Ferrari" }, { - "name" : "Mariano Spadaccini", + "id" : "Mariano Spadaccini", "data" : [ [ "Perl", 2 ] ], - "id" : "Mariano Spadaccini" + "name" : "Mariano Spadaccini" }, { - "id" : "Mark Anderson", "name" : "Mark Anderson", + "id" : "Mark Anderson", "data" : [ [ "Raku", @@ -186,31 +211,30 @@ 2 ] ], - "name" : "Matthew Neleigh", - "id" : "Matthew Neleigh" + "id" : "Matthew Neleigh", + "name" : "Matthew Neleigh" }, { - "id" : "Nelo Tovar", + "name" : "Nelo Tovar", "data" : [ [ "Perl", 2 ] ], - "name" : "Nelo Tovar" + "id" : "Nelo Tovar" }, { "id" : "Niels van Dijke", - "name" : "Niels van Dijke", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Niels van Dijke" }, { - "id" : "Packy Anderson", "name" : "Packy Anderson", "data" : [ [ @@ -225,10 +249,10 @@ "Blog", 1 ] - ] + ], + "id" : "Packy Anderson" }, { - "name" : "Peter Campbell Smith", "data" : [ [ "Perl", @@ -239,17 +263,18 @@ 1 ] ], - "id" : "Peter Campbell Smith" + "id" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith" }, { + "name" : "Peter Meszaros", "id" : "Peter Meszaros", "data" : [ [ "Perl", 2 ] - ], - "name" : "Peter Meszaros" + ] }, { "id" : "Robbie Hatley", @@ -272,11 +297,10 @@ 2 ] ], - "name" : "Robert Ransbottom", - "id" : "Robert Ransbottom" + "id" : "Robert Ransbottom", + "name" : "Robert Ransbottom" }, { - "id" : "Roger Bell_West", "data" : [ [ "Perl", @@ -285,21 +309,41 @@ [ "Raku", 2 + ], + [ + "Blog", + 1 ] ], + "id" : "Roger Bell_West", "name" : "Roger Bell_West" }, { - "id" : "Simon Proctor", + "name" : "Simon Green", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Simon Green" + }, + { "data" : [ [ "Raku", 2 ] ], + "id" : "Simon Proctor", "name" : "Simon Proctor" }, { + "id" : "Stephen G. Lynn", "data" : [ [ "Perl", @@ -310,8 +354,7 @@ 1 ] ], - "name" : "Stephen G. Lynn", - "id" : "Stephen G. Lynn" + "name" : "Stephen G. Lynn" }, { "data" : [ @@ -324,11 +367,12 @@ 2 ] ], - "name" : "Thomas Kohler", - "id" : "Thomas Kohler" + "id" : "Thomas Kohler", + "name" : "Thomas Kohler" }, { "name" : "Ulrich Rieke", + "id" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -338,11 +382,9 @@ "Raku", 2 ] - ], - "id" : "Ulrich Rieke" + ] }, { - "id" : "W. Luis Mochan", "name" : "W. Luis Mochan", "data" : [ [ @@ -353,75 +395,82 @@ "Blog", 1 ] - ] + ], + "id" : "W. Luis Mochan" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Wanderdoc", + "name" : "Wanderdoc" } ] }, - "chart" : { - "type" : "column" - }, "title" : { "text" : "The Weekly Challenge - 255" }, - "tooltip" : { - "headerFormat" : "{series.name}
", - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1 - }, "series" : [ { - "colorByPoint" : 1, "name" : "The Weekly Challenge - 255", "data" : [ { + "name" : "Ali Moradi", "y" : 3, - "drilldown" : "Ali Moradi", - "name" : "Ali Moradi" + "drilldown" : "Ali Moradi" }, { - "drilldown" : "Arne Sommer", + "y" : 3, "name" : "Arne Sommer", - "y" : 3 + "drilldown" : "Arne Sommer" + }, + { + "drilldown" : "Athanasius", + "name" : "Athanasius", + "y" : 4 }, { - "y" : 3, "drilldown" : "Bob Lied", - "name" : "Bob Lied" + "name" : "Bob Lied", + "y" : 3 }, { "y" : 3, - "drilldown" : "Dave Jacoby", - "name" : "Dave Jacoby" + "name" : "Dave Jacoby", + "drilldown" : "Dave Jacoby" }, { + "y" : 2, "name" : "David Ferrone", - "drilldown" : "David Ferrone", - "y" : 2 + "drilldown" : "David Ferrone" }, { + "drilldown" : "E. Choroba", "y" : 2, - "name" : "E. Choroba", - "drilldown" : "E. Choroba" + "name" : "E. Choroba" }, { + "name" : "Jorg Sommrey", "y" : 3, - "drilldown" : "Jorg Sommrey", - "name" : "Jorg Sommrey" + "drilldown" : "Jorg Sommrey" }, { + "name" : "Kjetil Skotheim", "y" : 2, - "drilldown" : "Kjetil Skotheim", - "name" : "Kjetil Skotheim" + "drilldown" : "Kjetil Skotheim" }, { + "drilldown" : "Laurent Rosenfeld", "y" : 6, - "name" : "Laurent Rosenfeld", - "drilldown" : "Laurent Rosenfeld" + "name" : "Laurent Rosenfeld" }, { - "drilldown" : "Lubos Kolouch", "name" : "Lubos Kolouch", - "y" : 4 + "y" : 4, + "drilldown" : "Lubos Kolouch" }, { "drilldown" : "Luca Ferrari", @@ -429,13 +478,13 @@ "y" : 11 }, { - "drilldown" : "Mariano Spadaccini", + "y" : 2, "name" : "Mariano Spadaccini", - "y" : 2 + "drilldown" : "Mariano Spadaccini" }, { - "y" : 2, "drilldown" : "Mark Anderson", + "y" : 2, "name" : "Mark Anderson" }, { @@ -444,14 +493,14 @@ "y" : 2 }, { - "name" : "Nelo Tovar", "drilldown" : "Nelo Tovar", + "name" : "Nelo Tovar", "y" : 2 }, { "y" : 2, - "drilldown" : "Niels van Dijke", - "name" : "Niels van Dijke" + "name" : "Niels van Dijke", + "drilldown" : "Niels van Dijke" }, { "drilldown" : "Packy Anderson", @@ -464,51 +513,62 @@ "drilldown" : "Peter Campbell Smith" }, { - "name" : "Peter Meszaros", "drilldown" : "Peter Meszaros", - "y" : 2 + "y" : 2, + "name" : "Peter Meszaros" }, { - "y" : 3, "name" : "Robbie Hatley", + "y" : 3, "drilldown" : "Robbie Hatley" }, { "y" : 2, - "drilldown" : "Robert Ransbottom", - "name" : "Robert Ransbottom" + "name" : "Robert Ransbottom", + "drilldown" : "Robert Ransbottom" }, { - "y" : 4, "name" : "Roger Bell_West", + "y" : 5, "drilldown" : "Roger Bell_West" }, { + "name" : "Simon Green", + "y" : 3, + "drilldown" : "Simon Green" + }, + { + "name" : "Simon Proctor", "y" : 2, - "drilldown" : "Simon Proctor", - "name" : "Simon Proctor" + "drilldown" : "Simon Proctor" }, { - "y" : 3, + "drilldown" : "Stephen G. Lynn", "name" : "Stephen G. Lynn", - "drilldown" : "Stephen G. Lynn" + "y" : 3 }, { "name" : "Thomas Kohler", - "drilldown" : "Thomas Kohler", - "y" : 4 + "y" : 4, + "drilldown" : "Thomas Kohler" }, { "drilldown" : "Ulrich Rieke", - "name" : "Ulrich Rieke", - "y" : 4 + "y" : 4, + "name" : "Ulrich Rieke" }, { - "y" : 3, + "drilldown" : "W. Luis Mochan", "name" : "W. Luis Mochan", - "drilldown" : "W. Luis Mochan" + "y" : 3 + }, + { + "name" : "Wanderdoc", + "y" : 2, + "drilldown" : "Wanderdoc" } - ] + ], + "colorByPoint" : 1 } ], "yAxis" : { @@ -516,10 +576,7 @@ "text" : "Total Solutions" } }, - "xAxis" : { - "type" : "category" - }, - "legend" : { - "enabled" : 0 + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2024-02-11 17:10:18 GMT" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 076145c3a4..497f48b87b 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,63 +1,63 @@ { + "subtitle" : { + "text" : "Last updated at 2024-02-11 17:10:18 GMT" + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : null + } + }, + "title" : { + "text" : "The Weekly Challenge Contributions [2019 - 2024]" + }, "series" : [ { "data" : [ [ "Blog", - 4505 + 4507 ], [ "Perl", - 13176 + 13182 ], [ "Raku", - 7603 + 7605 ] ], "name" : "Contributions", "dataLabels" : { + "y" : 10, "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" }, "format" : "{point.y:.0f}", + "enabled" : "true", "color" : "#FFFFFF", - "align" : "right", - "y" : 10, "rotation" : -90, - "enabled" : "true" + "align" : "right" } } ], - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - }, - "title" : { - "text" : "The Weekly Challenge Contributions [2019 - 2024]" - }, - "chart" : { - "type" : "column" - }, - "subtitle" : { - "text" : "Last updated at 2024-02-10 21:00:30 GMT" - }, "legend" : { "enabled" : "false" }, "xAxis" : { - "type" : "category", "labels" : { "style" : { "fontFamily" : "Verdana, sans-serif", "fontSize" : "13px" } - } + }, + "type" : "category" }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : null - } + "chart" : { + "type" : "column" + }, + "tooltip" : { + "pointFormat" : "{point.y:.0f}" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 9aedaf77a8..6184a83a8a 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,4632 +1,22 @@ { - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "xAxis" : { - "type" : "category" - }, - "legend" : { - "enabled" : "false" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } - }, - "chart" : { - "type" : "column" - }, - "drilldown" : { - "series" : [ - { - "name" : "001", - "data" : [ - [ - "Perl", - 105 - ], - [ - "Raku", - 47 - ], - [ - "Blog", - 12 - ] - ], - "id" : "001" - }, - { - "data" : [ - [ - "Perl", - 83 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 10 - ] - ], - "name" : "002", - "id" : "002" - }, - { - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "name" : "003", - "id" : "003" - }, - { - "id" : "004", - "data" : [ - [ - "Perl", - 60 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ], - "name" : "004" - }, - { - "name" : "005", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 12 - ] - ], - "id" : "005" - }, - { - "id" : "006", - "name" : "006", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 18 - ], - [ - "Blog", - 7 - ] - ] - }, - { - "id" : "007", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 10 - ] - ], - "name" : "007" - }, - { - "id" : "008", - "name" : "008", - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "name" : "009", - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 13 - ] - ], - "id" : "009" - }, - { - "id" : "010", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 11 - ] - ], - "name" : "010" - }, - { - "name" : "011", - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 10 - ] - ], - "id" : "011" - }, - { - "id" : "012", - "name" : "012", - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 13 - ] - ], - "name" : "013", - "id" : "013" - }, - { - "id" : "014", - "name" : "014", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "id" : "015", - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 15 - ] - ], - "name" : "015" - }, - { - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 13 - ] - ], - "name" : "016", - "id" : "016" - }, - { - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ], - "name" : "017", - "id" : "017" - }, - { - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ], - "name" : "018", - "id" : "018" - }, - { - "name" : "019", - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 13 - ] - ], - "id" : "019" - }, - { - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 13 - ] - ], - "name" : "020", - "id" : "020" - }, - { - "name" : "021", - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 10 - ] - ], - "id" : "021" - }, - { - "name" : "022", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 10 - ] - ], - "id" : "022" - }, - { - "id" : "023", - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 12 - ] - ], - "name" : "023" - }, - { - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 11 - ] - ], - "name" : "024", - "id" : "024" - }, - { - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 12 - ] - ], - "name" : "025", - "id" : "025" - }, - { - "name" : "026", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 10 - ] - ], - "id" : "026" - }, - { - "id" : "027", - "name" : "027", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "id" : "028", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 9 - ] - ], - "name" : "028" - }, - { - "id" : "029", - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ], - "name" : "029" - }, - { - "id" : "030", - "name" : "030", - "data" : [ - [ - "Perl", - 78 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "id" : "031", - "name" : "031", - "data" : [ - [ - "Perl", - 54 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 61 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 10 - ] - ], - "name" : "032", - "id" : "032" - }, - { - "id" : "033", - "data" : [ - [ - "Perl", - 66 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 10 - ] - ], - "name" : "033" - }, - { - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 11 - ] - ], - "name" : "034", - "id" : "034" - }, - { - "name" : "035", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ], - "id" : "035" - }, - { - "id" : "036", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 11 - ] - ], - "name" : "036" - }, - { - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 9 - ] - ], - "name" : "037", - "id" : "037" - }, - { - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 12 - ] - ], - "name" : "038", - "id" : "038" - }, - { - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 12 - ] - ], - "name" : "039", - "id" : "039" - }, - { - "id" : "040", - "name" : "040", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "name" : "041", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "id" : "041" - }, - { - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 11 - ] - ], - "name" : "042", - "id" : "042" - }, - { - "name" : "043", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 11 - ] - ], - "id" : "043" - }, - { - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 11 - ] - ], - "name" : "044", - "id" : "044" - }, - { - "name" : "045", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 11 - ] - ], - "id" : "045" - }, - { - "id" : "046", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ], - "name" : "046" - }, - { - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 10 - ] - ], - "name" : "047", - "id" : "047" - }, - { - "id" : "048", - "name" : "048", - "data" : [ - [ - "Perl", - 63 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "id" : "049", - "name" : "049", - "data" : [ - [ - "Perl", - 54 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 12 - ] - ], - "name" : "050", - "id" : "050" - }, - { - "name" : "051", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 11 - ] - ], - "id" : "051" - }, - { - "name" : "052", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 14 - ] - ], - "id" : "052" - }, - { - "id" : "053", - "name" : "053", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 41 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "name" : "054", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 40 - ], - [ - "Blog", - 18 - ] - ], - "id" : "054" - }, - { - "name" : "055", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 14 - ] - ], - "id" : "055" - }, - { - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 17 - ] - ], - "name" : "056", - "id" : "056" - }, - { - "name" : "057", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ], - "id" : "057" - }, - { - "name" : "058", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 13 - ] - ], - "id" : "058" - }, - { - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 16 - ] - ], - "name" : "059", - "id" : "059" - }, - { - "id" : "060", - "name" : "060", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "id" : "061", - "name" : "061", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 32 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 11 - ] - ], - "name" : "062", - "id" : "062" - }, - { - "name" : "063", - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 13 - ] - ], - "id" : "063" - }, - { - "id" : "064", - "name" : "064", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "name" : "065", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ], - "id" : "065" - }, - { - "id" : "066", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ], - "name" : "066" - }, - { - "id" : "067", - "name" : "067", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 18 - ] - ] - }, - { - "name" : "068", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 13 - ] - ], - "id" : "068" - }, - { - "name" : "069", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 16 - ] - ], - "id" : "069" - }, - { - "name" : "070", - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 17 - ] - ], - "id" : "070" - }, - { - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 15 - ] - ], - "name" : "071", - "id" : "071" - }, - { - "name" : "072", - "data" : [ - [ - "Perl", - 55 - ], - [ - "Raku", - 42 - ], - [ - "Blog", - 19 - ] - ], - "id" : "072" - }, - { - "name" : "073", - "data" : [ - [ - "Perl", - 55 - ], - [ - "Raku", - 40 - ], - [ - "Blog", - 17 - ] - ], - "id" : "073" - }, - { - "id" : "074", - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 39 - ], - [ - "Blog", - 20 - ] - ], - "name" : "074" - }, - { - "id" : "075", - "name" : "075", - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 20 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 16 - ] - ], - "name" : "076", - "id" : "076" - }, - { - "id" : "077", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 14 - ] - ], - "name" : "077" - }, - { - "data" : [ - [ - "Perl", - 68 - ], - [ - "Raku", - 41 - ], - [ - "Blog", - 18 - ] - ], - "name" : "078", - "id" : "078" - }, - { - "id" : "079", - "name" : "079", - "data" : [ - [ - "Perl", - 68 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "name" : "080", - "data" : [ - [ - "Perl", - 75 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 16 - ] - ], - "id" : "080" - }, - { - "data" : [ - [ - "Perl", - 65 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 15 - ] - ], - "name" : "081", - "id" : "081" - }, - { - "id" : "082", - "data" : [ - [ - "Perl", - 62 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 17 - ] - ], - "name" : "082" - }, - { - "name" : "083", - "data" : [ - [ - "Perl", - 73 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 16 - ] - ], - "id" : "083" - }, - { - "name" : "084", - "data" : [ - [ - "Perl", - 71 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 12 - ] - ], - "id" : "084" - }, - { - "name" : "085", - "data" : [ - [ - "Perl", - 63 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 18 - ] - ], - "id" : "085" - }, - { - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 15 - ] - ], - "name" : "086", - "id" : "086" - }, - { - "name" : "087", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ], - "id" : "087" - }, - { - "id" : "088", - "data" : [ - [ - "Perl", - 65 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 20 - ] - ], - "name" : "088" - }, - { - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 20 - ] - ], - "name" : "089", - "id" : "089" - }, - { - "id" : "090", - "name" : "090", - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 39 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "name" : "091", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 16 - ] - ], - "id" : "091" - }, - { - "name" : "092", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 16 - ] - ], - "id" : "092" - }, - { - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 16 - ] - ], - "name" : "093", - "id" : "093" - }, - { - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 17 - ] - ], - "name" : "094", - "id" : "094" - }, - { - "id" : "095", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 19 - ] - ], - "name" : "095" - }, - { - "id" : "096", - "name" : "096", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 19 - ] - ] - }, - { - "name" : "097", - "data" : [ - [ - "Perl", - 63 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 19 - ] - ], - "id" : "097" - }, - { - "name" : "098", - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 17 - ] - ], - "id" : "098" - }, - { - "id" : "099", - "name" : "099", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "name" : "100", - "data" : [ - [ - "Perl", - 69 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 21 - ] - ], - "id" : "100" - }, - { - "id" : "101", - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 13 - ] - ], - "name" : "101" - }, - { - "name" : "102", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 15 - ] - ], - "id" : "102" - }, - { - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 15 - ] - ], - "name" : "103", - "id" : "103" - }, - { - "id" : "104", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 14 - ] - ], - "name" : "104" - }, - { - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 14 - ] - ], - "name" : "105", - "id" : "105" - }, - { - "id" : "106", - "name" : "106", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 19 - ] - ], - "name" : "107", - "id" : "107" - }, - { - "id" : "108", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 20 - ] - ], - "name" : "108" - }, - { - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 22 - ] - ], - "name" : "109", - "id" : "109" - }, - { - "name" : "110", - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 25 - ] - ], - "id" : "110" - }, - { - "id" : "111", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 17 - ] - ], - "name" : "111" - }, - { - "id" : "112", - "name" : "112", - "data" : [ - [ - "Perl", - 47 - ], -