From b8e0cde01c4aa44ce74ee74d81b6feb91534893b Mon Sep 17 00:00:00 2001 From: Andinus Date: Tue, 12 Apr 2022 22:32:31 +0530 Subject: Add challenge-160 --- challenge-160/andinus/README | 110 +++++++++++++++++++++++++++-------- challenge-160/andinus/README.org | 101 ++++++++++++++++++++++++++++++++ challenge-160/andinus/raku/ch-1.raku | 16 +++++ challenge-160/andinus/raku/ch-2.raku | 11 ++++ 4 files changed, 214 insertions(+), 24 deletions(-) create mode 100644 challenge-160/andinus/README.org create mode 100644 challenge-160/andinus/raku/ch-1.raku create mode 100644 challenge-160/andinus/raku/ch-2.raku diff --git a/challenge-160/andinus/README b/challenge-160/andinus/README index bd1dd6e3ce..cb7306aa47 100644 --- a/challenge-160/andinus/README +++ b/challenge-160/andinus/README @@ -1,51 +1,113 @@ ━━━━━━━━━━━━━━━ - CHALLENGE 135 + CHALLENGE 160 Andinus ━━━━━━━━━━━━━━━ - 2021-10-22 + 2022-04-12 -Task 1 - Middle 3-digits -════════════════════════ +Task 1 - Four Is Magic +══════════════════════ - You are given an integer. + You are given a positive number, $n < 10. - Write a script find out the middle 3-digits of the given integer, if - possible otherwise throw sensible error. + Write a script to generate english text sequence starting with the + English cardinal representation of the given number, the word ‘is’ and + then the English cardinal representation of the count of characters + that made up the first word, followed by a comma. Continue until you + reach four. ┌──── - │ Input: $n = 1234567 - │ Output: 345 + │ Input: $n = 5 + │ Output: Five is four, four is magic. │ - │ Input: $n = -123 - │ Output: 123 + │ Input: $n = 7 + │ Output: Seven is five, five is four, four is magic. │ - │ Input: $n = 1 - │ Output: too short + │ Input: $n = 6 + │ Output: Six is three, three is five, five is four, four is magic. + └──── + + +Raku +──── + + Take a positive number, less than 10 as input from MAIN. Then we + define an array that holds the string representation of integers. The + `multi sub' `four-is-magic' is called on the input. It runs + recursively until `4' is called. + + `.tc' is called on the result to make the first character uppercase. + + ┌──── + │ unit sub MAIN( + │ UInt $n where * < 10, #= positive number, less than 10 + │ ); + │ + │ my @num-to-str = ; + │ + │ multi sub four-is-magic(4 --> Str) { + │ return "four is magic."; + │ } + │ + │ multi sub four-is-magic(Int $n where * < 10 --> Str) { + │ my $n-str = @num-to-str[$n]; + │ return "$n-str is { @num-to-str[$n-str.chars] }, " ~ four-is-magic($n-str.chars); + │ } │ - │ Input: $n = 10 - │ Output: even number of digits + │ put four-is-magic($n).tc; + └──── + + +Task 2 - Equilibrium Index +══════════════════════════ + + You are give an array of integers, @n. + + Write a script to find out the Equilibrium Index of the given array, + if found. + + For an array A consisting n elements, index i is an + equilibrium index if the sum of elements of subarray + A[0…i-1] is equal to the sum of elements of subarray + A[i+1…n-1]. + + ┌──── + │ Input: @n = (1, 3, 5, 7, 9) + │ Output: 3 + │ + │ Input: @n = (1, 2, 3, 4, 5) + │ Output: -1 as no Equilibrium Index found. + │ + │ Input: @n = (2, 4, 2) + │ Output: 1 └──── Raku ──── - Input's absolute value is taken because the sign is meaningless here. - To get middle 3-digits we take 3 digits from `$n.chars div 2 - 1' - position, `-1' because Arrays are 0-indexed. It's guaranteed that we - have odd number of digits so `div 2' will land us on left of middle - digit, we just take 3 digits from there. + Takes an array of integers as input. Then it loops over the array by + index and does as the problem states, takes sum of all elements before + the index and compares it with the sum of all elements after the + index, if they're equal it prints the index and exits. If there is no + Equilibrium Index then it prints -1. ┌──── - │ $n = abs $n; - │ die "too short" if $n.chars < 3; - │ die "even number of digits" if $n.chars %% 2; - │ put $n.substr($n.chars div 2 - 1, 3); + │ unit sub MAIN( + │ *@n, #= array of integers + │ ); + │ + │ for 0 .. @n.end -> $i { + │ if @n[0 .. $i - 1].sum == @n[$i + 1 .. *].sum { + │ put $i; + │ exit; + │ } + │ } + │ put -1; └──── diff --git a/challenge-160/andinus/README.org b/challenge-160/andinus/README.org new file mode 100644 index 0000000000..d4ae1142fa --- /dev/null +++ b/challenge-160/andinus/README.org @@ -0,0 +1,101 @@ +#+title: Challenge 160 +#+date: 2022-04-12 +#+html_link_up: ../ +#+export_file_name: index +#+options: toc:nil +#+setupfile: ~/.emacs.d/org-templates/level-2.org + +* Task 1 - Four Is Magic + +You are given a positive number, $n < 10. + +Write a script to generate english text sequence starting with the +English cardinal representation of the given number, the word ‘is’ and +then the English cardinal representation of the count of characters that +made up the first word, followed by a comma. Continue until you reach +four. + +#+begin_src +Input: $n = 5 +Output: Five is four, four is magic. + +Input: $n = 7 +Output: Seven is five, five is four, four is magic. + +Input: $n = 6 +Output: Six is three, three is five, five is four, four is magic. +#+end_src + +** Raku + +Take a positive number, less than 10 as input from MAIN. Then we define +an array that holds the string representation of integers. The ~multi sub~ +~four-is-magic~ is called on the input. It runs recursively until ~4~ is +called. + +~.tc~ is called on the result to make the first character uppercase. + +#+begin_src raku +unit sub MAIN( + UInt $n where * < 10, #= positive number, less than 10 +); + +my @num-to-str = ; + +multi sub four-is-magic(4 --> Str) { + return "four is magic."; +} + +multi sub four-is-magic(Int $n where * < 10 --> Str) { + my $n-str = @num-to-str[$n]; + return "$n-str is { @num-to-str[$n-str.chars] }, " ~ four-is-magic($n-str.chars); +} + +put four-is-magic($n).tc; +#+end_src + +* Task 2 - Equilibrium Index + +You are give an array of integers, @n. + +Write a script to find out the Equilibrium Index of the given array, if +found. + +#+begin_quote +For an array A consisting n elements, index i is an equilibrium index if +the sum of elements of subarray A[0…i-1] is equal to the sum of elements +of subarray A[i+1…n-1]. +#+end_quote + +#+begin_src +Input: @n = (1, 3, 5, 7, 9) +Output: 3 + +Input: @n = (1, 2, 3, 4, 5) +Output: -1 as no Equilibrium Index found. + +Input: @n = (2, 4, 2) +Output: 1 +#+end_src + +** Raku + +Takes an array of integers as input. Then it loops over the array by +index and does as the problem states, takes sum of all elements before +the index and compares it with the sum of all elements after the index, +if they're equal it prints the index and exits. If there is no +Equilibrium Index then it prints -1. + +#+begin_src raku +unit sub MAIN( + *@n, #= array of integers +); + +for 0 .. @n.end -> $i { + if @n[0 .. $i - 1].sum == @n[$i + 1 .. *].sum { + put $i; + exit; + } +} +put -1; +#+end_src diff --git a/challenge-160/andinus/raku/ch-1.raku b/challenge-160/andinus/raku/ch-1.raku new file mode 100644 index 0000000000..7ab3307848 --- /dev/null +++ b/challenge-160/andinus/raku/ch-1.raku @@ -0,0 +1,16 @@ +unit sub MAIN( + UInt $n where * < 10, #= positive number, less than 10 +); + +my @num-to-str = ; + +multi sub four-is-magic(4 --> Str) { + return "four is magic."; +} + +multi sub four-is-magic(Int $n where * < 10 --> Str) { + my $n-str = @num-to-str[$n]; + return "$n-str is { @num-to-str[$n-str.chars] }, " ~ four-is-magic($n-str.chars); +} + +put four-is-magic($n).tc; diff --git a/challenge-160/andinus/raku/ch-2.raku b/challenge-160/andinus/raku/ch-2.raku new file mode 100644 index 0000000000..a9045a2712 --- /dev/null +++ b/challenge-160/andinus/raku/ch-2.raku @@ -0,0 +1,11 @@ +unit sub MAIN( + *@n, #= array of integers +); + +for 0 .. @n.end -> $i { + if @n[0 .. $i - 1].sum == @n[$i + 1 .. *].sum { + put $i; + exit; + } +} +put -1; -- cgit From 1f91756ebf1f6408db4e0ee2c493d23a5a58e84a Mon Sep 17 00:00:00 2001 From: Andinus Date: Tue, 12 Apr 2022 22:57:36 +0530 Subject: Challenge-160: Add blog links --- challenge-160/andinus/blog-1.txt | 1 + challenge-160/andinus/blog-2.txt | 1 + 2 files changed, 2 insertions(+) create mode 100644 challenge-160/andinus/blog-1.txt create mode 100644 challenge-160/andinus/blog-2.txt diff --git a/challenge-160/andinus/blog-1.txt b/challenge-160/andinus/blog-1.txt new file mode 100644 index 0000000000..e2ce699697 --- /dev/null +++ b/challenge-160/andinus/blog-1.txt @@ -0,0 +1 @@ +https://andinus.unfla.me/pwc/challenge-160/ diff --git a/challenge-160/andinus/blog-2.txt b/challenge-160/andinus/blog-2.txt new file mode 100644 index 0000000000..e2ce699697 --- /dev/null +++ b/challenge-160/andinus/blog-2.txt @@ -0,0 +1 @@ +https://andinus.unfla.me/pwc/challenge-160/ -- cgit From d52fe4759fd32fbddb0356ce388a06375e66d79f Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Wed, 13 Apr 2022 03:37:05 +0100 Subject: - Added solutions by Andinus. --- stats/pwc-current.json | 145 +- stats/pwc-language-breakdown-summary.json | 64 +- stats/pwc-language-breakdown.json | 6336 ++++++++++++++--------------- stats/pwc-leaders.json | 714 ++-- stats/pwc-summary-1-30.json | 114 +- stats/pwc-summary-121-150.json | 40 +- stats/pwc-summary-151-180.json | 46 +- stats/pwc-summary-181-210.json | 34 +- stats/pwc-summary-211-240.json | 98 +- stats/pwc-summary-241-270.json | 36 +- stats/pwc-summary-31-60.json | 46 +- stats/pwc-summary-61-90.json | 102 +- stats/pwc-summary-91-120.json | 30 +- stats/pwc-summary.json | 46 +- 14 files changed, 3935 insertions(+), 3916 deletions(-) diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 2ef13bfd28..9b8d2bb718 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,4 +1,13 @@ { + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } + }, "xAxis" : { "type" : "category" }, @@ -7,46 +16,50 @@ "text" : "Total Solutions" } }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, "subtitle" : { - "text" : "[Champions: 13] Last updated at 2022-04-12 13:27:35 GMT" + "text" : "[Champions: 14] Last updated at 2022-04-13 02:35:05 GMT" }, "drilldown" : { "series" : [ { - "name" : "Dave Jacoby", + "id" : "Andinus", "data" : [ [ - "Perl", + "Raku", 2 ], [ "Blog", - 1 + 2 ] ], - "id" : "Dave Jacoby" + "name" : "Andinus" }, { "data" : [ [ "Perl", 2 + ], + [ + "Blog", + 1 ] ], + "id" : "Dave Jacoby", + "name" : "Dave Jacoby" + }, + { + "name" : "E. Choroba", "id" : "E. Choroba", - "name" : "E. Choroba" + "data" : [ + [ + "Perl", + 2 + ] + ] }, { - "name" : "James Smith", "data" : [ [ "Perl", @@ -57,9 +70,12 @@ 1 ] ], - "id" : "James Smith" + "id" : "James Smith", + "name" : "James Smith" }, { + "name" : "Luca Ferrari", + "id" : "Luca Ferrari", "data" : [ [ "Raku", @@ -69,29 +85,27 @@ "Blog", 6 ] - ], - "id" : "Luca Ferrari", - "name" : "Luca Ferrari" + ] }, { + "name" : "Marton Polgar", + "id" : "Marton Polgar", "data" : [ [ "Raku", 2 ] - ], - "id" : "Marton Polgar", - "name" : "Marton Polgar" + ] }, { - "name" : "Matthew Neleigh", "data" : [ [ "Perl", 2 ] ], - "id" : "Matthew Neleigh" + "id" : "Matthew Neleigh", + "name" : "Matthew Neleigh" }, { "name" : "Maxim Kolodyazhny", @@ -128,18 +142,16 @@ "name" : "Robert DiCicco" }, { - "name" : "Robert Ransbottom", "id" : "Robert Ransbottom", "data" : [ [ "Raku", 2 ] - ] + ], + "name" : "Robert Ransbottom" }, { - "name" : "Roger Bell_West", - "id" : "Roger Bell_West", "data" : [ [ "Perl", @@ -149,21 +161,22 @@ "Raku", 2 ] - ] + ], + "id" : "Roger Bell_West", + "name" : "Roger Bell_West" }, { - "id" : "Simon Proctor", + "name" : "Simon Proctor", "data" : [ [ "Raku", 2 ] ], - "name" : "Simon Proctor" + "id" : "Simon Proctor" }, { "name" : "W. Luis Mochan", - "id" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -173,60 +186,62 @@ "Blog", 1 ] - ] + ], + "id" : "W. Luis Mochan" } ] }, "tooltip" : { - "headerFormat" : "{series.name}
", "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1 - }, - "title" : { - "text" : "The Weekly Challenge - 160" + "followPointer" : 1, + "headerFormat" : "{series.name}
" }, "chart" : { "type" : "column" }, - "legend" : { - "enabled" : 0 - }, "series" : [ { + "colorByPoint" : 1, + "name" : "The Weekly Challenge - 160", "data" : [ { - "y" : 3, + "name" : "Andinus", + "drilldown" : "Andinus", + "y" : 4 + }, + { + "name" : "Dave Jacoby", "drilldown" : "Dave Jacoby", - "name" : "Dave Jacoby" + "y" : 3 }, { - "drilldown" : "E. Choroba", "name" : "E. Choroba", + "drilldown" : "E. Choroba", "y" : 2 }, { - "y" : 3, "drilldown" : "James Smith", + "y" : 3, "name" : "James Smith" }, { - "y" : 8, "name" : "Luca Ferrari", - "drilldown" : "Luca Ferrari" + "drilldown" : "Luca Ferrari", + "y" : 8 }, { - "y" : 2, "name" : "Marton Polgar", - "drilldown" : "Marton Polgar" + "drilldown" : "Marton Polgar", + "y" : 2 }, { "y" : 2, - "name" : "Matthew Neleigh", - "drilldown" : "Matthew Neleigh" + "drilldown" : "Matthew Neleigh", + "name" : "Matthew Neleigh" }, { - "y" : 1, "name" : "Maxim Kolodyazhny", + "y" : 1, "drilldown" : "Maxim Kolodyazhny" }, { @@ -235,14 +250,14 @@ "y" : 2 }, { + "drilldown" : "Robert DiCicco", "y" : 4, - "name" : "Robert DiCicco", - "drilldown" : "Robert DiCicco" + "name" : "Robert DiCicco" }, { - "y" : 2, "name" : "Robert Ransbottom", - "drilldown" : "Robert Ransbottom" + "drilldown" : "Robert Ransbottom", + "y" : 2 }, { "y" : 4, @@ -255,13 +270,17 @@ "name" : "Simon Proctor" }, { + "name" : "W. Luis Mochan", "y" : 3, - "drilldown" : "W. Luis Mochan", - "name" : "W. Luis Mochan" + "drilldown" : "W. Luis Mochan" } - ], - "name" : "The Weekly Challenge - 160", - "colorByPoint" : 1 + ] } - ] + ], + "title" : { + "text" : "The Weekly Challenge - 160" + }, + "legend" : { + "enabled" : 0 + } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index d0c964fc3c..c23046b765 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,50 +1,29 @@ { - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - }, "chart" : { "type" : "column" }, - "title" : { - "text" : "The Weekly Challenge Contributions [2019 - 2022]" - }, - "subtitle" : { - "text" : "Last updated at 2022-04-12 13:27:35 GMT" - }, - "yAxis" : { - "title" : { - "text" : null - }, - "min" : 0 - }, - "xAxis" : { - "type" : "category", - "labels" : { - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - } - } + "legend" : { + "enabled" : "false" }, "series" : [ { "dataLabels" : { + "align" : "right", + "y" : 10, + "color" : "#FFFFFF", "format" : "{point.y:.0f}", "rotation" : -90, - "align" : "right", + "enabled" : "true", "style" : { "fontSize" : "13px", "fontFamily" : "Verdana, sans-serif" - }, - "y" : 10, - "enabled" : "true", - "color" : "#FFFFFF" + } }, "name" : "Contributions", "data" : [ [ "Blog", - 2431 + 2433 ], [ "Perl", @@ -52,12 +31,33 @@ ], [ "Raku", - 4620 + 4622 ] ] } ], - "legend" : { - "enabled" : "false" + "title" : { + "text" : "The Weekly Challenge Contributions [2019 - 2022]" + }, + "tooltip" : { + "pointFormat" : "{point.y:.0f}" + }, + "subtitle" : { + "text" : "Last updated at 2022-04-13 02:35:05 GMT" + }, + "yAxis" : { + "title" : { + "text" : null + }, + "min" : 0 + }, + "xAxis" : { + "labels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + }, + "type" : "category" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index f8b80d16a8..aac7034a25 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,3118 +1,220 @@ { - "tooltip" : { - "headerFormat" : "", - "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "followPointer" : "true" - }, - "title" : { - "text" : "The Weekly Challenge Language" - }, - "chart" : { - "type" : "column" + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2022-04-12 13:27:35 GMT" + "xAxis" : { + "type" : "category" }, - "drilldown" : { - "series" : [ - { - "name" : "001", - "data" : [ - [ - "Perl", - 103 - ], - [ - "Raku", - 47 - ], - [ - "Blog", - 11 - ] - ], - "id" : "001" - }, - { - "name" : "002", - "id" : "002", - "data" : [ - [ - "Perl", - 79 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "id" : "003", - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "name" : "003" - }, - { - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ], - "id" : "004", - "name" : "004" - }, - { - "name" : "005", - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 12 - ] - ], - "id" : "005" - }, - { - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 18 - ], - [ - "Blog", - 7 - ] - ], - "id" : "006", - "name" : "006" - }, - { - "id" : "007", - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 10 - ] - ], - "name" : "007" - }, - { - "name" : "008", - "id" : "008", - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "id" : "009", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 13 - ] - ], - "name" : "009" - }, - { - "name" : "010", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 11 - ] - ], - "id" : "010" - }, - { - "id" : "011", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 10 - ] - ], - "name" : "011" - }, - { - "name" : "012", - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 11 - ] - ], - "id" : "012" - }, - { - "name" : "013", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 13 - ] - ], - "id" : "013" + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 }, - { - "id" : "014", - "data" : [ - [ - "Perl", - 55 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 15 - ] - ], - "name" : "014" - }, - { - "name" : "015", - "id" : "015", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "id" : "016", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 12 - ] - ], - "name" : "016" - }, - { - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ], - "id" : "017", - "name" : "017" - }, - { - "name" : "018", - "id" : "018", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "id" : "019", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 13 - ] - ], - "name" : "019" - }, - { - "id" : "020", - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 13 - ] - ], - "name" : "020" - }, - { - "name" : "021", - "id" : "021", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "name" : "022", - "id" : "022", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "name" : "023", - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 12 - ] - ], - "id" : "023" - }, - { - "id" : "024", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 11 - ] - ], - "name" : "024" - }, - { - "data" : [ - [ - "Perl", - 28 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 12 - ] - ], - "id" : "025", - "name" : "025" - }, - { - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 10 - ] - ], - "id" : "026", - "name" : "026" - }, - { - "name" : "027", - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ], - "id" : "027" - }, - { - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 9 - ] - ], - "id" : "028", - "name" : "028" - }, - { - "name" : "029", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ], - "id" : "029" - }, - { - "id" : "030", - "data" : [ - [ - "Perl", - 76 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ], - "name" : "030" - }, - { - "name" : "031", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "id" : "031" - }, - { - "name" : "032", - "id" : "032", - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 64 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 10 - ] - ], - "id" : "033", - "name" : "033" - }, - { - "data" : [ - [ - "Perl", - 32 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 11 - ] - ], - "id" : "034", - "name" : "034" - }, - { - "id" : "035", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ], - "name" : "035" - }, - { - "name" : "036", - "id" : "036", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 9 - ] - ], - "id" : "037", - "name" : "037" - }, - { - "id" : "038", - "data" : [ - [ - "Perl", - 34 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 12 - ] - ], - "name" : "038" - }, - { - "name" : "039", - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 12 - ] - ], - "id" : "039" - }, - { - "name" : "040", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 10 - ] - ], - "id" : "040" - }, - { - "id" : "041", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "name" : "041" - }, - { - "name" : "042", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 11 - ] - ], - "id" : "042" - }, - { - "id" : "043", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 11 - ] - ], - "name" : "043" - }, - { - "id" : "044", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 11 - ] - ], - "name" : "044" - }, - { - "id" : "045", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 11 - ] - ], - "name" : "045" - }, - { - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ], - "id" : "046", - "name" : "046" - }, - { - "name" : "047", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 10 - ] - ], - "id" : "047" - }, - { - "name" : "048", - "data" : [ - [ - "Perl", - 61 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 12 - ] - ], - "id" : "048" - }, - { - "name" : "049", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ], - "id" : "049" - }, - { - "name" : "050", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 12 - ] - ], - "id" : "050" - }, - { - "name" : "051", - "id" : "051", - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "name" : "052", - "id" : "052", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "name" : "053", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 41 - ], - [ - "Blog", - 15 - ] - ], - "id" : "053" - }, - { - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 40 - ], - [ - "Blog", - 18 - ] - ], - "id" : "054", - "name" : "054" - }, - { - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 14 - ] - ], - "id" : "055", - "name" : "055" - }, - { - "name" : "056", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 16 - ] - ], - "id" : "056" - }, - { - "id" : "057", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ], - "name" : "057" - }, - { - "id" : "058", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 13 - ] - ], - "name" : "058" - }, - { - "name" : "059", - "id" : "059", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "id" : "060", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 16 - ] - ], - "name" : "060" - }, - { - "id" : "061", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 14 - ] - ], - "name" : "061" - }, - { - "id" : "062", - "data" : [ - [ - "Perl", - 28 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 11 - ] - ], - "name" : "062" - }, - { - "name" : "063", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 13 - ] - ], - "id" : "063" - }, - { - "name" : "064", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 16 - ] - ], - "id" : "064" - }, - { - "name" : "065", - "id" : "065", - "data" : [ - [ - "Perl", - 32 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "name" : "066", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ], - "id" : "066" - }, - { - "name" : "067", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 18 - ] - ], - "id" : "067" - }, - { - "name" : "068", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 13 - ] - ], - "id" : "068" - }, - { - "id" : "069", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 16 - ] - ], - "name" : "069" - }, - { - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 17 - ] - ], - "id" : "070", - "name" : "070" - }, - { - "id" : "071", - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 15 - ] - ], - "name" : "071" - }, - { - "name" : "072", - "id" : "072", - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 42 - ], - [ - "Blog", - 19 - ] - ] - }, - { - "id" : "073", - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 40 - ], - [ - "Blog", - 17 - ] - ], - "name" : "073" - }, - { - "name" : "074", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 39 - ], - [ - "Blog", - 20 - ] - ], - "id" : "074" - }, - { - "name" : "075", - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 20 - ] - ], - "id" : "075" - }, - { - "id" : "076", - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 16 - ] - ], - "name" : "076" - }, - { - "id" : "077", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 14 - ] - ], - "name" : "077" - }, - { - "name" : "078", - "id" : "078", - "data" : [ - [ - "Perl", - 68 - ], - [ - "Raku", - 41 - ], - [ - "Blog", - 18 - ] - ] - }, - { - "id" : "079", - "data" : [ - [ - "Perl", - 68 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 17 - ] - ], - "name" : "079" - }, - { - "name" : "080", - "id" : "080", - "data" : [ - [ - "Perl", - 75 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 65 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 15 - ] - ], - "id" : "081", - "name" : "081" - }, - { - "data" : [ - [ - "Perl", - 62 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 17 - ] - ], - "id" : "082", - "name" : "082" - }, - { - "id" : "083", - "data" : [ - [ - "Perl", - 73 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 16 - ] - ], - "name" : "083" - }, - { - "data" : [ - [ - "Perl", - 71 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 12 - ] - ], - "id" : "084", - "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", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ], - "name" : "087" - }, - { - "data" : [ - [ - "Perl", - 65 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 20 - ] - ], - "id" : "088", - "name" : "088" - }, - { - "name" : "089", - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 20 - ] - ], - "id" : "089" - }, - { - "name" : "090", - "id" : "090", - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 39 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 16 - ] - ], - "id" : "091", - "name" : "091" - }, - { - "name" : "092", - "id" : "092", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "name" : "093", - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 16 - ] - ], - "id" : "093" - }, - { - "name" : "094", - "id" : "094", - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "name" : "095", - "id" : "095", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 19 - ] - ] - }, - { - "name" : "096", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 19 - ] - ], - "id" : "096" - }, - { - "name" : "097", - "data" : [ - [ - "Perl", - 63 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 19 - ] - ], - "id" : "097" - }, - { - "name" : "098", - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 17 - ] - ], - "id" : "098" - }, - { - "name" : "099", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 14 - ] - ], - "id" : "099" - }, - { - "data" : [ - [ - "Perl", - 69 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 21 - ] - ], - "id" : "100", - "name" : "100" - }, - { - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 13 - ] - ], - "id" : "101", - "name" : "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", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 14 - ] - ], - "name" : "104" - }, - { - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 14 - ] - ], - "id" : "105", - "name" : "105" - }, - { - "name" : "106", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 17 - ] - ], - "id" : "106" - }, - { - "name" : "107", - "id" : "107", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 19 - ] - ] - }, - { - "id" : "108", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 20 - ] - ], - "name" : "108" - }, - { - "id" : "109", - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 22 - ] - ], - "name" : "109" - }, - { - "id" : "110", - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 25 - ] - ], - "name" : "110" - }, - { - "id" : "111", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 17 - ] - ], - "name" : "111" - }, - { - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 19 - ] - ], - "id" : "112", - "name" : "112" - }, - { - "name" : "113", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 19 - ] - ], - "id" : "113" - }, - { - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 21 - ] - ], - "id" : "114", - "name" : "114" - }, - { -