From da0d5dcf50f8fa8def91abaafce1fd5624ec1a61 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Mon, 8 Jan 2024 19:15:36 +0000 Subject: i- Added solutions by Mark Anderson. - Added solutions by PokGoPun. - Added solutions by Simon Proctor. - Added solutions by Luca Ferrari. - Added solutions by Thomas Kohler. - Added solutions by Peter Campbell Smith. - Added solutions by Niels van Dijke. - Added solutions by W. Luis Mochan. - Added solutions by David Ferrone. - Added solutions by Dave Jacoby. - Added solutions by Peter Meszaros. - Added solutions by Laurent Rosenfeld. --- challenge-250/eric-cheung/python/ch-1.py | 25 +- challenge-250/eric-cheung/python/ch-2.py | 16 +- challenge-251/laurent-rosenfeld/blog.txt | 1 + challenge-251/laurent-rosenfeld/perl/ch-1.pl | 18 + challenge-251/laurent-rosenfeld/raku/ch-1.raku | 13 + challenge-251/perlboy1967/perl/ch-1.pl | 41 + challenge-251/perlboy1967/perl/ch-2.pl | 48 + challenge-251/perlboy1967/perl/ch1.pl | 41 - challenge-251/perlboy1967/perl/ch2.pl | 48 - stats/pwc-challenge-250.json | 677 +++++++++ stats/pwc-current.json | 640 ++------ stats/pwc-language-breakdown-summary.json | 30 +- stats/pwc-language-breakdown.json | 1699 ++++++++++----------- stats/pwc-leaders.json | 472 +++--- stats/pwc-summary-1-30.json | 80 +- stats/pwc-summary-121-150.json | 40 +- stats/pwc-summary-151-180.json | 132 +- stats/pwc-summary-181-210.json | 104 +- stats/pwc-summary-211-240.json | 112 +- stats/pwc-summary-241-270.json | 40 +- stats/pwc-summary-271-300.json | 120 +- stats/pwc-summary-301-330.json | 56 +- stats/pwc-summary-31-60.json | 38 +- stats/pwc-summary-61-90.json | 106 +- stats/pwc-summary-91-120.json | 100 +- stats/pwc-summary.json | 1902 ++++++++++++------------ 26 files changed, 3453 insertions(+), 3146 deletions(-) create mode 100644 challenge-251/laurent-rosenfeld/blog.txt create mode 100644 challenge-251/laurent-rosenfeld/perl/ch-1.pl create mode 100644 challenge-251/laurent-rosenfeld/raku/ch-1.raku create mode 100755 challenge-251/perlboy1967/perl/ch-1.pl create mode 100755 challenge-251/perlboy1967/perl/ch-2.pl delete mode 100755 challenge-251/perlboy1967/perl/ch1.pl delete mode 100755 challenge-251/perlboy1967/perl/ch2.pl create mode 100644 stats/pwc-challenge-250.json diff --git a/challenge-250/eric-cheung/python/ch-1.py b/challenge-250/eric-cheung/python/ch-1.py index 3f0e3c37c1..66f88a07e9 100755 --- a/challenge-250/eric-cheung/python/ch-1.py +++ b/challenge-250/eric-cheung/python/ch-1.py @@ -1,10 +1,17 @@ -## arrInt = [0, 1, 2] ## Example 1 -## arrInt = [4, 3, 2, 1] ## Example 2 -arrInt = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0] ## Example 3 - -arrOutput = [nIndx for nIndx in range(len(arrInt)) if nIndx % 10 == arrInt[nIndx]] -if len(arrOutput) > 0: - print (arrOutput[0]) -else: - print (-1) +## arrInt = [6, 12, 25, 1] ## Example 1 +## arrInt = [10, 7, 31, 5, 2, 2] ## Example 2 +arrInt = [1, 2, 10] ## Example 3 + +nSum = 0 +while len(arrInt) > 0: + if len(arrInt) == 1: + nSum = nSum + arrInt[0] + del arrInt[0] + else: + nSum = nSum + int(str(arrInt[0]) + str(arrInt[-1])) + del arrInt[-1] + del arrInt[0] + +print (nSum) + diff --git a/challenge-250/eric-cheung/python/ch-2.py b/challenge-250/eric-cheung/python/ch-2.py index 43a7617ff9..a659fab6a6 100755 --- a/challenge-250/eric-cheung/python/ch-2.py +++ b/challenge-250/eric-cheung/python/ch-2.py @@ -1,9 +1,13 @@ -def GetAlphaNumLen (strInput): - return int(strInput) if strInput.isnumeric() else len(strInput) +## Remarks +## https://github.com/doocs/leetcode/blob/main/solution/1300-1399/1380.Lucky%20Numbers%20in%20a%20Matrix/README_EN.md -## arrAlphaNumStr = ["perl", "2", "000", "python", "r4ku"] ## Example 1 -arrAlphaNumStr = ["001", "1", "000", "0001"] ## Example 2 +## arrMatrix = [[3, 7, 8], [9, 11, 13], [15, 16, 17]] ## Example 1 +## arrMatrix = [[1, 10, 4, 2], [9, 3, 8, 7], [15, 16, 17, 12]] ## Example 2 +arrMatrix = [[7, 8], [1, 2]] ## Example 3 -arrOutput = [GetAlphaNumLen(strLoop) for strLoop in arrAlphaNumStr] -print (max(arrOutput)) +setRowMin = {min(rowLoop) for rowLoop in arrMatrix} +setColMax = {max(colLoop) for colLoop in zip(*arrMatrix)} + +arrLuckyNum = list(setRowMin & setColMax) ## Intersection of Two Sets +print (arrLuckyNum if len(arrLuckyNum) > 0 else -1) diff --git a/challenge-251/laurent-rosenfeld/blog.txt b/challenge-251/laurent-rosenfeld/blog.txt new file mode 100644 index 0000000000..312e6abc5b --- /dev/null +++ b/challenge-251/laurent-rosenfeld/blog.txt @@ -0,0 +1 @@ +https://blogs.perl.org/users/laurent_r/2024/01/perl-weekly-challenge-251-concatenation-value.html diff --git a/challenge-251/laurent-rosenfeld/perl/ch-1.pl b/challenge-251/laurent-rosenfeld/perl/ch-1.pl new file mode 100644 index 0000000000..8ff2ab1549 --- /dev/null +++ b/challenge-251/laurent-rosenfeld/perl/ch-1.pl @@ -0,0 +1,18 @@ +use strict; +use warnings; +use feature 'say'; + +sub concat_vals { + my @in = @_; + my $concat; + while (@in > 1) { + $concat += (shift @in) . (pop @in); + } + $concat += shift @in if @in > 0; # if we have 1 item left + return $concat; +} + +for my $test ([<6 12 25 1>], [<10 7 31 5 2 2>], [<1 2 10>]) { + printf "%-15s => ", "@$test"; + say concat_vals @$test; +} diff --git a/challenge-251/laurent-rosenfeld/raku/ch-1.raku b/challenge-251/laurent-rosenfeld/raku/ch-1.raku new file mode 100644 index 0000000000..341957a396 --- /dev/null +++ b/challenge-251/laurent-rosenfeld/raku/ch-1.raku @@ -0,0 +1,13 @@ +sub concat-vals (@in is copy) { + my $concat; + while @in.elems > 1 { + $concat += @in.shift ~ @in.pop; + } + $concat += shift @in if @in.elems > 0; # last item if any + return $concat; +} + +for <6 12 25 1>, <10 7 31 5 2 2>, <1 2 10> -> @test { + printf "%-15s => ", "@test[]"; + say concat-vals @test; +} diff --git a/challenge-251/perlboy1967/perl/ch-1.pl b/challenge-251/perlboy1967/perl/ch-1.pl new file mode 100755 index 0000000000..57f97135fc --- /dev/null +++ b/challenge-251/perlboy1967/perl/ch-1.pl @@ -0,0 +1,41 @@ +#!/bin/perl + +=pod + +The Weekly Challenge - 251 +- https://theweeklychallenge.org/blog/perl-weekly-challenge-251 + +Author: Niels 'PerlBoy' van Dijke + +Task 1: Concatenation Value +Submitted by: Mohammad S Anwar + +You are given an array of integers, @ints. + +Write a script to find the concatenation value of the given array. + +The concatenation of two numbers is the number formed by concatenating +their numerals. + +=cut + +use v5.32; +use feature qw(signatures); +use common::sense; + +use Test2::V0; + +use List::Util qw(sum0); + +sub concatenationValue (@ints) { + # splice in an extra 0 if the list has odd number of elements + splice(@ints,$#ints/2-1,1,$ints[$#ints/2-1],0) if ($#ints % 2 == 0); + my $i = 0; + sum0 map { "$ints[$_]$ints[--$i]" } 0 .. $#ints/2; +} + +is(concatenationValue(6,12,25,1),1286); +is(concatenationValue(10,7,31,5,2,2),489); +is(concatenationValue(1,2,10),112); + +done_testing; diff --git a/challenge-251/perlboy1967/perl/ch-2.pl b/challenge-251/perlboy1967/perl/ch-2.pl new file mode 100755 index 0000000000..60cd0517ed --- /dev/null +++ b/challenge-251/perlboy1967/perl/ch-2.pl @@ -0,0 +1,48 @@ +#!/bin/perl + +=pod + +The Weekly Challenge - 251 +- https://theweeklychallenge.org/blog/perl-weekly-challenge-251 + +Author: Niels 'PerlBoy' van Dijke + +Task 2: Lucky Numbers +Submitted by: Mohammad S Anwar + +You are given a m x n matrix of distinct numbers. + +Write a script to return the lucky number, if there is one, or -1 if not. + +A lucky number is an element of the matrix such that it is +the minimum element in its row and maximum in its column. + +=cut + +use v5.32; +use feature qw(signatures); +use common::sense; + +use Test2::V0; + +use List::Util qw(min max); +use List::MoreUtils qw(duplicates); + +sub luckyNumber ($ar) { + my @min = map { min @{$$ar[$_]} } 0 .. $#$ar; + my @max = map { my $c = $_; + max map { $$ar[$_][$c] } 0 .. $#$ar + } 0 .. $#{$ar->[0]}; + (duplicates @min,@max)[0]; +} + +is(luckyNumber([ [ 3, 7, 8], + [ 9, 11, 13], + [15, 16, 17] ]),15); +is(luckyNumber([ [ 1, 10, 4, 2], + [ 9, 3, 8, 7], + [15, 16, 17, 12] ]),12); +is(luckyNumber([ [7 ,8], + [1 ,2] ]), 7); + +done_testing; diff --git a/challenge-251/perlboy1967/perl/ch1.pl b/challenge-251/perlboy1967/perl/ch1.pl deleted file mode 100755 index 57f97135fc..0000000000 --- a/challenge-251/perlboy1967/perl/ch1.pl +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/perl - -=pod - -The Weekly Challenge - 251 -- https://theweeklychallenge.org/blog/perl-weekly-challenge-251 - -Author: Niels 'PerlBoy' van Dijke - -Task 1: Concatenation Value -Submitted by: Mohammad S Anwar - -You are given an array of integers, @ints. - -Write a script to find the concatenation value of the given array. - -The concatenation of two numbers is the number formed by concatenating -their numerals. - -=cut - -use v5.32; -use feature qw(signatures); -use common::sense; - -use Test2::V0; - -use List::Util qw(sum0); - -sub concatenationValue (@ints) { - # splice in an extra 0 if the list has odd number of elements - splice(@ints,$#ints/2-1,1,$ints[$#ints/2-1],0) if ($#ints % 2 == 0); - my $i = 0; - sum0 map { "$ints[$_]$ints[--$i]" } 0 .. $#ints/2; -} - -is(concatenationValue(6,12,25,1),1286); -is(concatenationValue(10,7,31,5,2,2),489); -is(concatenationValue(1,2,10),112); - -done_testing; diff --git a/challenge-251/perlboy1967/perl/ch2.pl b/challenge-251/perlboy1967/perl/ch2.pl deleted file mode 100755 index 60cd0517ed..0000000000 --- a/challenge-251/perlboy1967/perl/ch2.pl +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/perl - -=pod - -The Weekly Challenge - 251 -- https://theweeklychallenge.org/blog/perl-weekly-challenge-251 - -Author: Niels 'PerlBoy' van Dijke - -Task 2: Lucky Numbers -Submitted by: Mohammad S Anwar - -You are given a m x n matrix of distinct numbers. - -Write a script to return the lucky number, if there is one, or -1 if not. - -A lucky number is an element of the matrix such that it is -the minimum element in its row and maximum in its column. - -=cut - -use v5.32; -use feature qw(signatures); -use common::sense; - -use Test2::V0; - -use List::Util qw(min max); -use List::MoreUtils qw(duplicates); - -sub luckyNumber ($ar) { - my @min = map { min @{$$ar[$_]} } 0 .. $#$ar; - my @max = map { my $c = $_; - max map { $$ar[$_][$c] } 0 .. $#$ar - } 0 .. $#{$ar->[0]}; - (duplicates @min,@max)[0]; -} - -is(luckyNumber([ [ 3, 7, 8], - [ 9, 11, 13], - [15, 16, 17] ]),15); -is(luckyNumber([ [ 1, 10, 4, 2], - [ 9, 3, 8, 7], - [15, 16, 17, 12] ]),12); -is(luckyNumber([ [7 ,8], - [1 ,2] ]), 7); - -done_testing; diff --git a/stats/pwc-challenge-250.json b/stats/pwc-challenge-250.json new file mode 100644 index 0000000000..f31e242126 --- /dev/null +++ b/stats/pwc-challenge-250.json @@ -0,0 +1,677 @@ +{ + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "subtitle" : { + "text" : "[Champions: 35] Last updated at 2024-01-08 19:02:16 GMT" + }, + "drilldown" : { + "series" : [ + { + "name" : "Adam Russell", + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Adam Russell" + }, + { + "id" : "Ali Moradi", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Ali Moradi" + }, + { + "id" : "Arne Sommer", + "name" : "Arne Sommer", + "data" : [ + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ] + }, + { + "id" : "Athanasius", + "name" : "Athanasius", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ] + ], + "name" : "BarrOff", + "id" : "BarrOff" + }, + { + "id" : "Bob Lied", + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Bob Lied" + }, + { + "id" : "Bruce Gray", + "name" : "Bruce Gray", + "data" : [ + [ + "Raku", + 2 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Cheok-Yin Fung", + "id" : "Cheok-Yin Fung" + }, + { + "id" : "Dave Jacoby", + "name" : "Dave Jacoby", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ] + }, + { + "id" : "David Ferrone", + "name" : "David Ferrone", + "data" : [ + [ + "Perl", + 2 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "E. Choroba", + "id" : "E. Choroba" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Jaldhar H. Vyas", + "id" : "Jaldhar H. Vyas" + }, + { + "name" : "Jan Krnavek", + "data" : [ + [ + "Raku", + 2 + ] + ], + "id" : "Jan Krnavek" + }, + { + "id" : "Jorg Sommrey", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Jorg Sommrey" + }, + { + "name" : "Laurent Rosenfeld", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 2 + ] + ], + "id" : "Laurent Rosenfeld" + }, + { + "name" : "Lubos Kolouch", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Lubos Kolouch" + }, + { + "data" : [ + [ + "Raku", + 2 + ], + [ + "Blog", + 8 + ] + ], + "name" : "Luca Ferrari", + "id" : "Luca Ferrari" + }, + { + "data" : [ + [ + "Raku", + 2 + ], + [ + "Blog", + 2 + ] + ], + "name" : "Mark Anderson", + "id" : "Mark Anderson" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Matthew Neleigh", + "id" : "Matthew Neleigh" + }, + { + "id" : "Mustafa Aydin", + "name" : "Mustafa Aydin", + "data" : [ + [ + "Raku", + 2 + ] + ] + }, + { + "id" : "Nelo Tovar", + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Nelo Tovar" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Niels van Dijke", + "id" : "Niels van Dijke" + }, + { + "id" : "Packy Anderson", + "name" : "Packy Anderson", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ] + }, + { + "id" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ] + }, + { + "name" : "Peter Meszaros", + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Peter Meszaros" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Robbie Hatley", + "id" : "Robbie Hatley" + }, + { + "data" : [ + [ + "Raku", + 2 + ] + ], + "name" : "Robert Ransbottom", + "id" : "Robert Ransbottom" + }, + { + "name" : "Roger Bell_West", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Roger Bell_West" + }, + { + "id" : "Simon Green", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Simon Green" + }, + { + "name" : "Simon Proctor", + "data" : [ + [ + "Raku", + 2 + ] + ], + "id" : "Simon Proctor" + }, + { + "id" : "Solathian", + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Solathian" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Stephen G. Lynn", + "id" : "Stephen G. Lynn" + }, + { + "name" : "Thomas Kohler", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 2 + ] + ], + "id" : "Thomas Kohler" + }, + { + "id" : "Ulrich Rieke", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ] + ], + "name" : "Ulrich Rieke" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "W. Luis Mochan", + "id" : "W. Luis Mochan" + } + ] + }, + "legend" : { + "enabled" : 0 + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, + "chart" : { + "type" : "column" + }, + "tooltip" : { + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "{series.name}
" + }, + "title" : { + "text" : "The Weekly Challenge - 250" + }, + "series" : [ + { + "colorByPoint" : 1, + "data" : [ + { + "name" : "Adam Russell", + "y" : 2, + "drilldown" : "Adam Russell" + }, + { + "drilldown" : "Ali Moradi", + "y" : 5, + "name" : "Ali Moradi" + }, + { + "name" : "Arne Sommer", + "y" : 3, + "drilldown" : "Arne Sommer" + }, + { + "name" : "Athanasius", + "y" : 4, + "drilldown" : "Athanasius" + }, + { + "y" : 4, + "name" : "BarrOff", + "drilldown" : "BarrOff" + }, + { + "drilldown" : "Bob Lied", + "name" : "Bob Lied", + "y" : 2 + }, + { + "y" : 2, + "name" : "Bruce Gray", + "drilldown" : "Bruce Gray" + }, + { + "y" : 2, + "name" : "Cheok-Yin Fung", + "drilldown" : "Cheok-Yin Fung" + }, + { + "drilldown" : "Dave Jacoby", + "name" : "Dave Jacoby", + "y" : 3 + }, + { + "drilldown" : "David Ferrone", + "y" : 2, + "name" : "David Ferrone" + }, + { + "drilldown" : "E. Choroba", + "name" : "E. Choroba", + "y" : 2 + }, + { + "drilldown" : "Jaldhar H. Vyas", + "y" : 5, + "name" : "Jaldhar H. Vyas" + }, + { + "y" : 2, + "name" : "Jan Krnavek", + "drilldown" : "Jan Krnavek" + }, + { + "name" : "Jorg Sommrey", + "y" : 3, + "drilldown" : "Jorg Sommrey" + }, + { + "name" : "Laurent Rosenfeld", + "y" : 6, + "drilldown" : "Laurent Rosenfeld" + }, + { + "name" : "Lubos Kolouch", + "y" : 5, + "drilldown" : "Lubos Kolouch" + }, + { + "name" : "Luca Ferrari", + "y" : 10, + "drilldown" : "Luca Ferrari" + }, + { + "drilldown" : "Mark Anderson", + "y" : 4, + "name" : "Mark Anderson" + }, + { + "name" : "Matthew Neleigh", + "y" : 2, + "drilldown" : "Matthew Neleigh" + }, + { + "name" : "Mustafa Aydin", + "y" : 2, + "drilldown" : "Mustafa Aydin" + }, + { + "y" : 2, + "name" : "Nelo Tovar", + "drilldown" : "Nelo Tovar" + }, + { + "name" : "Niels van Dijke", + "y" : 2, + "drilldown" : "Niels van Dijke" + }, + { + "y" : 5, + "name" : "Packy Anderson", + "drilldown" : "Packy Anderson" + }, + { + "y" : 3, + "name" : "Peter Campbell Smith", + "drilldown" : "Peter Campbell Smith" + }, + { + "name" : "Peter Meszaros", + "y" : 2, + "drilldown" : "Peter Meszaros" + }, + { + "y" : 3, + "name" : "Robbie Hatley", + "drilldown" : "Robbie Hatley" + }, + { + "drilldown" : "Robert Ransbottom", + "name" : "Robert Ransbottom", + "y" : 2 + }, + { + "drilldown" : "Roger Bell_West", + "y" : 5, + "name" : "Roger Bell_West" + }, + { + "y" : 3, + "name" : "Simon Green", + "drilldown" : "Simon Green" + }, + { + "name" : "Simon Proctor", + "y" : 2, + "drilldown" : "Simon Proctor" + }, + { + "y" : 2, + "name" : "Solathian", + "drilldown" : "Solathian" + }, + { + "drilldown" : "Stephen G. Lynn", + "y" : 3, + "name" : "Stephen G. Lynn" + }, + { + "drilldown" : "Thomas Kohler", + "y" : 4, + "name" : "Thomas Kohler" + }, + { + "name" : "Ulrich Rieke", + "y" : 4, + "drilldown" : "Ulrich Rieke" + }, + { + "drilldown" : "W. Luis Mochan", + "name" : "W. Luis Mochan", + "y" : 3 + } + ], + "name" : "The Weekly Challenge - 250" + } + ], + "xAxis" : { + "type" : "category" + } +} diff --git a/stats/pwc-current.json b/stats/pwc-current.json index c508065653..4a35b7d705 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,220 +1,122 @@ { + "subtitle" : { + "text" : "[Champions: 11] Last updated at 2024-01-08 19:11:43 GMT" + }, + "tooltip" : { + "headerFormat" : "{series.name}
", + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : 1 + }, + "series" : [ + { + "name" : "The Weekly Challenge - 251", + "data" : [ + { + "drilldown" : "Dave Jacoby", + "name" : "Dave Jacoby", + "y" : 3 + }, + { + "y" : 2, + "name" : "David Ferrone", + "drilldown" : "David Ferrone" + }, + { + "name" : "Laurent Rosenfeld", + "y" : 3, + "drilldown" : "Laurent Rosenfeld" + }, + { + "drilldown" : "Luca Ferrari", + "name" : "Luca Ferrari", + "y" : 10 + }, + { + "y" : 2, + "name" : "Mark Anderson", + "drilldown" : "Mark Anderson" + }, + { + "y" : 2, + "name" : "Niels van Dijke", + "drilldown" : "Niels van Dijke" + }, + { + "drilldown" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith", + "y" : 3 + }, + { + "drilldown" : "Peter Meszaros", + "name" : "Peter Meszaros", + "y" : 2 + }, + { + "y" : 2, + "name" : "Simon Proctor", + "drilldown" : "Simon Proctor" + }, + { + "drilldown" : "Thomas Kohler", + "y" : 4, + "name" : "Thomas Kohler" + }, + { + "name" : "W. Luis Mochan", + "y" : 3, + "drilldown" : "W. Luis Mochan" + } + ], + "colorByPoint" : 1 + } + ], "drilldown" : { "series" : [ { - "name" : "Adam Russell", "data" : [ [ "Perl", 2 - ] - ], - "id" : "Adam Russell" - }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Ali Moradi", - "name" : "Ali Moradi" - }, - { - "data" : [ - [ - "Raku", - 2 ], [ "Blog", 1 ] ], - "id" : "Arne Sommer", - "name" : "Arne Sommer" - }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ] - ], - "id" : "Athanasius", - "name" : "Athanasius" - }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ] - ], - "id" : "BarrOff", - "name" : "BarrOff" - }, - { - "name" : "Bob Lied", - "data" : [ - [ - "Perl", - 2 - ] - ], - "id" : "Bob Lied" - }, - { - "data" : [ - [ - "Raku", - 2 - ] - ], - "id" : "Bruce Gray", - "name" : "Bruce Gray" - }, - { - "name" : "Cheok-Yin Fung", - "data" : [ - [ - "Perl", - 2 - ] - ], - "id" : "Cheok-Yin Fung" - }, - { "name" : "Dave Jacoby", - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], "id" : "Dave Jacoby" }, { - "id" : "David Ferrone", "data" : [ [ "Perl", 2 ] ], - "name" : "David Ferrone" + "name" : "David Ferrone", + "id" : "David Ferrone" }, { - "data" : [ - [ - "Perl", - 2 - ] - ], - "id" : "E. Choroba", - "name" : "E. Choroba" - }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Jaldhar H. Vyas", - "name" : "Jaldhar H. Vyas" - }, - { - "data" : [ - [ - "Raku", - 2 - ] - ], - "id" : "Jan Krnavek", - "name" : "Jan Krnavek" - }, - { - "id" : "Jorg Sommrey", - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], - "name" : "Jorg Sommrey" - }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ], - [ - "Blog", - 2 - ] - ], "id" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld" - }, - { - "id" : "Lubos Kolouch", + "name" : "Laurent Rosenfeld", "data" : [ [ "Perl", - 2 + 1 ], [ "Raku", - 2 + 1 ], [ "Blog", 1 ] - ], - "name" : "Lubos Kolouch" + ] }, { "id" : "Luca Ferrari", + "name" : "Luca Ferrari", "data" : [ [ "Raku", @@ -224,83 +126,31 @@ "Blog", 8 ] - ], - "name" : "Luca Ferrari" + ] }, { "data" : [ [ "Raku", 2 - ], - [ - "Blog", - 2 ] ], "id" : "Mark Anderson", "name" : "Mark Anderson" }, { - "name" : "Matthew Neleigh", - "id" : "Matthew Neleigh", - "data" : [ - [ - "Perl", - 2 - ] - ] - }, - { - "data" : [ - [ - "Raku", - 2 - ] - ], - "id" : "Mustafa Aydin", - "name" : "Mustafa Aydin" - }, - { - "id" : "Nelo Tovar", "data" : [ [ "Perl", 2 ] ], - "name" : "Nelo Tovar" - }, - { "name" : "Niels van Dijke", - "id" : "Niels van Dijke", - "data" : [ - [ - "Perl", - 2 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Packy Anderson", - "name" : "Packy Anderson" + "id" : "Niels van Dijke" }, { "id" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith", "data" : [ [ "Perl", @@ -310,108 +160,27 @@ "Blog", 1 ] - ], - "name" : "Peter Campbell Smith" + ] }, { + "id" : "Peter Meszaros", "name" : "Peter Meszaros", "data" : [ [ "Perl", 2 ] - ], - "id" : "Peter Meszaros" - }, - { - "name" : "Robbie Hatley", - "id" : "Robbie Hatley", - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] ] }, { - "id" : "Robert Ransbottom", - "data" : [ - [ - "Raku", - 2 - ] - ], - "name" : "Robert Ransbottom" - }, - { - "name" : "Roger Bell_West", - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Roger Bell_West" - }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Simon Green", - "name" : "Simon Green" - }, - { - "data" : [ - [ - "Raku", - 2 - ] - ], "id" : "Simon Proctor", - "name" : "Simon Proctor" - }, - { - "id" : "Solathian", - "data" : [ - [ - "Perl", - 2 - ] - ], - "name" : "Solathian" - }, - { - "name" : "Stephen G. Lynn", + "name" : "Simon Proctor", "data" : [ [ - "Perl", + "Raku", 2 - ], - [ - "Blog", - 1 ] - ], - "id" : "Stephen G. Lynn" + ] }, { "data" : [ @@ -424,24 +193,12 @@ 2 ] ], - "id" : "Thomas Kohler", - "name" : "Thomas Kohler" - }, - { - "name" : "Ulrich Rieke", - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ] - ], - "id" : "Ulrich Rieke" + "name" : "Thomas Kohler", + "id" : "Thomas Kohler" }, { + "name" : "W. Luis Mochan", + "id" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -451,222 +208,29 @@ "Blog", 1 ] - ], - "id" : "W. Luis Mochan", - "name" : "W. Luis Mochan" + ] } ] }, - "title" : { - "text" : "The Weekly Challenge - 250" + "legend" : { + "enabled" : 0 }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } + "title" : { + "text" : "The Weekly Challenge - 251" }, "yAxis" : { "title" : { "text" : "Total Solutions" } }, - "series" : [ - { - "name" : "The Weekly Challenge - 250", - "colorByPoint" : 1, - "data" : [ - { - "y" : 2, - "name" : "Adam Russell", - "drilldown" : "Adam Russell" - }, - { - "y" : 5, - "name" : "Ali Moradi", - "drilldown" : "Ali Moradi" - }, - { - "name" : "Arne Sommer", - "y" : 3, - "drilldown" : "Arne Sommer" - }, - { - "drilldown" : "Athanasius", - "y" : 4, - "name" : "Athanasius" - }, - { - "name" : "BarrOff", - "y" : 4, - "drilldown" : "BarrOff" - }, - { - "y" : 2, - "name" : "Bob Lied", - "drilldown" : "Bob Lied" - }, - { - "y" : 2, - "name" : "Bruce Gray", - "drilldown" : "Bruce Gray" - }, - { - "drilldown" : "Cheok-Yin Fung", - "y" : 2, - "name" : "Cheok-Yin Fung" - }, - { - "drilldown" : "Dave Jacoby", - "y" : 3, - "name" : "Dave Jacoby" - }, - { - "drilldown" : "David Ferrone", - "name" : "David Ferrone", - "y" : 2 - }, - { - "drilldown" : "E. Choroba", - "y" : 2, - "name" : "E. Choroba" - }, - { - "drilldown" : "Jaldhar H. Vyas", - "y" : 5, - "name" : "Jaldhar H. Vyas" - }, - { - "drilldown" : "Jan Krnavek", - "y" : 2, - "name" : "Jan Krnavek" - }, - { - "drilldown" : "Jorg Sommrey", - "y" : 3, - "name" : "Jorg Sommrey" - }, - { - "name" : "Laurent Rosenfeld", - "y" : 6, - "drilldown" : "Laurent Rosenfeld" - }, - { - "drilldown" : "Lubos Kolouch", - "name" : "Lubos Kolouch", - "y" : 5 - }, - { - "name" : "Luca Ferrari", - "y" : 10, - "drilldown" : "Luca Ferrari" - }, - { - "y" : 4, - "name" : "Mark Anderson", - "drilldown" : "Mark Anderson" - }, - { - "drilldown" : "Matthew Neleigh", - "y" : 2, - "name" : "Matthew Neleigh" - }, - { - "drilldown" : "Mustafa Aydin", - "name" : "Mustafa Aydin", - "y" : 2 - }, - { - "drilldown" : "Nelo Tovar", - "y" : 2, - "name" : "Nelo Tovar" - }, - { - "y" : 2, - "name" : "Niels van Dijke", - "drilldown" : "Niels van Dijke" - }, - { - "y" : 5, - "name" : "Packy Anderson", - "drilldown" : "Packy Anderson" - }, - { - "name" : "Peter Campbell Smith", - "y" : 3, - "drilldown" : "Peter Campbell Smith" - }, - { - "name" : "Peter Meszaros", - "y" : 2, - "drilldown" : "Peter Meszaros" - }, - { - "drilldown" : "Robbie Hatley", - "name" : "Robbie Hatley", - "y" : 3 - }, - { - "drilldown" : "Robert Ransbottom", - "name" : "Robert Ransbottom", - "y" : 2 - }, - { - "name" : "Roger Bell_West", - "y" : 5, - "drilldown" : "Roger Bell_West" - }, - { - "y" : 3, - "name" : "Simon Green", - "drilldown" : "Simon Green" - }, - { - "y" : 2, - "name" : "Simon Proctor", - "drilldown" : "Simon Proctor" - }, - { - "drilldown" : "Solathian", - "name" : "Solathian", - "y" : 2 - }, - { - "drilldown" : "Stephen G. Lynn", - "y" : 3, - "name" : "Stephen G. Lynn" - }, - { - "name" : "Thomas Kohler", - "y" : 4, - "drilldown" : "Thomas Kohler" - }, - { - "drilldown" : "Ulrich Rieke", - "name" : "Ulrich Rieke", - "y" : 4 - }, - { - "name" : "W. Luis Mochan", - "y" : 3, - "drilldown" : "W. Luis Mochan" - } - ] + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } } - ], - "tooltip" : { - "headerFormat" : "{series.name}
", - "followPointer" : 1, - "pointFormat" : "{point.name}: {point.y:f}
" - }, - "legend" : { - "enabled" : 0 - }, - "subtitle" : { - "text" : "[Champions: 35] Last updated at 2024-01-08 18:12:10 GMT" }, "chart" : { "type" : "column" diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 1ad1ae44a5..cedaf23ce7 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -2,43 +2,43 @@ "legend" : { "enabled" : "false" }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - }, - "title" : { - "text" : "The Weekly Challenge Contributions [2019 - 2024]" - }, "series" : [ { "name" : "Contributions", "data" : [ [ "Blog", - 4381 + 4395 ], [ "Perl", - 12909 + 12924 ], [ "Raku", - 7446 + 7453 ] ], "dataLabels" : { "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" }, "rotation" : -90, - "y" : 10, "align" : "right", "enabled" : "true", "color" : "#FFFFFF", + "y" : 10, "format" : "{point.y:.0f}" } } ], + "tooltip" : { + "pointFormat" : "{point.y:.0f}" + }, + "subtitle" : { + "text" : "Last updated at 2024-01-08 19:11:43 GMT" + }, "xAxis" : { "labels" : { "style" : { @@ -51,13 +51,13 @@ "chart" : { "type" : "column" }, + "title" : { + "text" : "The Weekly Challenge Contributions [2019 - 2024]" + }, "yAxis" : { "title" : { "text" : null }, "min" : 0 - }, - "subtitle" : { - "text" : "Last updated at 2024-01-08 18:12:10 GMT" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index e40cd72726..2ed179f24d 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,21 +1,16 @@ { - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } + "tooltip" : { + "headerFormat" : "", + "pointFormat" : "Challenge {point.name}: {point.y:f}
", + "followPointer" : "true" }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2024-01-08 19:11:43 GMT" }, "drilldown" : { "series" : [ { + "id" : "001", "name" : "001", "data" : [ [ @@ -30,10 +25,11 @@ "Blog", 12 ] - ], - "id" : "001" + ] }, { + "id" : "002", + "name" : "002", "data" : [ [ "Perl", @@ -47,12 +43,9 @@ "Blog", 10 ] - ], - "id" : "002", - "name" : "002" + ] }, { - "id" : "003", "data" : [ [ "Perl", @@ -67,10 +60,10 @@ 9 ] ], + "id" : "003", "name" : "003" }, { - "name" : "004", "data" : [ [ "Perl", @@ -85,11 +78,10 @@ 10 ] ], - "id" : "004" + "id" : "004", + "name" : "004" }, { - "name" : "005", - "id" : "005", "data" : [ [ "Perl", @@ -103,10 +95,11 @@ "Blog", 12 ] - ] + ], + "id" : "005", + "name" : "005" }, { - "id" : "006", "data" : [ [ "Perl", @@ -121,11 +114,10 @@ 7 ] ], + "id" : "006", "name" : "006" }, { - "name" : "007", - "id" : "007", "data" : [ [ "Perl", @@ -139,10 +131,11 @@ "Blog", 10 ] - ] + ], + "name" : "007", + "id" : "007" }, { - "name" : "008", "data" : [ [ "Perl", @@ -157,11 +150,12 @@ 12 ] ], - "id" : "008" + "id" : "008", + "name" : "008" }, { - "name" : "009", "id" : "009", + "name" : "009", "data" : [ [ "Perl", @@ -178,8 +172,6 @@ ] }, { - "name" : "010", - "id" : "010", "data" : [ [ "Perl", @@ -193,11 +185,11 @@ "Blog", 11 ] - ] + ], + "id" : "010", + "name" : "010" }, { - "name" : "011", - "id" : "011", "data" : [ [ "Perl", @@ -211,11 +203,13 @@ "Blog", 10 ] - ] + ], + "name" : "011", + "id" : "011" }, { - "name" : "012", "id" : "012", + "name" : "012", "data" : [ [ "Perl", @@ -232,6 +226,8 @@ ] }, { + "id" : "013", + "name" : "013", "data" : [ [ "Perl", @@ -245,12 +241,9 @@ "Blog", 13 ] - ], - "id" : "013", - "name" : "013" + ] }, { - "id" : "014", "data" : [ [ "Perl", @@ -265,9 +258,12 @@ 15 ] ], + "id" : "014", "name" : "014" }, { + "name" : "015", + "id" : "015", "data" : [ [ "Perl", @@ -281,11 +277,11 @@ "Blog", 15 ] - ], - "id" : "015", - "name" : "015" + ] }, { + "id" : "016", + "name" : "016", "data" : [ [ "Perl", @@ -299,12 +295,9 @@ "Blog", 13 ] - ], - "id" : "016", - "name" : "016" + ] }, { - "name" : "017", "data" : [ [ "Perl", @@ -319,10 +312,10 @@ 12 ] ], - "id" : "017" + "id" : "017", + "name" : "017" }, { - "name" : "018", "data" : [ [ "Perl", @@ -337,10 +330,10 @@ 14 ] ], - "id" : "018" + "id" : "018", + "name" : "018" }, { - "name" : "019", "data" : [ [ "Perl", @@ -355,9 +348,12 @@ 13 ] ], + "name" : "019", "id" : "019" }, { + "name" : "020", + "id" : "020", "data" : [ [ "Perl", @@ -371,12 +367,11 @@ "Blog", 13 ] - ], - "id" : "020", - "name" : "020" + ] }, { "id" : "021", + "name" : "021", "data" : [ [ "Perl", @@ -390,12 +385,9 @@ "Blog", 10 ] - ], - "name" : "021" + ] }, { - "name" : "022", - "id" : "022", "data" : [ [ "Perl", @@ -409,10 +401,13 @@ "Blog", 10 ] - ] + ], + "name" : "022", + "id" : "022" }, { "name" : "023", + "id" : "023", "data" : [ [ "Perl", @@ -426,11 +421,11 @@ "Blog", 12 ] - ], - "id" : "023" + ] }, { "name" : "024", + "id" : "024", "data" : [ [ "Perl", @@ -444,11 +439,9 @@ "Blog", 11 ] - ], - "id" : "024" + ] }, { - "name" : "025", "data" : [ [ "Perl", @@ -463,10 +456,10 @@ 12 ] ], - "id" : "025" + "id" : "025", + "name" : "025" }, { - "id" : "026", "data" : [ [ "Perl", @@ -481,9 +474,11 @@ 10 ] ], - "name" : "026" + "name" : "026", + "id" : "026" }, { + "name" : "027", "id" : "027", "data" : [ [ @@ -498,11 +493,9 @@ "Blog", 9 ] - ], - "name" : "027" + ] }, { - "name" : "028", "data" : [ [ "Perl", @@ -517,7 +510,8 @@ 9 ] ], - "id" : "028" + "id" : "028", + "name" : "028" }, { "name" : "029", @@ -538,7 +532,6 @@ ] }, { - "id" : "030", "data" : [ [ "Perl", @@ -553,10 +546,12 @@ 10 ] ], + "id" : "030", "name" : "030" }, { "name" : "031", + "id" : "031", "data" : [ [ "Perl", @@ -570,11 +565,9 @@ "Blog", 9 ] - ], - "id" : "031" + ] }, { - "name" : "032", "data" : [ [ "Perl", @@ -589,11 +582,10 @@ 10 ] ], + "name" : "032", "id" : "032" }, { - "name" : "033", - "id" : "033", "data" : [ [ "Perl", @@ -607,7 +599,9 @@ "Blog", 10 ] - ] + ], + "name" : "033", + "id" : "033" }, { "data" : [ @@ -624,12 +618,12 @@ 11 ] ], - "id" : "034", - "name" : "034" + "name" : "034", + "id" : "034" }, { - "name" : "035", "id" : "035", + "name" : "035", "data" : [ [ "Perl", @@ -646,8 +640,8 @@ ] }, { - "name" : "036", "id" : "036", + "name" : "036", "data" : [ [ "Perl", @@ -665,6 +659,7 @@ }, { "id" : "037", + "name" : "037", "data" : [ [ "Perl", @@ -678,11 +673,9 @@ "Blog", 9 ] - ], - "name" : "037" + ] }, { - "id" : "038", "data" : [ [ "Perl", @@ -697,11 +690,10 @@ 12 ] ], - "name" : "038" + "name" : "038", + "id" : "038" }, { - "name" : "039", - "id" : "039", "data" : [ [ "Perl", @@ -715,9 +707,13 @@ "Blog", 12 ] - ] + ], + "id" : "039", + "name" : "039" }, { + "id" : "040", + "name" : "040", "data" : [ [ "Perl", @@ -731,12 +727,9 @@ "Blog", 10 ] - ], - "id" : "040", - "name" : "040" + ] }, { - "id" : "041", "data" : [ [ "Perl", @@ -751,10 +744,10 @@ 9 ] ], - "name" : "041" + "name" : "041", + "id" : "041" }, { - "id" : "042", "data" : [ [ "Perl", @@ -769,10 +762,10 @@ 11 ] ], + "id" : "042", "name" : "042" }, { - "id" : "043", "data" : [ [ "Perl", @@ -787,10 +780,10 @@ 11 ] ], - "name" : "043" + "name" : "043", + "id" : "043" }, { - "id" : "044", "data" : [ [ "Perl", @@ -805,10 +798,10 @@ 11 ] ], - "name" : "044" + "name" : "044", + "id" : "044" }, { - "name" : "045", "data" : [ [ "Perl", @@ -823,9 +816,11 @@ 11 ] ], + "name" : "045", "id" : "045" }, { + "name" : "046", "id" : "046", "data" : [ [ @@ -840,10 +835,10 @@ "Blog", 10 ] - ], - "name" : "046" + ] }, { + "id" : "047", "name" : "047", "data" : [ [ @@ -858,11 +853,9 @@ "Blog", 10 ] - ], - "id" : "047" + ] }, { - "id" : "048", "data" : [ [ "Perl", @@ -877,9 +870,11 @@ 12 ] ], + "id" : "048", "name" : "048" }, { + "name" : "049", "id" : "049", "data" : [ [ @@ -894,10 +889,11 @@ "Blog", 12 ] - ], - "name" : "049" + ] }, { + "id" : "050", + "name" : "050", "data" : [ [ "Perl", @@ -911,11 +907,10 @@ "Blog", 12 ] - ], - "id" : "050", - "name" : "050" + ] }, { + "name" : "051", "id" : "051", "data" : [ [ @@ -930,10 +925,10 @@ "Blog", 11 ] - ], - "name" : "051" + ] }, { + "id" : "052", "name" : "052", "data" : [ [ @@ -948,10 +943,10 @@ "Blog", 14 ] - ], - "id" : "052" + ] }, { + "id" : "053", "name" : "053", "data" : [ [ @@ -966,11 +961,9 @@ "Blog", 15 ] - ], - "id" : "053" + ] }, { - "id" : "054", "data" : [ [ "Perl", @@ -985,7 +978,8 @@ 18 ] ], - "name" : "054" + "name" : "054", + "id" : "054" }, { "data" : [ @@ -1002,10 +996,12 @@ 14 ] ], - "id" : "055", - "name" : "055" + "name" : "055", + "id" : "055" }, { + "id" : "056", + "name" : "056", "data" : [ [ "Perl", @@ -1019,12 +1015,9 @@ "Blog", 17 ] - ], - "id" : "056", - "name" : "056" + ] }, { - "id" : "057", "data" : [ [ "Perl", @@ -1039,9 +1032,12 @@ 15 ] ], + "id" : "057",