From fc8013d400fee6ab06de6dc4da285d877b3eb555 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Tue, 2 May 2023 17:08:02 +0100 Subject: - Added solutions by Robert DiCicco. --- challenge-215/eric-cheung/python/ch-1.py | 16 + challenge-215/eric-cheung/python/ch-2.py | 26 + challenge-215/robert-dicicco/julia/ch-1.jl | 40 + challenge-215/robert-dicicco/perl/ch-1.pl | 41 + challenge-215/robert-dicicco/python/ch-1.py | 34 + challenge-215/robert-dicicco/raku/ch-1.raku | 38 + challenge-215/robert-dicicco/ruby/ch-1.rb | 40 + challenge-215/ziameraj16/java/OddOneOut.java | 24 + stats/pwc-current.json | 235 +- stats/pwc-language-breakdown-summary.json | 80 +- stats/pwc-language-breakdown.json | 8468 +++++++++++++------------- stats/pwc-leaders.json | 746 +-- stats/pwc-summary-1-30.json | 34 +- stats/pwc-summary-121-150.json | 36 +- stats/pwc-summary-151-180.json | 110 +- stats/pwc-summary-181-210.json | 126 +- stats/pwc-summary-211-240.json | 106 +- stats/pwc-summary-241-270.json | 110 +- stats/pwc-summary-271-300.json | 44 +- stats/pwc-summary-31-60.json | 52 +- stats/pwc-summary-61-90.json | 48 +- stats/pwc-summary-91-120.json | 28 +- stats/pwc-summary.json | 34 +- 23 files changed, 5397 insertions(+), 5119 deletions(-) create mode 100755 challenge-215/eric-cheung/python/ch-1.py create mode 100755 challenge-215/eric-cheung/python/ch-2.py create mode 100644 challenge-215/robert-dicicco/julia/ch-1.jl create mode 100644 challenge-215/robert-dicicco/perl/ch-1.pl create mode 100644 challenge-215/robert-dicicco/python/ch-1.py create mode 100644 challenge-215/robert-dicicco/raku/ch-1.raku create mode 100644 challenge-215/robert-dicicco/ruby/ch-1.rb create mode 100644 challenge-215/ziameraj16/java/OddOneOut.java diff --git a/challenge-215/eric-cheung/python/ch-1.py b/challenge-215/eric-cheung/python/ch-1.py new file mode 100755 index 0000000000..1398ab8a04 --- /dev/null +++ b/challenge-215/eric-cheung/python/ch-1.py @@ -0,0 +1,16 @@ + +## arrWordInput = ['abc', 'xyz', 'tsu'] ## Example 1 +## arrWordInput = ['rat', 'cab', 'dad'] ## Example 2 +arrWordInput = ['x', 'y', 'z'] ## Example 3 + +arrRemovedWord = [] + +for strWordLoop in arrWordInput: + + strSortWordLoop = ''.join(sorted(strWordLoop)) + if strWordLoop == strSortWordLoop: + continue + + arrRemovedWord.append(strWordLoop) + +print (len(arrRemovedWord)) diff --git a/challenge-215/eric-cheung/python/ch-2.py b/challenge-215/eric-cheung/python/ch-2.py new file mode 100755 index 0000000000..8c366a73f6 --- /dev/null +++ b/challenge-215/eric-cheung/python/ch-2.py @@ -0,0 +1,26 @@ + +## Example 1 +## arrNum = [1, 0, 0, 0, 1] +## nCount = 1 + +## Example 2 +## arrNum = [1, 0, 0, 0, 1] +## nCount = 2 + +## Example 3 +arrNum = [1, 0, 0, 0, 0, 0, 0, 0, 1] +nCount = 3 + +for nIndxLoop in range(1, len(arrNum) - 1): + + if nCount == 0: + break + + if arrNum[nIndxLoop - 1] == 0 and arrNum[nIndxLoop] == 0 and arrNum[nIndxLoop + 1] == 0: + arrNum[nIndxLoop] = 1 + nCount = nCount - 1 + +if nCount == 0: + print (1) +else: + print (0) diff --git a/challenge-215/robert-dicicco/julia/ch-1.jl b/challenge-215/robert-dicicco/julia/ch-1.jl new file mode 100644 index 0000000000..74c9ca9849 --- /dev/null +++ b/challenge-215/robert-dicicco/julia/ch-1.jl @@ -0,0 +1,40 @@ +#!/usr/bin/env julia +#= +---------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-05-01 +Challenge 215 Odd One Out ( Julia ) +---------------------------------------- +=# +using Printf + +words = [["abc","xyz","tsu"],["rat", "cab", "dad"],["x", "y", "z"]] + +for wds in words + cnt = 0 + @printf("Input: @words = %s\n",wds) + for w in wds + str1_arr = join(sort(collect(w))) + if (cmp(w,str1_arr) != 0) + cnt += 1 + end + end + @printf("Output: %d\n\n", cnt) +end + +#= +---------------------------------------- +SAMPLE OUTPUT +julia .\OddOneOut.jl +Input: @words = ["abc", "xyz", "tsu"] +Output: 1 + +Input: @words = ["rat", "cab", "dad"] +Output: 3 + +Input: @words = ["x", "y", "z"] +Output: 0 +---------------------------------------- +=# + + diff --git a/challenge-215/robert-dicicco/perl/ch-1.pl b/challenge-215/robert-dicicco/perl/ch-1.pl new file mode 100644 index 0000000000..5e2b7f6ea8 --- /dev/null +++ b/challenge-215/robert-dicicco/perl/ch-1.pl @@ -0,0 +1,41 @@ +#!/usr/bin/enc perl +=begin pod +---------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-05-01 +Challenge 215 Odd One Out ( Perl ) +---------------------------------------- +=cut +use strict; +use warnings; +use feature 'say'; + +my @words = (["abc", "xyz", "tsu"],["rat", "cab", "dad"],["x", "y", "z"]); + +for my $wds (@words) { + my $cnt = 0; + say "Input: \@words = (@$wds)"; + for my $w (@$wds) { + my $w_sorted = join("",sort(split(//,$w))); + $cnt++ if ($w ne $w_sorted); + } + say "Output: $cnt\n"; +} + +=begin pod +---------------------------------------- +SAMPLE OUTPUT +perl .\OddOneOut.pl +Input: @words = (abc xyz tsu) +Output: 1 + +Input: @words = (rat cab dad) +Output: 3 + +Input: @words = (x y z) +Output: 0 +---------------------------------------- +=cut + + + diff --git a/challenge-215/robert-dicicco/python/ch-1.py b/challenge-215/robert-dicicco/python/ch-1.py new file mode 100644 index 0000000000..158c58097c --- /dev/null +++ b/challenge-215/robert-dicicco/python/ch-1.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python +''' +---------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-05-01 +Challenge 215 Odd One Out ( Python ) +---------------------------------------- +''' + +words = [["abc","xyz","tsu"],["rat", "cab", "dad"],["x", "y", "z"]] + +for wds in words: + cnt = 0 + print("Input: @words = ",wds) + for w in wds: + w_sorted = ''.join(sorted(w, key=str.lower)) + if w != w_sorted: + cnt += 1 + print("Output: ",cnt,"\n") + +''' + ---------------------------------------- +SAMPLE OUTPUT +python .\OddOneOut.py +Input: @words = ['abc', 'xyz', 'tsu'] +Output: 1 +Input: @words = ['rat', 'cab', 'dad'] +Output: 3 +Input: @words = ['x', 'y', 'z'] +Output: 0 + ---------------------------------------- +''' + + diff --git a/challenge-215/robert-dicicco/raku/ch-1.raku b/challenge-215/robert-dicicco/raku/ch-1.raku new file mode 100644 index 0000000000..c14bf8604c --- /dev/null +++ b/challenge-215/robert-dicicco/raku/ch-1.raku @@ -0,0 +1,38 @@ +#!/usr/bin/env raku +#`{ +---------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-05-01 +Challenge 215 Odd One Out ( Raku ) +---------------------------------------- +} +my @words = ('abc', 'xyz', 'tsu'),('rat', 'cab', 'dad'),('x', 'y', 'z'); + +for (@words) -> @wds { + my $cnt = 0; + say "Input: \@words = ", @wds; + for (@wds) -> $w { + if $w ne $w.comb.sort.join { + $cnt++; + } + } + say "Output: ", $cnt; + say " "; +} + +#`{ +---------------------------------------- +SAMPLE OUTPUT +raku .\OddOneOut.rk +Input: @words = (abc xyz tsu) +Output: 1 + +Input: @words = (rat cab dad) +Output: 3 + +Input: @words = (x y z) +Output: 0 +} + + + diff --git a/challenge-215/robert-dicicco/ruby/ch-1.rb b/challenge-215/robert-dicicco/ruby/ch-1.rb new file mode 100644 index 0000000000..acf5ca9845 --- /dev/null +++ b/challenge-215/robert-dicicco/ruby/ch-1.rb @@ -0,0 +1,40 @@ +#!/usr/bin/env ruby +=begin +---------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-05-01 +Challenge 215 Odd One Out ( Ruby ) +---------------------------------------- +=end + +words = [["abc","xyz","tsu"],["rat", "cab", "dad"],["x", "y", "z"]] + +words.each do |wds| + cnt = 0 + puts("Input: @words = #{wds}") + wds.each do |w| + srt = w.chars.sort.join + if w != srt + cnt += 1 + end + end + puts("Output: #{cnt}") + puts +end + +=begin +---------------------------------------- +SAMPLE OUTPUT +ruby .\OddOneOut.rb +Input: @words = ["abc", "xyz", "tsu"] +Output: 1 + +Input: @words = ["rat", "cab", "dad"] +Output: 3 + +Input: @words = ["x", "y", "z"] +Output: 0 +---------------------------------------- +=end + + diff --git a/challenge-215/ziameraj16/java/OddOneOut.java b/challenge-215/ziameraj16/java/OddOneOut.java new file mode 100644 index 0000000000..bbd53574b7 --- /dev/null +++ b/challenge-215/ziameraj16/java/OddOneOut.java @@ -0,0 +1,24 @@ +import java.util.*; + +public class OddOneOut { + + public static void main(String[] args) { + Scanner scanner = new Scanner(System.in); + List values = Arrays.stream(scanner.nextLine().split(",")).toList(); + int count = 0; + List newList = new ArrayList<>(values.size()); + for (String str : values) { + String temp = new String(str); + final char[] chars = str.toCharArray(); + Arrays.sort(chars); + if (!temp.equals(new String(chars))) { + count++; + } else { + newList.add(str); + } + } + System.out.println(count); + System.out.println(newList); + } +} + diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 60b33053b6..bb33139efa 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,25 +1,4 @@ { - "title" : { - "text" : "The Weekly Challenge - 215" - }, - "subtitle" : { - "text" : "[Champions: 11] Last updated at 2023-05-02 09:35:15 GMT" - }, - "legend" : { - "enabled" : 0 - }, - "xAxis" : { - "type" : "category" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - } - } - }, "yAxis" : { "title" : { "text" : "Total Solutions" @@ -28,11 +7,74 @@ "chart" : { "type" : "column" }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1, - "headerFormat" : "{series.name}
" - }, + "series" : [ + { + "data" : [ + { + "name" : "Carlos Oliveira", + "drilldown" : "Carlos Oliveira", + "y" : 2 + }, + { + "name" : "David Ferrone", + "drilldown" : "David Ferrone", + "y" : 2 + }, + { + "name" : "E. Choroba", + "y" : 2, + "drilldown" : "E. Choroba" + }, + { + "drilldown" : "James Smith", + "y" : 3, + "name" : "James Smith" + }, + { + "y" : 2, + "drilldown" : "Lubos Kolouch", + "name" : "Lubos Kolouch" + }, + { + "y" : 2, + "drilldown" : "Mark Anderson", + "name" : "Mark Anderson" + }, + { + "drilldown" : "Niels van Dijke", + "y" : 2, + "name" : "Niels van Dijke" + }, + { + "name" : "Peter Campbell Smith", + "y" : 3, + "drilldown" : "Peter Campbell Smith" + }, + { + "drilldown" : "Robert DiCicco", + "y" : 2, + "name" : "Robert DiCicco" + }, + { + "y" : 2, + "drilldown" : "Stephen G. Lynn", + "name" : "Stephen G. Lynn" + }, + { + "name" : "Thomas Kohler", + "y" : 4, + "drilldown" : "Thomas Kohler" + }, + { + "y" : 3, + "drilldown" : "W. Luis Mochan", + "name" : "W. Luis Mochan" + } + ], + "name" : "The Weekly Challenge - 215", + "colorByPoint" : 1 + } + ], "drilldown" : { "series" : [ { @@ -42,8 +84,8 @@ 2 ] ], - "id" : "Carlos Oliveira", - "name" : "Carlos Oliveira" + "name" : "Carlos Oliveira", + "id" : "Carlos Oliveira" }, { "data" : [ @@ -52,12 +94,12 @@ 2 ] ], - "id" : "David Ferrone", - "name" : "David Ferrone" + "name" : "David Ferrone", + "id" : "David Ferrone" }, { - "name" : "E. Choroba", "id" : "E. Choroba", + "name" : "E. Choroba", "data" : [ [ "Perl", @@ -80,18 +122,18 @@ ] }, { + "name" : "Lubos Kolouch", + "id" : "Lubos Kolouch", "data" : [ [ "Perl", 2 ] - ], - "name" : "Lubos Kolouch", - "id" : "Lubos Kolouch" + ] }, { - "name" : "Mark Anderson", "id" : "Mark Anderson", + "name" : "Mark Anderson", "data" : [ [ "Raku", @@ -100,8 +142,8 @@ ] }, { - "id" : "Niels van Dijke", "name" : "Niels van Dijke", + "id" : "Niels van Dijke", "data" : [ [ "Perl", @@ -110,8 +152,6 @@ ] }, { - "id" : "Peter Campbell Smith", - "name" : "Peter Campbell Smith", "data" : [ [ "Perl", @@ -121,11 +161,27 @@ "Blog", 1 ] - ] + ], + "name" : "Peter Campbell Smith", + "id" : "Peter Campbell Smith" + }, + { + "data" : [ + [ + "Perl", + 1 + ], + [ + "Raku", + 1 + ] + ], + "name" : "Robert DiCicco", + "id" : "Robert DiCicco" }, { - "id" : "Stephen G. Lynn", "name" : "Stephen G. Lynn", + "id" : "Stephen G. Lynn", "data" : [ [ "Perl", @@ -134,8 +190,6 @@ ] }, { - "name" : "Thomas Kohler", - "id" : "Thomas Kohler", "data" : [ [ "Perl", @@ -145,11 +199,11 @@ "Blog", 2 ] - ] + ], + "id" : "Thomas Kohler", + "name" : "Thomas Kohler" }, { - "id" : "W. Luis Mochan", - "name" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -159,71 +213,36 @@ "Blog", 1 ] - ] + ], + "name" : "W. Luis Mochan", + "id" : "W. Luis Mochan" } ] }, - "series" : [ - { - "colorByPoint" : 1, - "name" : "The Weekly Challenge - 215", - "data" : [ - { - "drilldown" : "Carlos Oliveira", - "name" : "Carlos Oliveira", - "y" : 2 - }, - { - "drilldown" : "David Ferrone", - "name" : "David Ferrone", - "y" : 2 - }, - { - "name" : "E. Choroba", - "y" : 2, - "drilldown" : "E. Choroba" - }, - { - "drilldown" : "James Smith", - "y" : 3, - "name" : "James Smith" - }, - { - "name" : "Lubos Kolouch", - "y" : 2, - "drilldown" : "Lubos Kolouch" - }, - { - "y" : 2, - "name" : "Mark Anderson", - "drilldown" : "Mark Anderson" - }, - { - "drilldown" : "Niels van Dijke", - "y" : 2, - "name" : "Niels van Dijke" - }, - { - "drilldown" : "Peter Campbell Smith", - "name" : "Peter Campbell Smith", - "y" : 3 - }, - { - "drilldown" : "Stephen G. Lynn", - "name" : "Stephen G. Lynn", - "y" : 2 - }, - { - "drilldown" : "Thomas Kohler", - "name" : "Thomas Kohler", - "y" : 4 - }, - { - "drilldown" : "W. Luis Mochan", - "name" : "W. Luis Mochan", - "y" : 3 - } - ] + "legend" : { + "enabled" : 0 + }, + "title" : { + "text" : "The Weekly Challenge - 215" + }, + "subtitle" : { + "text" : "[Champions: 12] Last updated at 2023-05-02 16:06:01 GMT" + }, + "xAxis" : { + "type" : "category" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 } - ] + }, + "tooltip" : { + "headerFormat" : "{series.name}
", + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
" + } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 3f525cdd58..d7352c8b1f 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,16 +1,43 @@ { - "legend" : { - "enabled" : "false" - }, "subtitle" : { - "text" : "Last updated at 2023-05-02 09:35:14 GMT" + "text" : "Last updated at 2023-05-02 16:06:01 GMT" }, - "title" : { - "text" : "The Weekly Challenge Contributions [2019 - 2023]" + "xAxis" : { + "type" : "category", + "labels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + } + }, + "tooltip" : { + "pointFormat" : "{point.y:.0f}" + }, + "chart" : { + "type" : "column" + }, + "yAxis" : { + "title" : { + "text" : null + }, + "min" : 0 }, "series" : [ { "name" : "Contributions", + "dataLabels" : { + "rotation" : -90, + "y" : 10, + "format" : "{point.y:.0f}", + "align" : "right", + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + }, + "color" : "#FFFFFF", + "enabled" : "true" + }, "data" : [ [ "Blog", @@ -18,46 +45,19 @@ ], [ "Perl", - 10916 + 10917 ], [ "Raku", - 6324 + 6325 ] - ], - "dataLabels" : { - "enabled" : "true", - "format" : "{point.y:.0f}", - "y" : 10, - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - }, - "align" : "right", - "color" : "#FFFFFF", - "rotation" : -90 - } + ] } ], - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - }, - "chart" : { - "type" : "column" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : null - } + "legend" : { + "enabled" : "false" }, - "xAxis" : { - "labels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - } - }, - "type" : "category" + "title" : { + "text" : "The Weekly Challenge Contributions [2019 - 2023]" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index b3d5f6d61f..0c0a85437c 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,3993 +1,128 @@ { "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2023-05-02 09:35:15 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2023-05-02 16:06:01 GMT" }, - "legend" : { - "enabled" : "false" + "xAxis" : { + "type" : "category" }, - "title" : { - "text" : "The Weekly Challenge Language" + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, + "tooltip" : { + "headerFormat" : "", + "followPointer" : "true", + "pointFormat" : "Challenge {point.name}: {point.y:f}
" }, "chart" : { "type" : "column" }, - "drilldown" : { - "series" : [ - { - "name" : "001", - "id" : "001", - "data" : [ - [ - "Perl", - 105 - ], - [ - "Raku", - 47 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 83 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 10 - ] - ], - "name" : "002", - "id" : "002" - }, - { - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "name" : "003", - "id" : "003" - }, - { - "id" : "004", - "name" : "004", - "data" : [ - [ - "Perl", - 60 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 12 - ] - ], - "name" : "005", - "id" : "005" - }, - { - "id" : "006", - "name" : "006", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 18 - ], - [ - "Blog", - 7 - ] - ] - }, - { - "name" : "007", - "id" : "007", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "id" : "008", - "name" : "008", - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "name" : "009", - "id" : "009", - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 13 - ] - ] - }, - { - "id" : "010", - "name" : "010", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "name" : "011", - "id" : "011", - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "id" : "012", - "name" : "012", - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 13 - ] - ], - "name" : "013", - "id" : "013" - }, - { - "name" : "014", - "id" : "014", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 15 - ] - ], - "name" : "015", - "id" : "015" - }, - { - "name" : "016", - "id" : "016", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ], - "id" : "017", - "name" : "017" - }, - { - "name" : "018", - "id" : "018", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "id" : "019", - "name" : "019", - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 13 - ] - ] - }, - { - "id" : "020", - "name" : "020", - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 13 - ] - ] - }, - { - "name" : "021", - "id" : "021", - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "id" : "022", - "name" : "022", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "id" : "023", - "name" : "023", - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "id" : "024", - "name" : "024", - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "id" : "025", - "name" : "025", - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "id" : "026", - "name" : "026", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "id" : "027", - "name" : "027", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 9 - ] - ], - "id" : "028", - "name" : "028" - }, - { - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ], - "name" : "029", - "id" : "029" - }, - { - "name" : "030", - "id" : "030", - "data" : [ - [ - "Perl", - 78 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 54 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "id" : "031", - "name" : "031" - }, - { - "data" : [ - [ - "Perl", - 61 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 10 - ] - ], - "name" : "032", - "id" : "032" - }, - { - "data" : [ - [ - "Perl", - 66 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 10 - ] - ], - "name" : "033", - "id" : "033" - }, - { - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 11 - ] - ], - "id" : "034", - "name" : "034" - }, - { - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ], - "name" : "035", - "id" : "035" - }, - { - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 11 - ] - ], - "name" : "036", - "id" : "036" - }, - { - "id" : "037", - "name" : "037", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "name" : "038", - "id" : "038", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 12 - ] - ], - "name" : "039", - "id" : "039" - }, - { - "id" : "040", - "name" : "040", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "name" : "041", - "id" : "041", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 11 - ] - ], - "name" : "042", - "id" : "042" - }, - { - "id" : "043", - "name" : "043", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 11 - ] - ], - "id" : "044", - "name" : "044" - }, - { - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 11 - ] - ], - "id" : "045", - "name" : "045" - }, - { - "id" : "046", - "name" : "046", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "id" : "047", - "name" : "047", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 63 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 12 - ] - ], - "id" : "048", - "name" : "048" - }, - { - "data" : [ - [ - "Perl", - 54 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ], - "id" : "049", - "name" : "049" - }, - { - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 12 - ] - ], - "id" : "050", - "name" : "050" - }, - { - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 11 - ] - ], - "name" : "051", - "id" : "051" - }, - { - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 14 - ] - ], - "id" : "052", - "name" : "052" - }, - { - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 41 - ], - [ - "Blog", - 15 - ] - ], - "id" : "053", - "name" : "053" - }, - { - "id" : "054", - "name" : "054", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 40 - ], - [ - "Blog", - 18 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 14 - ] - ], - "id" : "055", - "name" : "055" - }, - { - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 16 - ] - ], - "name" : "056", - "id" : "056" - }, - { - "id" : "057", - "name" : "057", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "id" : "058", - "name" : "058", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 13 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 16 - ] - ], - "id" : "059", - "name" : "059" - }, - { - "id" : "060", - "name" : "060", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "name" : "061", - "id" : "061", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 30 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 11 - ] - ], - "id" : "062", - "name" : "062" - }, - { - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 13 - ] - ], - "name" : "063", - "id" : "063" - }, - { - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 16 - ] - ], - "id" : "064", - "name" : "064" - }, - { - "data" : [ - [ - "Perl", - 34 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ], - "name" : "065", - "id" : "065" - }, - { - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ], - "id" : "066", - "name" : "066" - }, - { - "id" : "067", - "name" : "067", - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 18 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 13 - ] - ], - "name" : "068", - "id" : "068" - }, - { - "name" : "069", - "id" : "069", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 17 - ] - ], - "id" : "070", - "name" : "070" - }, - { - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 15 - ] - ], - "id" : "071", - "name" : "071" - }, - { - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 42 - ], - [ - "Blog", - 19 - ] - ], - "name" : "072", - "id" : "072" - }, - { - "data" : [ - [ - "Perl", - 55 - ], - [ - "Raku", - 40 - ], - [ - "Blog", - 17 - ] - ], - "id" : "073", - "name" : "073" - }, - { - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 39 - ], - [ - "Blog", - 20 - ] - ], - "name" : "074", - "id" : "074" - }, - { - "id" : "075", - "name" : "075", - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 20 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 16 - ] - ], - "id" : "076", - "name" : "076" - }, - { - "id" : "077", - "name" : "077", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 68 - ], - [ - "Raku", - 41 - ], - [ - "Blog", - 18 - ] - ], - "id" : "078", - "name" : "078" - }, - { - "name" : "079", - "id" : "079", - "data" : [ - [ - "Perl", - 68 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "id" : "080", - "name" : "080", - "data" : [ - [ - "Perl", - 75 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "name" : "081", - "id" : "081", - "data" : [ - [ - "Perl", - 65 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 62 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 17 - ] - ], - "id" : "082", - "name" : "082" - }, - { - "id" : "083", - "name" : "083", - "data" : [ - [ - "Perl", - 73 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "name" : "084", - "id" : "084", - "data" : [ - [ - "Perl", - 71 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "id" : "085", - "name" : "085", - "data" : [ - [ - "Perl", - 64 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 18 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 15 - ] - ], - "id" : "086", - "name" : "086" - }, - { - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ], - "id" : "087", - "name" : "087" - }, - { - "data" : [ - [ - "Perl", - 65 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 20 - ] - ], - "id" : "088", - "name" : "088" - }, - { - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 20 - ] - ], - "name" : "089", - "id" : "089" - }, - { - "name" : "090", - "id" : "090", - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 39 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 16 - ] - ], - "id" : "091", - "name" : "091" - }, - { - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 16 - ] - ], - "name" : "092", - "id" : "092" - }, - { - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 16 - ] - ], - "name" : "093", - "id" : "093" - }, - { - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 17 - ] - ], - "id" : "094", - "name" : "094" - }, - { - "id" : "095", - "name" : "095", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 19 - ] - ] - }, - { - "name" : "096", - "id" : "096", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 19 - ] - ] - }, - { - "id" : "097", - "name" : "097", - "data" : [ - [ - "Perl", - 63 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 19 - ] - ] - }, - { - "name" : "098", - "id" : "098", - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "name" : "099", - "id" : "099", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 69 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 21 - ] - ], - "id" : "100", - "name" : "100" - }, - { - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 13 - ] - ], - "id" : "101", - "name" : "101" - }, - { - "name" : "102", - "id" : "102", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "id" : "103", - "name" : "103", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "id" : "104", - "name" : "104", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "name" : "105", - "id" : "105", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 17 - ] - ], - "id" : "106", - "name" : "106" - }, - { - "id" : "107", - "name" : "107", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 19 - ] - ] - }, - { - "name" : "108", - "id" : "108", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 20 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 22 - ] - ], - "name" : "109", - "id" : "109" - }, - { - "name" : "110", - "id" : "110", - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 25 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 17 - ] - ], - "id" : "111", - "name" : "111" - }, - { - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 19 - ] - ], - "name" : "112", - "id" : "112" - }, - { - "id" : "113", - "name" : "113", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 19 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 21 - ] - ], - "name" : "114", - "id" : "114" - }, - { - "id" : "115", - "name" : "115", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 29 - ], - [ - "B