From 15aa8637d53cf3eb5d99b6167a73ad477cd9f467 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Tue, 16 May 2023 12:41:34 +0100 Subject: - Added solutions by Niels van Dijke. - Added solutions by Peter Campbell Smith. - Added solutions by Mark Anderson. - Added solutions by Ali Moradi. - Added solutions by David Ferrone. - Added solutions by Leo Manfredi. - Added solutions by W. Luis Mochan. - Added solutions by Thomas Kohler. - Added solutions by Stephen G. Lynn. - Added solutions by Robert DiCicco. --- challenge-217/eric-cheung/python/ch-1.py | 14 + challenge-217/eric-cheung/python/ch-2.py | 19 + challenge-217/jeanluc2020/blog-1.txt | 1 - challenge-217/jeanluc2020/blog-2.txt | 1 - challenge-217/jeanluc2020/blog.txt | 1 + challenge-217/jeanluc2020/blog1.txt | 1 + challenge-217/perlboy1967/perl/ch-1.pl | 56 + challenge-217/perlboy1967/perl/ch-2.pl | 35 + challenge-217/perlboy1967/perl/ch1.pl | 56 - challenge-217/perlboy1967/perl/ch2.pl | 35 - challenge-217/robert-dicicco/julia/ch-1.jl | 68 + challenge-217/robert-dicicco/perl/ch-1.pl | 59 + challenge-217/robert-dicicco/perl/ch-2.pl | 51 + challenge-217/robert-dicicco/python/ch-1.py | 34 + challenge-217/robert-dicicco/raku/ch-1.raku | 30 + challenge-217/robert-dicicco/raku/ch-2.raku | 48 + challenge-217/robert-dicicco/ruby/ch-1.rb | 55 + challenge-217/robert-dicicco/ruby/ch-2.rb | 49 + stats/pwc-challenge-216.json | 593 ++ stats/pwc-current.json | 567 +- stats/pwc-language-breakdown-summary.json | 68 +- stats/pwc-language-breakdown.json | 8525 ++++++++++++++------------- stats/pwc-leaders.json | 432 +- stats/pwc-summary-1-30.json | 56 +- stats/pwc-summary-121-150.json | 106 +- stats/pwc-summary-151-180.json | 90 +- stats/pwc-summary-181-210.json | 46 +- stats/pwc-summary-211-240.json | 100 +- stats/pwc-summary-241-270.json | 30 +- stats/pwc-summary-271-300.json | 38 +- stats/pwc-summary-31-60.json | 26 +- stats/pwc-summary-61-90.json | 48 +- stats/pwc-summary-91-120.json | 98 +- stats/pwc-summary.json | 1800 +++--- 34 files changed, 6954 insertions(+), 6282 deletions(-) create mode 100755 challenge-217/eric-cheung/python/ch-1.py create mode 100755 challenge-217/eric-cheung/python/ch-2.py delete mode 100644 challenge-217/jeanluc2020/blog-1.txt delete mode 100644 challenge-217/jeanluc2020/blog-2.txt create mode 100644 challenge-217/jeanluc2020/blog.txt create mode 100644 challenge-217/jeanluc2020/blog1.txt create mode 100755 challenge-217/perlboy1967/perl/ch-1.pl create mode 100755 challenge-217/perlboy1967/perl/ch-2.pl delete mode 100755 challenge-217/perlboy1967/perl/ch1.pl delete mode 100755 challenge-217/perlboy1967/perl/ch2.pl create mode 100644 challenge-217/robert-dicicco/julia/ch-1.jl create mode 100644 challenge-217/robert-dicicco/perl/ch-1.pl create mode 100644 challenge-217/robert-dicicco/perl/ch-2.pl create mode 100644 challenge-217/robert-dicicco/python/ch-1.py create mode 100644 challenge-217/robert-dicicco/raku/ch-1.raku create mode 100644 challenge-217/robert-dicicco/raku/ch-2.raku create mode 100644 challenge-217/robert-dicicco/ruby/ch-1.rb create mode 100644 challenge-217/robert-dicicco/ruby/ch-2.rb create mode 100644 stats/pwc-challenge-216.json diff --git a/challenge-217/eric-cheung/python/ch-1.py b/challenge-217/eric-cheung/python/ch-1.py new file mode 100755 index 0000000000..5e86bfde73 --- /dev/null +++ b/challenge-217/eric-cheung/python/ch-1.py @@ -0,0 +1,14 @@ + +import numpy as np + +## arrMatrix = np.array([[3, 1, 2], [5, 2, 4], [0, 1, 3]]) ## Example 1 +## arrMatrix = np.array([[2, 1], [4, 5]]) ## Example 2 +arrMatrix = np.array([[1, 0, 3], [0, 0, 0], [1, 2, 1]]) ## Example 3 + +arrList = arrMatrix.flatten() +arrList.sort() + +if len(arrList) >= 3: + print (arrList[2]) +else: + print (0) diff --git a/challenge-217/eric-cheung/python/ch-2.py b/challenge-217/eric-cheung/python/ch-2.py new file mode 100755 index 0000000000..e1ea9d96d0 --- /dev/null +++ b/challenge-217/eric-cheung/python/ch-2.py @@ -0,0 +1,19 @@ + +from itertools import permutations + +## arrList = [1, 23] ## Example 1 +## arrList = [10, 3, 2] ## Example 2 +## arrList = [31, 2, 4, 10] ## Example 3 +## arrList = [5, 11, 4, 1, 2] ## Example 4 +arrList = [1, 10] ## Example 5 + +arrPerm = permutations(arrList) + +nMax = 0 + +for arrLoop in arrPerm: + strTempNum = "".join([str(nElemLoop) for nElemLoop in arrLoop]) + if int(strTempNum) > nMax: + nMax = int(strTempNum) + +print (nMax) diff --git a/challenge-217/jeanluc2020/blog-1.txt b/challenge-217/jeanluc2020/blog-1.txt deleted file mode 100644 index 6d650ff709..0000000000 --- a/challenge-217/jeanluc2020/blog-1.txt +++ /dev/null @@ -1 +0,0 @@ -http://gott-gehabt.de/800_wer_wir_sind/thomas/Homepage/Computer/perl/theweeklychallenge-217-1.html diff --git a/challenge-217/jeanluc2020/blog-2.txt b/challenge-217/jeanluc2020/blog-2.txt deleted file mode 100644 index 8505a12af1..0000000000 --- a/challenge-217/jeanluc2020/blog-2.txt +++ /dev/null @@ -1 +0,0 @@ -http://gott-gehabt.de/800_wer_wir_sind/thomas/Homepage/Computer/perl/theweeklychallenge-217-2.html diff --git a/challenge-217/jeanluc2020/blog.txt b/challenge-217/jeanluc2020/blog.txt new file mode 100644 index 0000000000..6d650ff709 --- /dev/null +++ b/challenge-217/jeanluc2020/blog.txt @@ -0,0 +1 @@ +http://gott-gehabt.de/800_wer_wir_sind/thomas/Homepage/Computer/perl/theweeklychallenge-217-1.html diff --git a/challenge-217/jeanluc2020/blog1.txt b/challenge-217/jeanluc2020/blog1.txt new file mode 100644 index 0000000000..8505a12af1 --- /dev/null +++ b/challenge-217/jeanluc2020/blog1.txt @@ -0,0 +1 @@ +http://gott-gehabt.de/800_wer_wir_sind/thomas/Homepage/Computer/perl/theweeklychallenge-217-2.html diff --git a/challenge-217/perlboy1967/perl/ch-1.pl b/challenge-217/perlboy1967/perl/ch-1.pl new file mode 100755 index 0000000000..5de8809b9b --- /dev/null +++ b/challenge-217/perlboy1967/perl/ch-1.pl @@ -0,0 +1,56 @@ +#!/bin/perl + +=pod + +The Weekly Challenge - 217 +- https://theweeklychallenge.org/blog/perl-weekly-challenge-217 + +Author: Niels 'PerlBoy' van Dijke + +Task 1: Sorted Matrix +Submitted by: Mohammad S Anwar + +You are given a n x n matrix where n >= 2. + +Write a script to find 3rd smallest element in the sorted matrix. + +=cut + +use v5.16; + +use common::sense; + +use List::MoreUtils qw(arrayify); + +use Test::More; + +sub nthElement ($\@) { + (sort{$a<=>$b}arrayify($_[1]))[$_[0]-1]; +} + +is(nthElement(3,@{[ + [3,1,2], + [5,2,4], + [0,1,3], + ]}),1); +is(nthElement(3,@{[ + [2,1], + [4,5], + ]}),4); +is(nthElement(3,@{[ + [1,0,3], + [0,0,0], + [1,2,1], + ]}),0); +is(nthElement(4,@{[ + [3,1,2], + [5,2,4], + [0,1,3], + ]}),2); +is(nthElement(12,@{[ + [[0,1,2],[3,4,5],[6,7,8]], + [[0,0,0],[0,0,0],[0,0,0]], + [[8,7,6],[5,4,3],[2,1,0]], + ]}),1); + +done_testing; diff --git a/challenge-217/perlboy1967/perl/ch-2.pl b/challenge-217/perlboy1967/perl/ch-2.pl new file mode 100755 index 0000000000..60d238fdf7 --- /dev/null +++ b/challenge-217/perlboy1967/perl/ch-2.pl @@ -0,0 +1,35 @@ +#!/bin/perl + +=pod + +The Weekly Challenge - 217 +- https://theweeklychallenge.org/blog/perl-weekly-challenge-217 + +Author: Niels 'PerlBoy' van Dijke + +Task 2: Max Number +Submitted by: Mohammad S Anwar + +You are given a list of positive integers. + +Write a script to concatenate the integers to form the highest possible value. + +=cut + +use v5.16; + +use common::sense; + +use Test::More; + +sub maxNumber (@) { + join('',sort{$b.$a<=>$a.$b}@_); +} + +is(maxNumber(1,23),231); +is(maxNumber(10,3,2),3210); +is(maxNumber(31,2,4,10),431210); +is(maxNumber(5,11,4,1,2),542111); +is(maxNumber(1,10),110); + +done_testing; diff --git a/challenge-217/perlboy1967/perl/ch1.pl b/challenge-217/perlboy1967/perl/ch1.pl deleted file mode 100755 index 5de8809b9b..0000000000 --- a/challenge-217/perlboy1967/perl/ch1.pl +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/perl - -=pod - -The Weekly Challenge - 217 -- https://theweeklychallenge.org/blog/perl-weekly-challenge-217 - -Author: Niels 'PerlBoy' van Dijke - -Task 1: Sorted Matrix -Submitted by: Mohammad S Anwar - -You are given a n x n matrix where n >= 2. - -Write a script to find 3rd smallest element in the sorted matrix. - -=cut - -use v5.16; - -use common::sense; - -use List::MoreUtils qw(arrayify); - -use Test::More; - -sub nthElement ($\@) { - (sort{$a<=>$b}arrayify($_[1]))[$_[0]-1]; -} - -is(nthElement(3,@{[ - [3,1,2], - [5,2,4], - [0,1,3], - ]}),1); -is(nthElement(3,@{[ - [2,1], - [4,5], - ]}),4); -is(nthElement(3,@{[ - [1,0,3], - [0,0,0], - [1,2,1], - ]}),0); -is(nthElement(4,@{[ - [3,1,2], - [5,2,4], - [0,1,3], - ]}),2); -is(nthElement(12,@{[ - [[0,1,2],[3,4,5],[6,7,8]], - [[0,0,0],[0,0,0],[0,0,0]], - [[8,7,6],[5,4,3],[2,1,0]], - ]}),1); - -done_testing; diff --git a/challenge-217/perlboy1967/perl/ch2.pl b/challenge-217/perlboy1967/perl/ch2.pl deleted file mode 100755 index 60d238fdf7..0000000000 --- a/challenge-217/perlboy1967/perl/ch2.pl +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/perl - -=pod - -The Weekly Challenge - 217 -- https://theweeklychallenge.org/blog/perl-weekly-challenge-217 - -Author: Niels 'PerlBoy' van Dijke - -Task 2: Max Number -Submitted by: Mohammad S Anwar - -You are given a list of positive integers. - -Write a script to concatenate the integers to form the highest possible value. - -=cut - -use v5.16; - -use common::sense; - -use Test::More; - -sub maxNumber (@) { - join('',sort{$b.$a<=>$a.$b}@_); -} - -is(maxNumber(1,23),231); -is(maxNumber(10,3,2),3210); -is(maxNumber(31,2,4,10),431210); -is(maxNumber(5,11,4,1,2),542111); -is(maxNumber(1,10),110); - -done_testing; diff --git a/challenge-217/robert-dicicco/julia/ch-1.jl b/challenge-217/robert-dicicco/julia/ch-1.jl new file mode 100644 index 0000000000..7bfd1de831 --- /dev/null +++ b/challenge-217/robert-dicicco/julia/ch-1.jl @@ -0,0 +1,68 @@ +#!/usr/bin/env julia +#= +-------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-05-15 +Challenge 217 Sorted Matrix ( Julia ) +-------------------------------------- +=# +using Printf + +function checkArgs(args) + global arg + try + arg = parse(Int64, args[1]) + catch + println("Error: Argument must be an integer") + exit(0) + finally + main(arg) + end +end + + +matrix = [] +out = [] + +function main(arg) + global matrix, out + if arg == 0 + matrix = [[3,1,2],[5,2,4],[0,1,3]] + elseif arg == 1 + matrix = [[2,1], [4,5]] + #println(matrix) + elseif arg == 2 + matrix = [[1,0,3],[0,0,0],[ 1,2,1]]; + #println(matrix) + else + println("Error! arg must be between 0 and 2 inclusive") + end + @printf("Input: @matrix = %s\n",matrix) + for arr in matrix + for val in arr + push!(out, val) + end + end + @printf("%s\n",sort(out)[3]) +end + +checkArgs(ARGS) + +#= +-------------------------------------- +SAMPLE OUTPUT +julia .\SortedMatrix.jl 0 +Input: @matrix = [[3, 1, 2], [5, 2, 4], [0, 1, 3]] +1 + +PS G:\Projects\Perl\Challenges> julia .\SortedMatrix.jl 1 +Input: @matrix = [[2, 1], [4, 5]] +4 + +PS G:\Projects\Perl\Challenges> julia .\SortedMatrix.jl 2 +Input: @matrix = [[1, 0, 3], [0, 0, 0], [1, 2, 1]] +0 +-------------------------------------- +=# + + diff --git a/challenge-217/robert-dicicco/perl/ch-1.pl b/challenge-217/robert-dicicco/perl/ch-1.pl new file mode 100644 index 0000000000..c61474a0df --- /dev/null +++ b/challenge-217/robert-dicicco/perl/ch-1.pl @@ -0,0 +1,59 @@ +#!/usr/bin/env perl +=begin comment +-------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-05-15 +Challenge 217 Sorted Matrix ( Perl ) +-------------------------------------- +=cut + +use strict; +use warnings; +use feature 'say'; + +my @matrix = (); +my $array = $ARGV[0]; +if ($array < 0 or $array > 2) { say "Error! arg must be between 0 and 2 inclusive";exit}; + +if ($array == 0) { + @matrix = ((3, 1, 2), (5, 2, 4), (0, 1, 3)); +} elsif ($array == 1) { + @matrix = ((2, 1), (4, 5)); +} elsif ($array == 2) { + @matrix = ((1, 0, 3), (0, 0, 0), (1, 2, 1)); +} else { + # should never get here! +} + +my @out = (); + + +print "Input: \@matrix = "; +for (@matrix) { + print "$_"; + for my $val ($_) { + push(@out, $val); + } +} +say " "; +@out = sort(@out); +say "Output: $out[2]"; + +=begin comment +-------------------------------------- +SAMPLE OUTPUT +perl .\SortedMatrix.pl 0 +Input: @matrix = 312524013 +Output: 1 + +PS G:\Projects\Perl\Challenges> perl .\SortedMatrix.pl 1 +Input: @matrix = 2145 +Output: 4 + +PS G:\Projects\Perl\Challenges> perl .\SortedMatrix.pl 2 +Input: @matrix = 103000121 +Output: 0 +-------------------------------------- +=cut + + diff --git a/challenge-217/robert-dicicco/perl/ch-2.pl b/challenge-217/robert-dicicco/perl/ch-2.pl new file mode 100644 index 0000000000..8055b78118 --- /dev/null +++ b/challenge-217/robert-dicicco/perl/ch-2.pl @@ -0,0 +1,51 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use feature 'say'; +use Algorithm::Permute; +=begin comment +--------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-05-15 +Challenge 217 Max Number ( Perl ) +--------------------------------------- +=cut + +my @list = ([5,11,4,1,2],[31, 2, 4,10],[10,3,2],[1, 23],[1,10]); +my $max = 0; + +for my $lst (@list) { + print("Input: \@list = [@$lst]\n"); + my $p_iterator = Algorithm::Permute->new ( $lst ); + while (my @perm = $p_iterator->next) { + my $num = join("",@perm); + if ($num > $max) { + $max = $num; + } + } + print("Output: $max\n\n"); + $max = 0; +} + +=begin comment +--------------------------------------- +SAMPLE OUTPUT +perl MaxNumber.pl +Input: @list = [5 11 4 1 2] +Output: 542111 + +Input: @list = [31 2 4 10] +Output: 431210 + +Input: @list = [10 3 2] +Output: 3210 + +Input: @list = [1 23] +Output: 231 + +Input: @list = [1 10] +Output: 110 +--------------------------------------- +=cut + + diff --git a/challenge-217/robert-dicicco/python/ch-1.py b/challenge-217/robert-dicicco/python/ch-1.py new file mode 100644 index 0000000000..7ef01fac80 --- /dev/null +++ b/challenge-217/robert-dicicco/python/ch-1.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python +# -------------------------------------- +# AUTHOR: Robert DiCicco +# DATE : 2023-05-15 +# Challenge 217 Sorted Matrix ( Python ) +# -------------------------------------- + +matrix = [[3,1,2],[5,2,4],[0,1,3]], [[2,1], [4,5]], [[1,0,3],[0,0,0],[ 1,2,1]] + +for mat in matrix: + out = [] + print("Input: @matrix = ",mat) + for arr in mat: + for num in arr: + out.append(num) + out.sort() + print("out = ",out[2]) + print(" ") + + +# ------------------------------------- +# SAMPLE OUTPUT +# python .\SortedMatrix.py +# Input: @matrix = [[3, 1, 2], [5, 2, 4], [0, 1, 3]] +# out = 1 + +# Input: @matrix = [[2, 1], [4, 5]] +# out = 4 + +# Input: @matrix = [[1, 0, 3], [0, 0, 0], [1, 2, 1]] +# out = 0 +# ------------------------------------- + + diff --git a/challenge-217/robert-dicicco/raku/ch-1.raku b/challenge-217/robert-dicicco/raku/ch-1.raku new file mode 100644 index 0000000000..faa15be764 --- /dev/null +++ b/challenge-217/robert-dicicco/raku/ch-1.raku @@ -0,0 +1,30 @@ +#!/usr/bin/env raku +use v6; +=begin comment +-------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-05-15 +Challenge 217 Sorted Matrix ( Perl ) +-------------------------------------- +=end comment + +my @matrix = <3 1 2 5 2 4 0 1 3>,<2 1 4 5>,<1 0 3 0 0 0 1 2 1>; + +for (@matrix) -> @sub { + say "Input: \@matrix = ",@sub; + say "Output: ", @sub.sort[2]; +} +=begin comment +-------------------------------------- +SAMPLE OUTPUT +raku SortedMatrix.rk +Input: @matrix = (3 1 2 5 2 4 0 1 3) +Output: 1 + +Input: @matrix = (2 1 4 5) +Output: 4 + +Input: @matrix = (1 0 3 0 0 0 1 2 1) +Output: 0 +-------------------------------------- +=end comment diff --git a/challenge-217/robert-dicicco/raku/ch-2.raku b/challenge-217/robert-dicicco/raku/ch-2.raku new file mode 100644 index 0000000000..0864872144 --- /dev/null +++ b/challenge-217/robert-dicicco/raku/ch-2.raku @@ -0,0 +1,48 @@ +#!/usr/bin/env raku +use v6; +=begin comment +--------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-05-15 +Challenge 217 Max Number ( Raku ) +--------------------------------------- +=end comment + + +my @list = ([5,11,4,1,2],[31, 2, 4,10],[10,3,2],[1, 23],[1,10]); +my $max = 0; + +for (@list) -> @lst { + print("Input: @list = ",@lst,"\n"); + for @lst.permutations -> $p { + my $num = $p.join; + if $num > $max { + $max = $num; + } + } + say "Output: $max\n"; + $max = 0; +} + +=begin comment +--------------------------------------- +SAMPLE OUTPUT +raku MaxNumber.rk +Input: @list = 5 11 4 1 2 +Output: 542111 + +Input: @list = 31 2 4 10 +Output: 431210 + +Input: @list = 10 3 2 +Output: 3210 + +Input: @list = 1 23 +Output: 231 + +Input: @list = 1 10 +Output: 110 +--------------------------------------- +=end comment + + diff --git a/challenge-217/robert-dicicco/ruby/ch-1.rb b/challenge-217/robert-dicicco/ruby/ch-1.rb new file mode 100644 index 0000000000..5602546510 --- /dev/null +++ b/challenge-217/robert-dicicco/ruby/ch-1.rb @@ -0,0 +1,55 @@ +#!/usr/bin/env ruby +=begin comment +-------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-05-15 +Challenge 217 Sorted Matrix ( Ruby ) +-------------------------------------- +=end comment +arg = ARGV[0].to_i +if ARGV.length == 0 + puts("Error! arg must be between 0 and 2 inclusive") + exit +end + + +if arg < 0 or arg > 2 + puts("Error! arg must be between 0 and 2 inclusive") + exit +end +case arg +when 0 + matrix = [[3,1,2],[5,2,4],[0,1,3]] +when 1 + matrix = [[2,1], [4,5]] +when 2 + matrix = [[1,0,3],[0,0,0],[ 1,2,1]]; +end +out = [] +puts("Input @matrix = #{matrix}") +matrix.each do |arr| + arr.each do |val| + out.push(val) + end +end +puts("Output: #{out.sort![2]}") +puts(" ") + +=begin comment +-------------------------------------- +SAMPLE OUTPUT +ruby .\SortedMatrix.rb 0 +Input @matrix = [[3, 1, 2], [5, 2, 4], [0, 1, 3]] +Output: 1 + +PS G:\Projects\Perl\Challenges> ruby .\SortedMatrix.rb 1 +Input @matrix = [[2, 1], [4, 5]] +Output: 4 + +PS G:\Projects\Perl\Challenges> ruby .\SortedMatrix.rb 2 +Input @matrix = [[1, 0, 3], [0, 0, 0], [1, 2, 1]] +Output: 0 +-------------------------------------- +=end comment + + diff --git a/challenge-217/robert-dicicco/ruby/ch-2.rb b/challenge-217/robert-dicicco/ruby/ch-2.rb new file mode 100644 index 0000000000..e60f8d704a --- /dev/null +++ b/challenge-217/robert-dicicco/ruby/ch-2.rb @@ -0,0 +1,49 @@ +#!/usr/bin/env ruby +=begin +--------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-05-15 +Challenge 217 Max Number ( Ruby ) +--------------------------------------- +=end + +list = [[5,11,4,1,2],[31, 2, 4,10],[10,3,2],[1, 23],[1,10]]; +max = 0 + +list.each do |lst| + puts("Input: @list = #{lst}") + ln = lst.length() + lst.permutation(ln) do |item| + n = (item.join).to_i + if n > max + max = n + end + end + puts("Output: #{max}") + puts("") + max = 0 +end + +=begin +--------------------------------------- +SAMPLE OUTPUT +ruby MaxNumber.rb +Input: @list = [5, 11, 4, 1, 2] +Output: 542111 + +Input: @list = [31, 2, 4, 10] +Output: 431210 + +Input: @list = [10, 3, 2] +Output: 3210 + +Input: @list = [1, 23] +Output: 231 + +Input: @list = [1, 10] +Output: 110 +--------------------------------------- +=end + + + diff --git a/stats/pwc-challenge-216.json b/stats/pwc-challenge-216.json new file mode 100644 index 0000000000..27723919f8 --- /dev/null +++ b/stats/pwc-challenge-216.json @@ -0,0 +1,593 @@ +{ + "title" : { + "text" : "The Weekly Challenge - 216" + }, + "legend" : { + "enabled" : 0 + }, + "drilldown" : { + "series" : [ + { + "name" : "Arne Sommer", + "data" : [ + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Arne Sommer" + }, + { + "id" : "Avery Adams", + "data" : [ + [ + "Perl", + 1 + ], + [ + "Blog", + 2 + ] + ], + "name" : "Avery Adams" + }, + { + "name" : "BarrOff", + "data" : [ + [ + "Raku", + 1 + ] + ], + "id" : "BarrOff" + }, + { + "id" : "Bruce Gray", + "data" : [ + [ + "Raku", + 2 + ] + ], + "name" : "Bruce Gray" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "David Ferrone", + "id" : "David Ferrone" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Duncan C. White", + "id" : "Duncan C. White" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "E. Choroba", + "id" : "E. Choroba" + }, + { + "id" : "Feng Chang", + "name" : "Feng Chang", + "data" : [ + [ + "Raku", + 2 + ] + ] + }, + { + "name" : "Flavio Poletti", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 2 + ] + ], + "id" : "Flavio Poletti" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Jaldhar H. Vyas", + "id" : "Jaldhar H. Vyas" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "James Smith", + "id" : "James Smith" + }, + { + "id" : "Jan Krnavek", + "data" : [ + [ + "Raku", + 1 + ] + ], + "name" : "Jan Krnavek" + }, + { + "id" : "Jorg Sommrey", + "name" : "Jorg Sommrey", + "data" : [ + [ + "Perl", + 1 + ] + ] + }, + { + "name" : "Laurent Rosenfeld", + "data" : [ + [ + "Perl", + 1 + ], + [ + "Raku", + 1 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Laurent Rosenfeld" + }, + { + "data" : [ + [ + "Perl", + 1 + ] + ], + "name" : "Leo Manfredi", + "id" : "Leo Manfredi" + }, + { + "name" : "Lubos Kolouch", + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Lubos Kolouch" + }, + { + "id" : "Luca Ferrari", + "data" : [ + [ + "Raku", + 2 + ], + [ + "Blog", + 6 + ] + ], + "name" : "Luca Ferrari" + }, + { + "data" : [ + [ + "Raku", + 2 + ] + ], + "name" : "Mark Anderson", + "id" : "Mark Anderson" + }, + { + "name" : "Matthias Muth", + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Matthias Muth" + }, + { + "id" : "Niels van Dijke", + "data" : [ + [ + "Perl", + 1 + ] + ], + "name" : "Niels van Dijke" + }, + { + "id" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "RibTips", + "id" : "RibTips" + }, + { + "id" : "Robbie Hatley", + "name" : "Robbie Hatley", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 1 + ], + [ + "Raku", + 1 + ] + ], + "name" : "Robert DiCicco", + "id" : "Robert DiCicco" + }, + { + "id" : "Roger Bell_West", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Roger Bell_West" + }, + { + "id" : "Shimon Bollinger", + "data" : [ + [ + "Raku", + 1 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Shimon Bollinger" + }, + { + "name" : "Simon Green", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Simon Green" + }, + { + "data" : [ + [ + "Perl", + 1 + ] + ], + "name" : "Solathian", + "id" : "Solathian" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 2 + ] + ], + "name" : "Thomas Kohler", + "id" : "Thomas Kohler" + }, + { + "id" : "Ulrich Rieke", + "name" : "Ulrich Rieke", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 1 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "W. Luis Mochan", + "id" : "W. Luis Mochan" + } + ] + }, + "chart" : { + "type" : "column" + }, + "subtitle" : { + "text" : "[Champions: 31] Last updated at 2023-05-16 11:28:38 GMT" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "tooltip" : { + "headerFormat" : "{series.name}
", + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } + } + }, + "series" : [ + { + "colorByPoint" : 1, + "data" : [ + { + "name" : "Arne Sommer", + "y" : 3, + "drilldown" : "Arne Sommer" + }, + { + "drilldown" : "Avery Adams", + "y" : 3, + "name" : "Avery Adams" + }, + { + "name" : "BarrOff", + "y" : 1, + "drilldown" : "BarrOff" + }, + { + "drilldown" : "Bruce Gray", + "name" : "Bruce Gray", + "y" : 2 + }, + { + "name" : "David Ferrone", + "y" : 2, + "drilldown" : "David Ferrone" + }, + { + "name" : "Duncan C. White", + "y" : 2, + "drilldown" : "Duncan C. White" + }, + { + "drilldown" : "E. Choroba", + "y" : 2, + "name" : "E. Choroba" + }, + { + "drilldown" : "Feng Chang", + "name" : "Feng Chang", + "y" : 2 + }, + { + "y" : 6, + "name" : "Flavio Poletti", + "drilldown" : "Flavio Poletti" + }, + { + "drilldown" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas", + "y" : 5 + }, + { + "drilldown" : "James Smith", + "y" : 3, + "name" : "James Smith" + }, + { + "drilldown" : "Jan Krnavek", + "name" : "Jan Krnavek", + "y" : 1 + }, + { + "name" : "Jorg Sommrey", + "y" : 1, + "drilldown" : "Jorg Sommrey" + }, + { + "drilldown" : "Laurent Rosenfeld", + "y" : 3, + "name" : "Laurent Rosenfeld" + }, + { + "drilldown" : "Leo Manfredi", + "y" : 1, + "name" : "Leo Manfredi" + }, + { + "drilldown" : "Lubos Kolouch", + "y" : 2, + "name" : "Lubos Kolouch" + }, + { + "drilldown" : "Luca Ferrari", + "name" : "Luca Ferrari", + "y" : 8 + }, + { + "name" : "Mark Anderson", + "y" : 2, + "drilldown" : "Mark Anderson" + }, + { + "drilldown" : "Matthias Muth", + "name" : "Matthias Muth", + "y" : 2 + }, + { + "drilldown" : "Niels van Dijke", + "name" : "Niels van Dijke", + "y" : 1 + }, + { + "drilldown" : "Peter Campbell Smith", + "y" : 3, + "name" : "Peter Campbell Smith" + }, + { + "name" : "RibTips", + "y" : 2, + "drilldown" : "RibTips" + }, + { + "name" : "Robbie Hatley", + "y" : 3, + "drilldown" : "Robbie Hatley" + }, + { + "drilldown" : "Robert DiCicco", + "name" : "Robert DiCicco", + "y" : 2 + }, + { + "name" : "Roger Bell_West", + "y" : 5, + "drilldown" : "Roger Bell_West" + }, + { + "name" : "Shimon Bollinger", + "y" : 2, + "drilldown" : "Shimon Bollinger" + }, + { + "name" : "Simon Green", + "y" : 3, + "drilldown" : "Simon Green" + }, + { + "name" : "Solathian", + "y" : 1, + "drilldown" : "Solathian" + }, + { + "drilldown" : "Thomas Kohler", + "y" : 4, + "name" : "Thomas Kohler" + }, + { + "y" : 3, + "name" : "Ulrich Rieke", + "drilldown" : "Ulrich Rieke" + }, + { + "drilldown" : "W. Luis Mochan", + "name" : "W. Luis Mochan", + "y" : 3 + } + ], + "name" : "The Weekly Challenge - 216" + } + ], + "xAxis" : { + "type" : "category" + } +} diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 49d725521a..aeff66fb54 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,177 +1,20 @@ { - "tooltip" : { - "headerFormat" : "{series.name}
", - "followPointer" : 1, - "pointFormat" : "{point.name}: {point.y:f}
" - }, - "xAxis" : { - "type" : "category" + "legend" : { + "enabled" : 0 }, - "series" : [ - { - "name" : "The Weekly Challenge - 216", - "data" : [ - { - "y" : 3, - "drilldown" : "Arne Sommer", - "name" : "Arne Sommer" - }, - { - "drilldown" : "Avery Adams", - "y" : 3, - "name" : "Avery Adams" - }, - { - "drilldown" : "BarrOff", - "y" : 1, - "name" : "BarrOff" - }, - { - "name" : "Bruce Gray", - "drilldown" : "Bruce Gray", - "y" : 2 - }, - { - "drilldown" : "David Ferrone", - "y" : 2, - "name" : "David Ferrone" - }, - { - "y" : 2, - "drilldown" : "Duncan C. White", - "name" : "Duncan C. White" - }, - { - "drilldown" : "E. Choroba", - "y" : 2, - "name" : "E. Choroba" - }, - { - "drilldown" : "Feng Chang", - "y" : 2, - "name" : "Feng Chang" - }, - { - "y" : 6, - "drilldown" : "Flavio Poletti", - "name" : "Flavio Poletti" - }, - { - "name" : "Jaldhar H. Vyas", - "y" : 5, - "drilldown" : "Jaldhar H. Vyas" - }, - { - "y" : 3, - "drilldown" : "James Smith", - "name" : "James Smith" - }, - { - "y" : 1, - "drilldown" : "Jan Krnavek", - "name" : "Jan Krnavek" - }, - { - "drilldown" : "Jorg Sommrey", - "y" : 1, - "name" : "Jorg Sommrey" - }, - { - "y" : 3, - "drilldown" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld" - }, - { - "y" : 1, - "drilldown" : "Leo Manfredi", - "name" : "Leo Manfredi" - }, - { - "drilldown" : "Lubos Kolouch", - "y" : 2, - "name" : "Lubos Kolouch" - }, - { - "name" : "Luca Ferrari", - "drilldown" : "Luca Ferrari", - "y" : 8 - }, - { - "name" : "Mark Anderson", - "y" : 2, - "drilldown" : "Mark Anderson" - }, - { - "name" : "Matthias Muth", - "y" : 2, - "drilldown" : "Matthias Muth" - }, - { - "name" : "Niels van Dijke", - "y" : 1, - "drilldown" : "Niels van Dijke" - }, - { - "name" : "Peter Campbell Smith", - "drilldown" : "Peter Campbell Smith", - "y" : 3 - }, - { - "name" : "RibTips", - "drilldown" : "RibTips", - "y" : 2 - }, - { - "y" : 3, - "drilldown" : "Robbie Hatley", - "name" : "Robbie Hatley" - }, - { - "name" : "Robert DiCicco", - "drilldown" : "Robert DiCicco", - "y" : 2 - }, - { - "y" : 5, - "drilldown" : "Roger Bell_West", - "name" : "Roger Bell_West" - }, - { - "y" : 2, - "drilldown" : "Shimon Bollinger", - "name" : "Shimon Bollinger" - }, - { - "drilldown" : "Simon Green", - "y" : 3, - "name" : "Simon Green" - }, - { - "y" : 1, - "drilldown" : "Solathian", - "name" : "Solathian" - }, - { - "y" : 4, - "drilldown" : "Thomas Kohler", - "name" : "Thomas Kohler" - }, - { - "name" : "Ulrich Rieke", - "y" : 3, - "drilldown" : "Ulrich Rieke" - }, - { - "drilldown" : "W. Luis Mochan", - "y" : 3, - "name" : "W. Luis Mochan" - } - ], - "colorByPoint" : 1 + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } } - ], - "title" : { - "text" : "The Weekly Challenge - 216" + }, + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : 1, + "headerFormat" : "{series.name}
" }, "yAxis" : { "title" : { @@ -179,132 +22,13 @@ } }, "subtitle" : { - "text" : "[Champions: 31] Last updated at 2023-05-15 04:02:44 GMT" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } - }, - "chart" : { - "type" : "column" - }, - "legend" : { - "enabled" : 0 + "text" : "[Champions: 10] Last updated at 2023-05-16 11:33:28 GMT" }, "drilldown" : { "series" : [ { - "id" : "Arne Sommer", - "data" : [ - [ - "Raku", - 2 - ], - [ - "Blog", - 1 - ] - ], - "name" : "Arne Sommer" - }, - { - "data" : [ - [ - "Perl", - 1 - ], - [ - "Blog", - 2 - ] - ], - "id" : "Avery Adams", - "name" : "Avery Adams" - }, - { - "id" : "BarrOff", - "data" : [ - [ - "Raku", - 1 - ] - ], - "name" : "BarrOff" - }, - { - "data" : [ - [ - "Raku", - 2 - ] - ], - "id" : "Bruce Gray", - "name" : "Bruce Gray" - }, - { - "data" : [ - [ - "Perl", - 2 - ] - ], - "id" : "David Ferrone", - "name" : "David Ferrone" - }, - { - "id" : "Duncan C. White", - "data" : [ - [ - "Perl", - 2 - ] - ], - "name" : "Duncan C. White" - }, - { - "id" : "E. Choroba", - "data" : [ - [ - "Perl", - 2 - ] - ], - "name" : "E. Choroba" - }, - { - "name" : "Feng Chang", - "data" : [ - [ - "Raku", - 2 - ] - ], - "id" : "Feng Chang" - }, - { - "id" : "Flavio Poletti", - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ], - [ - "Blog", - 2 - ] - ], - "name" : "Flavio Poletti" - }, - { + "name" : "Ali Moradi", + "id" : "Ali Moradi", "data" : [ [ "Perl", @@ -313,100 +37,28 @@ [ "Raku", 2 - ], - [ - "Blog", - 1 ] - ], - "id" : "Jaldhar H. Vyas", - "name" : "Jaldhar H. Vyas" + ] }, { - "name" : "James Smith", + "name" : "David Ferrone", + "id" : "David Ferrone", "data" : [ [ "Perl", 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "James Smith" - }, - { - "data" : [ - [ - "Raku", - 1 - ] - ], - "id" : "Jan Krnavek", - "name" : "Jan Krnavek" - }, - { - "name" : "Jorg Sommrey", - "data" : [ - [ - "Perl", - 1 - ] - ], - "id" : "Jorg Sommrey" - }, - { - "name" : "Laurent Rosenfeld", - "id" : "Laurent Rosenfeld", - "data" : [ - [ - "Perl", - 1 - ], - [ - "Raku", - 1 - ], - [ - "Blog", - 1 ] ] }, { - "name" : "Leo Manfredi", - "id" : "Leo Manfredi", "data" : [ [ "Perl", 1 ] - ] - }, - { - "data" : [ - [ - "Perl", - 2 - ] - ], - "id" : "Lubos Kolouch", - "name" : "Lubos Kolouch" - }, - { - "id" : "Luca Ferrari", - "data" : [ - [ - "Raku", - 2 - ], - [ - "Blog", - 6 - ] ], - "name" : "Luca Ferrari" + "id" : "Leo Manfredi", + "name" : "Leo Manfredi" }, { "data" : [ @@ -419,48 +71,14 @@ "name" : "Mark Anderson" }, { - "id" : "Matthias Muth", - "data" : [ - [ - "Perl", - 2 - ] - ], - "name" : "Matthias Muth" - }, - { - "name" : "Niels van Dijke", "id" : "Niels van Dijke", - "data" : [ - [ - "Perl", - 1 - ] - ] - }, - { - "id" : "Peter Campbell Smith", - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], - "name" : "Peter Campbell Smith" - }, - { - "id" : "RibTips", "data" : [ [ "Perl", 2 ] ], - "name" : "RibTips" + "name" : "Niels van Dijke" }, { "data" : [ @@ -473,25 +91,11 @@ 1 ] ], - "id" : "Robbie Hatley", - "name" : "Robbie Hatley" - }, - { - "id" : "Robert DiCicco", - "data" : [ - [ - "Perl", - 1 - ], - [ - "Raku", - 1 - ] - ], - "name" : "Robert DiCicco" + "id" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith" }, { - "name" : "Roger Bell_West", + "name" : "Robert DiCicco", "data" : [ [ "Perl", @@ -500,27 +104,9 @@ [ "Raku", 2 - ], - [ - "Blog", - 1 ] ], - "id" : "Roger Bell_West" - }, - { - "name" : "Shimon Bollinger", - "id" : "Shimon Bollinger", - "data" : [ - [ - "Raku", - 1 - ], - [ - "Blog", - 1 - ] - ] + "id" : "Robert DiCicco" }, { "data" : [ @@ -533,21 +119,10 @@ 1 ] ], - "id" : "Simon Green", - "name" : "Simon Green" + "id" : "Stephen G. Lynn", + "name" : "Stephen G. Lynn" }, { - "name" : "Solathian", - "id" : "Solathian", - "data" : [ - [ - "Perl", - 1 - ] - ] - }, - { - "id" : "Thomas Kohler", "data" : [ [ "Perl", @@ -558,23 +133,11 @@ 2 ] ], + "id" : "Thomas Kohler", "name" : "Thomas Kohler" }, { - "id" : "Ulrich Rieke", - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 1 - ] - ], - "name" : "Ulrich Rieke" - }, - { + "id" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -585,9 +148,75 @@ 1 ] ], - "id" : "W. Luis Mochan", "name" : "W. Luis Mochan" } ] + }, + "title" : { + "text" : "The Weekly Challenge - 217" + }, + "xAxis" : { + "type" : "category" + }, + "series" : [ + { + "name" : "The Weekly Challenge - 217", + "colorByPoint" : 1, + "data" : [ + { + "y" : 4, + "name" : "Ali Moradi", + "drilldown" : "Ali Moradi" + }, + { + "drilldown" : "David Ferrone", + "name" : "David Ferrone", + "y" : 2 + }, + { + "y" : 1, + "name" : "Leo Manfredi", + "drilldown" : "Leo Manfredi" + }, + { + "drilldown" : "Mark Anderson", + "name" : "Mark Anderson", + "y" : 2 + }, + { + "drilldown" : "Niels van Dijke", + "y" : 2, + "name" : "Niels van Dijke" + }, + { + "y" : 3, + "name" : "Peter Campbell Smith", + "drilldown" : "Peter Campbell Smith" + }, + { + "drilldown" : "Robert DiCicco", + "y" : 4, + "name" : "Robert DiCicco" + }, + { + "y" : 3, + "name" : "Stephen G. Lynn", + "drilldown" : "Stephen G. Lynn" + }, + { + "name" : "Thomas Kohler", + "y" : 4, + "drilldown" : "Thomas Kohler" + }, + { + "drilldown" : "W. Luis Mochan", + "name" : "W. Luis Mochan", + "y" : 3 + } + ] + } + ], + "chart" : { + "type" : "column" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 8f0fcc7d43..67ad913657 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,9 +1,6 @@ { - "chart" : { - "type" : "column" - }, "subtitle" : { - "text" : "Last updated at 2023-05-15 04:02:44 GMT" + "text" : "Last updated at 2023-05-16 11:33:28 GMT" }, "yAxis" : { "min" : 0, @@ -11,53 +8,56 @@ "text" : null } }, - "title" : { - "text" : "The Weekly Challenge Contributions [2019 - 2023]" + "tooltip" : { + "pointFormat" : "{point.y:.0f}" }, "legend" : { "enabled" : "false" }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - }, - "xAxis" : { - "type" : "category", - "labels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - } - } + "chart" : { + "type" : "column" }, "series" : [ { "name" : "Contributions", + "dataLabels" : { + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + }, + "enabled" : "true", + "y" : 10, + "format" : "{point.y:.0f}", + "align" : "right", + "color" : "#FFFFFF", + "rotation" : -90 + }, "data" : [ [ "Blog", - 3573 + 3578 ], [ "Perl", - 11020 + 11037 ], [ "Raku", - 6389 + 6395 ] - ], - "dataLabels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - }, - "format" : "{point.y:.0f}", - "align" : "right", - "color" : "#FFFFFF", - "rotation" : -90, - "y" : 10, - "enabled" : "true" - } + ] } - ] + ], + "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 d21530abc9..79a11634d1 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,3959 +1,64 @@ { + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2023-05-16 11:33:28 GMT" + }, "legend" : { "enabled" : "false" }, - "drilldown" : { - "series" : [ - { - "name" : "001", - "id" : "001", - "data" : [ - [ - "Perl", - 105 - ], - [ - "Raku", - 47 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "id" : "002", - "data" : [ - [ - "Perl", - 83 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 10 - ] - ], - "name" : "002" - }, - { - "name" : "003", - "id" : "003", - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "name" : "004", - "data" : [ - [ - "Perl", - 60 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ], - "id" : "004" - }, - { - "id" : "005", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 12 - ] - ], - "name" : "005" - }, - { - "name" : "006", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 18 - ], - [ - "Blog", - 7 - ] - ], - "id" : "006" - }, - { - "name" : "007", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 10 - ] - ], - "id" : "007" - }, - { - "name" : "008", - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 12 - ] - ], - "id" : "008" - }, - { - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 13 - ] - ], - "id" : "009", - "name" : "009" - }, - { - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 11 - ] - ], - "id" : "010", - "name" : "010" - }, - { - "name" : "011", - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 10 - ] - ], - "id" : "011" - }, - { - "id" : "012", - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 11 - ] - ], - "name" : "012" - }, - { - "id" : "013", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 13 - ] - ], - "name" : "013" - }, - { - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 15 - ] - ], - "id" : "014", - "name" : "014" - }, - { - "id" : "015", - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 15 - ] - ], - "name" : "015" - }, - { - "id" : "016", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 13 - ] - ], - "name" : "016" - }, - { - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ], - "id" : "017", - "name" : "017" - }, - { - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ], - "id" : "018", - "name" : "018" - }, - { - "id" : "019", - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 13 - ] - ], - "name" : "019" - }, - { - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 13 - ] - ], - "id" : "020", - "name" : "020" - }, - { - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 10 - ] - ], - "id" : "021", - "name" : "021" - }, - { - "name" : "022", - "id" : "022", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "name" : "023", - "id" : "023", - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "id" : "024", - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 11 - ] - ], - "name" : "024" - }, - { - "id" : "025", - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 12 - ] - ], - "name" : "025" - }, - { - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 10 - ] - ], - "id" : "026", - "name" : "026" - }, - { - "id" : "027", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ], - "name" : "027" - }, - { - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 9 - ] - ], - "id" : "028", - "name" : "028" - }, -