From f46d7880f5909abd6b910b372c2b4432ff65b208 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Tue, 23 Apr 2024 17:07:42 +0100 Subject: - Added solutions by Eric Cheung. - Added solutions by Reinier Maliepaard. - Added solutions by Niels van Dijke. - Added solutions by Feng Chang. - Added solutions by E. Choroba. - Added solutions by Mark Anderson. - Added solutions by Luca Ferrari. - Added solutions by David Ferrone. - Added solutions by W. Luis Mochan. - Added solutions by Peter Meszaros. - Added solutions by Steven Wilson. - Added solutions by Roger Bell_West. - Added solutions by Bob Lied. - Added solutions by Peter Campbell Smith. - Added solutions by Lubos Kolouch. --- challenge-266/eric-cheung/python/ch-1.py | 25 + challenge-266/eric-cheung/python/ch-2.py | 34 + challenge-266/perlboy1967/perl/ch-1.pl | 39 + challenge-266/perlboy1967/perl/ch-2.pl | 49 + challenge-266/perlboy1967/perl/ch1.pl | 39 - challenge-266/perlboy1967/perl/ch2.pl | 49 - challenge-266/reinier-maliepaard/blog.txt | 1 + challenge-266/reinier-maliepaard/perl/ch-1.pl | 37 + challenge-266/reinier-maliepaard/perl/ch-2.pl | 54 + stats/pwc-challenge-017.json | 487 ++-- stats/pwc-challenge-018.json | 509 ++-- stats/pwc-challenge-265.json | 695 +++++ stats/pwc-current.json | 576 +--- stats/pwc-language-breakdown-summary.json | 70 +- stats/pwc-language-breakdown.json | 3775 +++++++++++++------------ stats/pwc-leaders.json | 448 +-- stats/pwc-summary-1-30.json | 38 +- stats/pwc-summary-121-150.json | 28 +- stats/pwc-summary-151-180.json | 108 +- stats/pwc-summary-181-210.json | 50 +- stats/pwc-summary-211-240.json | 112 +- stats/pwc-summary-241-270.json | 48 +- stats/pwc-summary-271-300.json | 34 +- stats/pwc-summary-301-330.json | 52 +- stats/pwc-summary-31-60.json | 122 +- stats/pwc-summary-61-90.json | 50 +- stats/pwc-summary-91-120.json | 100 +- stats/pwc-summary.json | 1914 ++++++------- 28 files changed, 4988 insertions(+), 4555 deletions(-) create mode 100755 challenge-266/eric-cheung/python/ch-1.py create mode 100755 challenge-266/eric-cheung/python/ch-2.py create mode 100755 challenge-266/perlboy1967/perl/ch-1.pl create mode 100755 challenge-266/perlboy1967/perl/ch-2.pl delete mode 100755 challenge-266/perlboy1967/perl/ch1.pl delete mode 100755 challenge-266/perlboy1967/perl/ch2.pl create mode 100644 challenge-266/reinier-maliepaard/blog.txt create mode 100644 challenge-266/reinier-maliepaard/perl/ch-1.pl create mode 100644 challenge-266/reinier-maliepaard/perl/ch-2.pl create mode 100644 stats/pwc-challenge-265.json diff --git a/challenge-266/eric-cheung/python/ch-1.py b/challenge-266/eric-cheung/python/ch-1.py new file mode 100755 index 0000000000..160e4be8c9 --- /dev/null +++ b/challenge-266/eric-cheung/python/ch-1.py @@ -0,0 +1,25 @@ + +## Example 1 +## strLine_01 = "Mango is sweet" +## strLine_02 = "Mango is sour" + +## Example 2 +## strLine_01 = "Mango Mango" +## strLine_02 = "Orange" + +## Example 3 +strLine_01 = "Mango is Mango" +strLine_02 = "Orange is Orange" + +arrLineSplit_01 = strLine_01.split() +arrUniqLine_01 = [strLoop for strLoop in set(arrLineSplit_01) if arrLineSplit_01.count(strLoop) == 1] + +arrLineSplit_02 = strLine_02.split() +arrUniqLine_02 = [strLoop for strLoop in set(arrLineSplit_02) if arrLineSplit_02.count(strLoop) == 1] + +arrUnCommonWord = [strLoop for strLoop in arrUniqLine_01 if not strLoop in arrUniqLine_02] +arrUnCommonWord = arrUnCommonWord + [strLoop for strLoop in arrUniqLine_02 if not strLoop in arrUniqLine_01] + +## print (arrUniqLine_01) +## print (arrUniqLine_02) +print (arrUnCommonWord) diff --git a/challenge-266/eric-cheung/python/ch-2.py b/challenge-266/eric-cheung/python/ch-2.py new file mode 100755 index 0000000000..0c74ebfbf3 --- /dev/null +++ b/challenge-266/eric-cheung/python/ch-2.py @@ -0,0 +1,34 @@ + +def IsXMatrix (arrInputMatrix): + + nLen = len(arrInputMatrix) + + ## Check + for nRowIndx in range(nLen): + + nColIndx_01 = nRowIndx + nColIndx_02 = nLen - nRowIndx - 1 + + ## 1st + if arrInputMatrix[nRowIndx][nColIndx_01] == 0: + return False + + ## 2nd + if arrInputMatrix[nRowIndx][nColIndx_02] == 0: + return False + + ## 3rd + for nColIndx in range(nLen): + if nColIndx in [nColIndx_01, nColIndx_02]: + continue + + if arrInputMatrix[nRowIndx][nColIndx] != 0: + return False + + return True + +## arrMatrix = [[1, 0, 0, 2], [0, 3, 4, 0], [0, 5, 6, 0], [7, 0, 0, 1]] ## Example 1 +## arrMatrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] ## Example 2 +arrMatrix = [[1, 0, 2], [0, 3, 0], [4, 0, 5]] ## Example 3 + +print (IsXMatrix (arrMatrix)) diff --git a/challenge-266/perlboy1967/perl/ch-1.pl b/challenge-266/perlboy1967/perl/ch-1.pl new file mode 100755 index 0000000000..f104fec4a6 --- /dev/null +++ b/challenge-266/perlboy1967/perl/ch-1.pl @@ -0,0 +1,39 @@ +#!/bin/perl + +=pod + +The Weekly Challenge - 266 +- https://theweeklychallenge.org/blog/perl-weekly-challenge-266 + +Author: Niels 'PerlBoy' van Dijke + +Task 1: Uncommon Words +Submitted by: Mohammad Sajid Anwar + +You are given two sentences, $line1 and $line2. + +Write a script to find all uncommmon words in any order in the given two sentences. +Return ('') if none found. + +|| A word is uncommon if it appears exactly once in one of the sentences and doesn’t +appear in other sentence. + +=cut + +use v5.32; +use feature qw(signatures); +use common::sense; + +use Test2::V0; + +sub uncommonWords ($line1,$line2) { + my %f; $f{lc $_}++ for (split /\s+/, "$line1 $line2"); + my @w = grep { $f{$_} == 1 } sort keys %f; + return @w ? @w : ''; +} + +is([uncommonWords('Mango is sweet','Mango is sour')],['sour','sweet']); +is([uncommonWords('Mango Mango','Orange')],['orange']); +is([uncommonWords('Mango is Mango','Orange is Orange')],['']); + +done_testing; diff --git a/challenge-266/perlboy1967/perl/ch-2.pl b/challenge-266/perlboy1967/perl/ch-2.pl new file mode 100755 index 0000000000..0526dcd74b --- /dev/null +++ b/challenge-266/perlboy1967/perl/ch-2.pl @@ -0,0 +1,49 @@ +#!/bin/perl + +=pod + +The Weekly Challenge - 266 +- https://theweeklychallenge.org/blog/perl-weekly-challenge-266 + +Author: Niels 'PerlBoy' van Dijke + +Task 2: X Matrix +Submitted by: Mohammad Sajid Anwar + +You are given a square matrix, $matrix. + +Write a script to find if the given matrix is X Matrix. + +|| A square matrix is an X Matrix if all the elements on the main diagonal +|| and antidiagonal are non-zero and everything else are zero. + +=cut + +use v5.32; +use feature qw(signatures); +use common::sense; + +use Test2::V0; + +sub isXmatrix ($ar) { + my $d = scalar @$ar-1; + my ($x1,$x2) = (0,$d); + for my $y (0 .. $d) { + for my $x (0 .. $d) { + if ($x == $x1 or $x == $x2) { + return 0 if $ar->[$y][$x] == 0; + } elsif ($ar->[$y][$x] != 0) { + return 0; + } + } + $x1++; $x2--; + } + return 1; +} + +is(isXmatrix([[1,0,0,2],[0,3,4,0], + [0,5,6,0],[7,0,0,1]]),1,'Example 1'); +is(isXmatrix([[1,2,3],[4,5,6],[7,8,9]]),0,'Example 2'); +is(isXmatrix([[1,0,2],[0,3,0],[4,0,5]]),1,'Example 3'); + +done_testing; diff --git a/challenge-266/perlboy1967/perl/ch1.pl b/challenge-266/perlboy1967/perl/ch1.pl deleted file mode 100755 index f104fec4a6..0000000000 --- a/challenge-266/perlboy1967/perl/ch1.pl +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/perl - -=pod - -The Weekly Challenge - 266 -- https://theweeklychallenge.org/blog/perl-weekly-challenge-266 - -Author: Niels 'PerlBoy' van Dijke - -Task 1: Uncommon Words -Submitted by: Mohammad Sajid Anwar - -You are given two sentences, $line1 and $line2. - -Write a script to find all uncommmon words in any order in the given two sentences. -Return ('') if none found. - -|| A word is uncommon if it appears exactly once in one of the sentences and doesn’t -appear in other sentence. - -=cut - -use v5.32; -use feature qw(signatures); -use common::sense; - -use Test2::V0; - -sub uncommonWords ($line1,$line2) { - my %f; $f{lc $_}++ for (split /\s+/, "$line1 $line2"); - my @w = grep { $f{$_} == 1 } sort keys %f; - return @w ? @w : ''; -} - -is([uncommonWords('Mango is sweet','Mango is sour')],['sour','sweet']); -is([uncommonWords('Mango Mango','Orange')],['orange']); -is([uncommonWords('Mango is Mango','Orange is Orange')],['']); - -done_testing; diff --git a/challenge-266/perlboy1967/perl/ch2.pl b/challenge-266/perlboy1967/perl/ch2.pl deleted file mode 100755 index 0526dcd74b..0000000000 --- a/challenge-266/perlboy1967/perl/ch2.pl +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/perl - -=pod - -The Weekly Challenge - 266 -- https://theweeklychallenge.org/blog/perl-weekly-challenge-266 - -Author: Niels 'PerlBoy' van Dijke - -Task 2: X Matrix -Submitted by: Mohammad Sajid Anwar - -You are given a square matrix, $matrix. - -Write a script to find if the given matrix is X Matrix. - -|| A square matrix is an X Matrix if all the elements on the main diagonal -|| and antidiagonal are non-zero and everything else are zero. - -=cut - -use v5.32; -use feature qw(signatures); -use common::sense; - -use Test2::V0; - -sub isXmatrix ($ar) { - my $d = scalar @$ar-1; - my ($x1,$x2) = (0,$d); - for my $y (0 .. $d) { - for my $x (0 .. $d) { - if ($x == $x1 or $x == $x2) { - return 0 if $ar->[$y][$x] == 0; - } elsif ($ar->[$y][$x] != 0) { - return 0; - } - } - $x1++; $x2--; - } - return 1; -} - -is(isXmatrix([[1,0,0,2],[0,3,4,0], - [0,5,6,0],[7,0,0,1]]),1,'Example 1'); -is(isXmatrix([[1,2,3],[4,5,6],[7,8,9]]),0,'Example 2'); -is(isXmatrix([[1,0,2],[0,3,0],[4,0,5]]),1,'Example 3'); - -done_testing; diff --git a/challenge-266/reinier-maliepaard/blog.txt b/challenge-266/reinier-maliepaard/blog.txt new file mode 100644 index 0000000000..8cfdaba867 --- /dev/null +++ b/challenge-266/reinier-maliepaard/blog.txt @@ -0,0 +1 @@ +https://reiniermaliepaard.nl/perl/pwc/index.php?id=pwc266 diff --git a/challenge-266/reinier-maliepaard/perl/ch-1.pl b/challenge-266/reinier-maliepaard/perl/ch-1.pl new file mode 100644 index 0000000000..fb4002d6f1 --- /dev/null +++ b/challenge-266/reinier-maliepaard/perl/ch-1.pl @@ -0,0 +1,37 @@ +#!/usr/bin/perl +use strict; +use warnings; +#------------------------------------------- + +sub uncommon_word { + + my($s1, $s2) = @_; + + my %freq; + my @result; + + $freq{$_}++ foreach(split(/ /, $s1)); + $freq{$_}++ foreach(split(/ /, $s2)); + + foreach my $k (keys(%freq)) { + push(@result, "'$k'") if($freq{$k} == 1); + } + print("(", join(", ", @result),")", "\n"); +} + +my ($s1, $s2); + +# Example 1 +$s1 = "Mango is sweet"; +$s2 = "Mango is sour"; +uncommon_word($s1, $s2); # Output: ('sweet', 'sour') + +# Example 2 +$s1 = "Mango Mango"; +$s2 = "Orange"; +uncommon_word($s1, $s2); # Output: ('Orange') + +# Example 3 +$s1 = "Mango is Mango"; +$s2 = "Orange is Orange"; +uncommon_word($s1, $s2); # Output: () diff --git a/challenge-266/reinier-maliepaard/perl/ch-2.pl b/challenge-266/reinier-maliepaard/perl/ch-2.pl new file mode 100644 index 0000000000..40bd456903 --- /dev/null +++ b/challenge-266/reinier-maliepaard/perl/ch-2.pl @@ -0,0 +1,54 @@ +#!/usr/bin/perl +use strict; +use warnings; +#------------------------------------------- + +sub is_x_matrix { + my $matrix = shift; + + my $size = @$matrix; + + # check main diagonal and antidiagonal + for my $i (0 .. $size - 1) { + # check main diagonal + return 0 if ($matrix->[$i][$i] == 0); + # check antidiagonal + return 0 if ($matrix->[$i][$size - 1 - $i] == 0); + } + + # check all other elements + for my $i (0 .. $size - 1) { + for my $j (0 .. $size - 1) { + return 0 if ($i != $j && $i + $j != ($size - 1) && $matrix->[$i][$j] != 0); + } + } + + # it's an X Matrix + return 1; +} + +# TESTS + +my $matrix; + +# Example 1 +$matrix = [ [1, 0, 0, 2], + [0, 3, 4, 0], + [0, 5, 6, 0], + [7, 0, 0, 1], + ]; +print(is_x_matrix($matrix), "\n"); # Output: 1 + +# Example 2 +$matrix = [ [1, 2, 3], + [4, 5, 6], + [7, 8, 9], + ]; +print(is_x_matrix($matrix), "\n"); # Output: 0 + +# Example 3 +$matrix = [ [1, 0, 2], + [0, 3, 0], + [4, 0, 5], + ]; +print(is_x_matrix($matrix), "\n"); # Output: 1 diff --git a/stats/pwc-challenge-017.json b/stats/pwc-challenge-017.json index 1151253dd3..c55bcc5a45 100644 --- a/stats/pwc-challenge-017.json +++ b/stats/pwc-challenge-017.json @@ -1,182 +1,12 @@ { - "subtitle" : { - "text" : "[Champions: 31] Last updated at 2023-03-26 10:37:55 GMT" - }, - "chart" : { - "type" : "column" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "series" : [ - { - "colorByPoint" : 1, - "name" : "The Weekly Challenge - 017", - "data" : [ - { - "drilldown" : "Adam Russell", - "name" : "Adam Russell", - "y" : 4 - }, - { - "name" : "Andrezgz", - "y" : 2, - "drilldown" : "Andrezgz" - }, - { - "y" : 3, - "name" : "Arne Sommer", - "drilldown" : "Arne Sommer" - }, - { - "y" : 4, - "name" : "Athanasius", - "drilldown" : "Athanasius" - }, - { - "drilldown" : "Daniel Mantovani", - "y" : 2, - "name" : "Daniel Mantovani" - }, - { - "drilldown" : "Dave Jacoby", - "name" : "Dave Jacoby", - "y" : 3 - }, - { - "drilldown" : "Duane Powell", - "y" : 2, - "name" : "Duane Powell" - }, - { - "name" : "Duncan C. White", - "y" : 2, - "drilldown" : "Duncan C. White" - }, - { - "name" : "E. Choroba", - "y" : 3, - "drilldown" : "E. Choroba" - }, - { - "drilldown" : "Feng Chang", - "name" : "Feng Chang", - "y" : 4 - }, - { - "drilldown" : "Francis Whittle", - "y" : 3, - "name" : "Francis Whittle" - }, - { - "drilldown" : "Jaldhar H. Vyas", - "name" : "Jaldhar H. Vyas", - "y" : 6 - }, - { - "y" : 6, - "name" : "Joelle Maslak", - "drilldown" : "Joelle Maslak" - }, - { - "y" : 2, - "name" : "Jorg Sommrey", - "drilldown" : "Jorg Sommrey" - }, - { - "drilldown" : "Kevin Colyer", - "name" : "Kevin Colyer", - "y" : 2 - }, - { - "y" : 3, - "name" : "Kian-Meng Ang", - "drilldown" : "Kian-Meng Ang" - }, - { - "drilldown" : "Lakpa Tashi Bhutia", - "name" : "Lakpa Tashi Bhutia", - "y" : 1 - }, - { - "drilldown" : "Laurent Rosenfeld", - "y" : 6, - "name" : "Laurent Rosenfeld" - }, - { - "name" : "Lubos Kolouch", - "y" : 2, - "drilldown" : "Lubos Kolouch" - }, - { - "drilldown" : "Michael Hamlin", - "name" : "Michael Hamlin", - "y" : 1 - }, - { - "drilldown" : "Noud Aldenhoven", - "name" : "Noud Aldenhoven", - "y" : 2 - }, - { - "y" : 1, - "name" : "Ozzy", - "drilldown" : "Ozzy" - }, - { - "name" : "Paulo Custodio", - "y" : 2, - "drilldown" : "Paulo Custodio" - }, - { - "drilldown" : "Randy Lauen", - "name" : "Randy Lauen", - "y" : 1 - }, - { - "name" : "Roger Bell_West", - "y" : 2, - "drilldown" : "Roger Bell_West" - }, - { - "drilldown" : "Ruben Westerberg", - "name" : "Ruben Westerberg", - "y" : 4 - }, - { - "name" : "Simon Proctor", - "y" : 1, - "drilldown" : "Simon Proctor" - }, - { - "drilldown" : "Steven Wilson", - "y" : 2, - "name" : "Steven Wilson" - }, - { - "y" : 2, - "name" : "Stuart Little", - "drilldown" : "Stuart Little" - }, - { - "drilldown" : "Veesh Goldman", - "name" : "Veesh Goldman", - "y" : 4 - }, - { - "drilldown" : "Yozen Hernandez", - "name" : "Yozen Hernandez", - "y" : 4 - } - ] + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 } - ], - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1, - "headerFormat" : "{series.name}
" }, "drilldown" : { "series" : [ @@ -196,13 +26,13 @@ }, { "name" : "Andrezgz", - "id" : "Andrezgz", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Andrezgz" }, { "id" : "Arne Sommer", @@ -239,10 +69,11 @@ 2 ] ], - "id" : "Daniel Mantovani", - "name" : "Daniel Mantovani" + "name" : "Daniel Mantovani", + "id" : "Daniel Mantovani" }, { + "name" : "Dave Jacoby", "data" : [ [ "Perl", @@ -253,30 +84,41 @@ 1 ] ], - "id" : "Dave Jacoby", - "name" : "Dave Jacoby" + "id" : "Dave Jacoby" }, { "data" : [ [ "Perl", - 2 + 1 ] ], + "name" : "David Ferrone", + "id" : "David Ferrone" + }, + { "name" : "Duane Powell", + "data" : [ + [ + "Perl", + 2 + ] + ], "id" : "Duane Powell" }, { - "id" : "Duncan C. White", - "name" : "Duncan C. White", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Duncan C. White", + "id" : "Duncan C. White" }, { + "id" : "E. Choroba", + "name" : "E. Choroba", "data" : [ [ "Perl", @@ -286,11 +128,10 @@ "Blog", 1 ] - ], - "id" : "E. Choroba", - "name" : "E. Choroba" + ] }, { + "id" : "Feng Chang", "data" : [ [ "Perl", @@ -301,12 +142,9 @@ 2 ] ], - "id" : "Feng Chang", "name" : "Feng Chang" }, { - "name" : "Francis Whittle", - "id" : "Francis Whittle", "data" : [ [ "Raku", @@ -316,11 +154,12 @@ "Blog", 1 ] - ] + ], + "name" : "Francis Whittle", + "id" : "Francis Whittle" }, { "name" : "Jaldhar H. Vyas", - "id" : "Jaldhar H. Vyas", "data" : [ [ "Perl", @@ -334,11 +173,12 @@ "Blog", 1 ] - ] + ], + "id" : "Jaldhar H. Vyas" }, { - "name" : "Joelle Maslak", "id" : "Joelle Maslak", + "name" : "Joelle Maslak", "data" : [ [ "Perl", @@ -357,20 +197,21 @@ 2 ] ], - "id" : "Jorg Sommrey", - "name" : "Jorg Sommrey" + "name" : "Jorg Sommrey", + "id" : "Jorg Sommrey" }, { + "name" : "Kevin Colyer", "data" : [ [ "Raku", 2 ] ], - "id" : "Kevin Colyer", - "name" : "Kevin Colyer" + "id" : "Kevin Colyer" }, { + "id" : "Kian-Meng Ang", "data" : [ [ "Perl", @@ -381,8 +222,7 @@ 1 ] ], - "name" : "Kian-Meng Ang", - "id" : "Kian-Meng Ang" + "name" : "Kian-Meng Ang" }, { "data" : [ @@ -391,8 +231,8 @@ 1 ] ], - "id" : "Lakpa Tashi Bhutia", - "name" : "Lakpa Tashi Bhutia" + "name" : "Lakpa Tashi Bhutia", + "id" : "Lakpa Tashi Bhutia" }, { "data" : [ @@ -413,28 +253,28 @@ "id" : "Laurent Rosenfeld" }, { + "id" : "Lubos Kolouch", + "name" : "Lubos Kolouch", "data" : [ [ "Perl", 2 ] - ], - "name" : "Lubos Kolouch", - "id" : "Lubos Kolouch" + ] }, { + "id" : "Michael Hamlin", + "name" : "Michael Hamlin", "data" : [ [ "Perl", 1 ] - ], - "name" : "Michael Hamlin", - "id" : "Michael Hamlin" + ] }, { - "name" : "Noud Aldenhoven", "id" : "Noud Aldenhoven", + "name" : "Noud Aldenhoven", "data" : [ [ "Raku", @@ -443,28 +283,28 @@ ] }, { + "name" : "Ozzy", "data" : [ [ "Raku", 1 ] ], - "id" : "Ozzy", - "name" : "Ozzy" + "id" : "Ozzy" }, { + "id" : "Paulo Custodio", "data" : [ [ "Perl", 2 ] ], - "name" : "Paulo Custodio", - "id" : "Paulo Custodio" + "name" : "Paulo Custodio" }, { - "name" : "Randy Lauen", "id" : "Randy Lauen", + "name" : "Randy Lauen", "data" : [ [ "Raku", @@ -473,18 +313,18 @@ ] }, { + "id" : "Roger Bell_West", "data" : [ [ "Perl", 2 ] ], - "id" : "Roger Bell_West", "name" : "Roger Bell_West" }, { - "name" : "Ruben Westerberg", "id" : "Ruben Westerberg", + "name" : "Ruben Westerberg", "data" : [ [ "Perl", @@ -498,36 +338,35 @@ }, { "name" : "Simon Proctor", - "id" : "Simon Proctor", "data" : [ [ "Raku", 1 ] - ] + ], + "id" : "Simon Proctor" }, { + "name" : "Steven Wilson", "data" : [ [ "Perl", 2 ] ], - "id" : "Steven Wilson", - "name" : "Steven Wilson" + "id" : "Steven Wilson" }, { - "name" : "Stuart Little", "id" : "Stuart Little", "data" : [ [ "Raku", 2 ] - ] + ], + "name" : "Stuart Little" }, { - "name" : "Veesh Goldman", "id" : "Veesh Goldman", "data" : [ [ @@ -542,9 +381,11 @@ "Blog", 1 ] - ] + ], + "name" : "Veesh Goldman" }, { + "name" : "Yozen Hernandez", "data" : [ [ "Perl", @@ -555,26 +396,200 @@ 2 ] ], - "name" : "Yozen Hernandez", "id" : "Yozen Hernandez" } ] }, + "series" : [ + { + "colorByPoint" : 1, + "data" : [ + { + "y" : 4, + "drilldown" : "Adam Russell", + "name" : "Adam Russell" + }, + { + "y" : 2, + "drilldown" : "Andrezgz", + "name" : "Andrezgz" + }, + { + "name" : "Arne Sommer", + "drilldown" : "Arne Sommer", + "y" : 3 + }, + { + "name" : "Athanasius", + "drilldown" : "Athanasius", + "y" : 4 + }, + { + "name" : "Daniel Mantovani", + "drilldown" : "Daniel Mantovani", + "y" : 2 + }, + { + "y" : 3, + "drilldown" : "Dave Jacoby", + "name" : "Dave Jacoby" + }, + { + "name" : "David Ferrone", + "y" : 1, + "drilldown" : "David Ferrone" + }, + { + "drilldown" : "Duane Powell", + "y" : 2, + "name" : "Duane Powell" + }, + { + "drilldown" : "Duncan C. White", + "y" : 2, + "name" : "Duncan C. White" + }, + { + "drilldown" : "E. Choroba", + "y" : 3, + "name" : "E. Choroba" + }, + { + "name" : "Feng Chang", + "y" : 4, + "drilldown" : "Feng Chang" + }, + { + "drilldown" : "Francis Whittle", + "y" : 3, + "name" : "Francis Whittle" + }, + { + "y" : 6, + "drilldown" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas" + }, + { + "y" : 6, + "drilldown" : "Joelle Maslak", + "name" : "Joelle Maslak" + }, + { + "y" : 2, + "drilldown" : "Jorg Sommrey", + "name" : "Jorg Sommrey" + }, + { + "name" : "Kevin Colyer", + "drilldown" : "Kevin Colyer", + "y" : 2 + }, + { + "y" : 3, + "drilldown" : "Kian-Meng Ang", + "name" : "Kian-Meng Ang" + }, + { + "y" : 1, + "drilldown" : "Lakpa Tashi Bhutia", + "name" : "Lakpa Tashi Bhutia" + }, + { + "name" : "Laurent Rosenfeld", + "drilldown" : "Laurent Rosenfeld", + "y" : 6 + }, + { + "name" : "Lubos Kolouch", + "y" : 2, + "drilldown" : "Lubos Kolouch" + }, + { + "y" : 1, + "drilldown" : "Michael Hamlin", + "name" : "Michael Hamlin" + }, + { + "name" : "Noud Aldenhoven", + "drilldown" : "Noud Aldenhoven", + "y" : 2 + }, + { + "name" : "Ozzy", + "drilldown" : "Ozzy", + "y" : 1 + }, + { + "name" : "Paulo Custodio", + "y" : 2, + "drilldown" : "Paulo Custodio" + }, + { + "name" : "Randy Lauen", + "y" : 1, + "drilldown" : "Randy Lauen" + }, + { + "name" : "Roger Bell_West", + "y" : 2, + "drilldown" : "Roger Bell_West" + }, + { + "y" : 4, + "drilldown" : "Ruben Westerberg", + "name" : "Ruben Westerberg" + }, + { + "name" : "Simon Proctor", + "y" : 1, + "drilldown" : "Simon Proctor" + }, + { + "y" : 2, + "drilldown" : "Steven Wilson", + "name" : "Steven Wilson" + }, + { + "name" : "Stuart Little", + "drilldown" : "Stuart Little", + "y" : 2 + }, + { + "name" : "Veesh Goldman", + "drilldown" : "Veesh Goldman", + "y" : 4 + }, + { + "y" : 4, + "drilldown" : "Yozen Hernandez", + "name" : "Yozen Hernandez" + } + ], + "name" : "The Weekly Challenge - 017" + } + ], "legend" : { "enabled" : 0 }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } + "chart" : { + "type" : "column" }, "title" : { "text" : "The Weekly Challenge - 017" }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "tooltip" : { + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "{series.name}
" + }, + "subtitle" : { + "text" : "[Champions: 32] Last updated at 2024-04-23 15:59:07 GMT" + }, "xAxis" : { "type" : "category" } diff --git a/stats/pwc-challenge-018.json b/stats/pwc-challenge-018.json index fc2a57d9af..c6b1a090b8 100644 --- a/stats/pwc-challenge-018.json +++ b/stats/pwc-challenge-018.json @@ -1,188 +1,18 @@ { - "legend" : { - "enabled" : 0 - }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1, - "headerFormat" : "{series.name}
" - }, - "series" : [ - { - "colorByPoint" : 1, - "name" : "The Weekly Challenge - 018", - "data" : [ - { - "name" : "Adam Russell", - "y" : 3, - "drilldown" : "Adam Russell" - }, - { - "y" : 2, - "name" : "Andrezgz", - "drilldown" : "Andrezgz" - }, - { - "drilldown" : "Arne Sommer", - "y" : 3, - "name" : "Arne Sommer" - }, - { - "drilldown" : "Athanasius", - "name" : "Athanasius", - "y" : 4 - }, - { - "name" : "Daniel Mantovani", - "y" : 2, - "drilldown" : "Daniel Mantovani" - }, - { - "drilldown" : "Duane Powell", - "name" : "Duane Powell", - "y" : 2 - }, - { - "name" : "Duncan C. White", - "y" : 2, - "drilldown" : "Duncan C. White" - }, - { - "drilldown" : "E. Choroba", - "y" : 4, - "name" : "E. Choroba" - }, - { - "drilldown" : "Feng Chang", - "y" : 2, - "name" : "Feng Chang" - }, - { - "y" : 2, - "name" : "Francis Whittle", - "drilldown" : "Francis Whittle" - }, - { - "name" : "Jaime Corchado", - "y" : 2, - "drilldown" : "Jaime Corchado" - }, - { - "name" : "Jaldhar H. Vyas", - "y" : 5, - "drilldown" : "Jaldhar H. Vyas" - }, - { - "drilldown" : "Joelle Maslak", - "name" : "Joelle Maslak", - "y" : 6 - }, - { - "drilldown" : "Jorg Sommrey", - "name" : "Jorg Sommrey", - "y" : 2 - }, - { - "y" : 1, - "name" : "Kevin Colyer", - "drilldown" : "Kevin Colyer" - }, - { - "drilldown" : "Kian-Meng Ang", - "name" : "Kian-Meng Ang", - "y" : 2 - }, - { - "drilldown" : "Lakpa Tashi Bhutia", - "name" : "Lakpa Tashi Bhutia", - "y" : 1 - }, - { - "name" : "Laurent Rosenfeld", - "y" : 8, - "drilldown" : "Laurent Rosenfeld" - }, - { - "drilldown" : "Lubos Kolouch", - "name" : "Lubos Kolouch", - "y" : 2 - }, - { - "y" : 1, - "name" : "Mark Anderson", - "drilldown" : "Mark Anderson" - }, - { - "y" : 3, - "name" : "Mark Senn", - "drilldown" : "Mark Senn" - }, - { - "drilldown" : "Martin Barth", - "name" : "Martin Barth", - "y" : 1 - }, - { - "drilldown" : "Noud Aldenhoven", - "y" : 2, - "name" : "Noud Aldenhoven" - }, - { - "drilldown" : "Ozzy", - "y" : 1, - "name" : "Ozzy" - }, - { - "name" : "Paulo Custodio", - "y" : 2, - "drilldown" : "Paulo Custodio" - }, - { - "y" : 2, - "name" : "Randy Lauen", - "drilldown" : "Randy Lauen" - }, - { - "y" : 3, - "name" : "Roger Bell_West", - "drilldown" : "Roger Bell_West" - }, - { - "drilldown" : "Ruben Westerberg", - "name" : "Ruben Westerberg", - "y" : 4 - }, - { - "drilldown" : "Simon Proctor", - "name" : "Simon Proctor", - "y" : 2 - }, - { - "drilldown" : "Steven Wilson", - "y" : 1, - "name" : "Steven Wilson" - }, - { - "name" : "Stuart Little", - "y" : 2, - "drilldown" : "Stuart Little" - }, - { - "drilldown" : "Veesh Goldman", - "y" : 1, - "name" : "Veesh Goldman" - }, - { - "name" : "Yozen Hernandez", - "y" : 3, - "drilldown" : "Yozen Hernandez" - } - ] + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } } - ], + }, "drilldown" : { "series" : [ { + "id" : "Adam Russell", + "name" : "Adam Russell", "data" : [ [ "Perl", @@ -192,22 +22,19 @@ "Blog", 1 ] - ], - "name" : "Adam Russell", - "id" : "Adam Russell" + ] }, { "id" : "Andrezgz", - "name" : "Andrezgz", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Andrezgz" }, { - "name" : "Arne Sommer", "id" : "Arne Sommer", "data" : [ [ @@ -218,10 +45,10 @@ "Blog", 1 ] - ] + ], + "name" : "Arne Sommer" }, { - "id" : "Athanasius", "name" : "Athanasius", "data" : [ [ @@ -232,27 +59,38 @@ "Raku", 2 ] - ] + ], + "id" : "Athanasius" }, { "name" : "Daniel Mantovani", - "id" : "Daniel Mantovani", "data" : [ [ "Perl", 2 ] + ], + "id" : "Daniel Mantovani" + }, + { + "id" : "David Ferrone", + "name" : "David Ferrone", + "data" : [ + [ + "Perl", + 1 + ] ] }, { + "id" : "Duane Powell", "data" : [ [ "Perl", 2 ] ], - "name" : "Duane Powell", - "id" : "Duane Powell" + "name" : "Duane Powell" }, { "id" : "Duncan C. White", @@ -265,6 +103,8 @@ ] }, { + "id" : "E. Choroba", + "name" : "E. Choroba", "data" : [ [ "Perl", @@ -274,19 +114,17 @@ "Blog", 2 ] - ], - "name" : "E. Choroba", - "id" : "E. Choroba" + ] }, { "name" : "Feng Chang", - "id" : "Feng Chang", "data" : [ [ "Raku", 2 ] - ] + ], + "id" : "Feng Chang" }, { "id" : "Francis Whittle", @@ -299,17 +137,16 @@ ] }, { + "id" : "Jaime Corchado", "data" : [ [ "Perl", 2 ] ], - "id" : "Jaime Corchado", "name" : "Jaime Corchado" }, { - "name" : "Jaldhar H. Vyas", "id" : "Jaldhar H. Vyas", "data" : [ [ @@ -324,11 +161,11 @@ "Blog", 1 ] - ] + ], + "name" : "Jaldhar H. Vyas" }, { "name" : "Joelle Maslak", - "id" : "Joelle Maslak", "data" : [ [ "Perl", @@ -338,11 +175,12 @@ "Raku", 3 ] - ] + ], + "id" : "Joelle Maslak" }, { - "name" : "Jorg Sommrey", "id" : "Jorg Sommrey", + "name" : "Jorg Sommrey", "data" : [ [ "Perl", @@ -351,13 +189,13 @@ ] }, { + "id" : "Kevin Colyer", "data" : [ [ "Raku", 1 ] ], - "id" : "Kevin Colyer", "name" : "Kevin Colyer" }, { @@ -376,15 +214,16 @@ }, { "name" : "Lakpa Tashi Bhutia", - "id" : "Lakpa Tashi Bhutia", "data" : [ [ "Perl", 1 ] - ] + ], + "id" : "Lakpa Tashi Bhutia" }, { + "name" : "Laurent Rosenfeld", "data" : [ [ "Perl", @@ -399,8 +238,7 @@ 4 ] ], - "id" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld" + "id" : "Laurent Rosenfeld" }, { "data" : [ @@ -423,6 +261,7 @@ "id" : "Mark Anderson" }, { + "name" : "Mark Senn", "data" : [ [ "Raku", @@ -433,60 +272,61 @@ 1 ] ], - "id" : "Mark Senn", - "name" : "Mark Senn" + "id" : "Mark Senn" }, { + "name" : "Martin Barth", "data" : [ [ "Raku", 1 ] ], - "id" : "Martin Barth", - "name" : "Martin Barth" + "id" : "Martin Barth" }, { + "id" : "Noud Aldenhoven", "data" : [ [ "Raku", 2 ] ], - "name" : "Noud Aldenhoven", - "id" : "Noud Aldenhoven" + "name" : "Noud Aldenhoven" }, { - "name" : "Ozzy", - "id" : "Ozzy", "data" : [ [ "Raku", 1 ] - ] + ], + "name" : "Ozzy", + "id" : "Ozzy" }, { "name" : "Paulo Custodio", - "id" : "Paulo Custodio", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Paulo Custodio" }, { + "id" : "Randy Lauen", "data" : [ [ "Raku", 2 ] ], - "name" : "Randy Lauen", - "id" : "Randy Lauen" + "name" : "Randy Lauen" }, { + "id" : "Roger Bell_West", + "name" : "Roger Bell_West", "data" : [ [ "Perl", @@ -496,13 +336,10 @@ "Blog", 1 ] - ], - "name" : "Roger Bell_West", - "id" : "Roger Bell_West" + ] }, { "name" : "Ruben Westerberg", - "id" : "Ruben Westerberg", "data" : [ [ "Perl", @@ -512,49 +349,51 @@ "Raku", 2 ] - ] + ], + "id" : "Ruben Westerberg" }, { + "id" : "Simon Proctor", "data" : [ [ "Raku", 2 ] ], - "id" : "Simon Proctor", "name" : "Simon Proctor" }, { - "name" : "Steven Wilson", "id" : "Steven Wilson", "data" : [ [ "Perl", 1 ] - ] + ], + "name" : "Steven Wilson" }, { - "name" : "Stuart Little", "id" : "Stuart Little", "data" : [ [ "Raku", 2 ] - ] + ], + "name" : "Stuart Little" }, { + "id" : "Veesh Goldman", "data" : [ [ "Raku", 1 ] ], - "id" : "Veesh Goldman", "name" : "Veesh Goldman" }, { + "name" : "Yozen Hernandez", "data" : [ [ "Perl", @@ -565,35 +404,211 @@ 2 ] ], - "id" : "Yozen Hernandez", - "name" : "Yozen Hernandez" + "id" : "Yozen Hernandez" } ] }, + "series" : [ + { + "colorByPoint" : 1, + "name" : "The Weekly Challenge - 018", + "data" : [ + { + "name" : "Adam Russell", + "y" : 3, + "drilldown" : "Adam Russell" + }, + { + "name" : "Andrezgz", + "y" : 2, + "drilldown" : "Andrezgz" + }, + { + "y" : 3, + "drilldown" : "Arne Sommer", + "name" : "Arne Sommer" + }, + { + "name" : "Athanasius", + "y" : 4, + "drilldown" : "Athanasius" + }, + { + "drilldown" : "Daniel Mantovani", + "y" : 2, + "name" : "Daniel Mantovani" + }, + { + "name" : "David Ferrone", + "drilldown" : "David Ferrone", + "y" : 1 + }, + { + "drilldown" : "Duane Powell", + "y" : 2, + "name" : "Duane Powell" + }, + { + "drilldown" : "Duncan C. White", + "y" : 2, + "name" : "Duncan C. White" + }, + { + "drilldown" : "E. Choroba", + "y" : 4, + "name" : "E. Choroba" + }, + { + "drilldown" : "Feng Chang", + "y" : 2, + "name" : "Feng Chang" + }, + { + "name" : "Francis Whittle", + "drilldown" : "Francis Whittle", + "y" : 2 + }, + { + "drilldown" : "Jaime Corchado", + "y" : 2, + "name" : "Jaime Corchado" + }, + { + "drilldown" : "Jaldhar H. Vyas", + "y" : 5, + "name" : "Jaldhar H. Vyas" + }, + { + "name" : "Joelle Maslak", + "y" : 6, + "drilldown" : "Joelle Maslak" + }, + { + "y" : 2, + "drilldown" : "Jorg Sommrey", + "name" : "Jorg Sommrey" + }, + { + "drilldown" : "Kevin Colyer", + "y" : 1, + "name" : "Kevin Colyer" + }, + { + "y" : 2, + "drilldown" : "Kian-Meng Ang", + "name" : "Kian-Meng Ang" + }, + { + "drilldown" : "Lakpa Tashi Bhutia", + "y" : 1, + "name" : "Lakpa Tashi Bhutia" + }, + { + "drilldown" : "Laurent Rosenfeld", + "y" : 8, + "name" : "Laurent Rosenfeld" + }, + { + "name" : "Lubos Kolouch", + "y" : 2, + "drilldown" : "Lubos Kolouch" + }, + { + "drilldown" : "Mark Anderson", + "y" : 1, + "name" : "Mark Anderson" + }, + { + "name" : "Mark Senn", + "drilldown" : "Mark Senn", + "y" : 3 + }, + { + "name" : "Martin Barth", + "drilldown" : "Martin Barth", + "y" : 1 + }, + { + "name" : "Noud Aldenhoven", + "y" : 2, + "drilldown" : "Noud Aldenhoven" + }, + { + "drilldown" : "Ozzy", + "y" : 1, + "name" : "Ozzy" + }, + { + "y" : 2, + "drilldown" : "Paulo Custodio", + "name" : "Paulo Custodio" + }, + { + "drilldown" : "Randy Lauen", + "y" : 2, + "name" : "Randy Lauen" + }, + { + "name" : "Roger Bell_West", + "drilldown" : "Roger Bell_West", + "y" : 3 + }, + { + "drilldown" : "Ruben Westerberg", + "y" : 4, + "name" : "Ruben Westerberg" + }, + { + "y" : 2, + "drilldown" : "Simon Proctor", + "name" : "Simon Proctor" + }, + { + "y" : 1, + "drilldown" : "Steven Wilson", + "name" : "Steven Wilson" + }, + { + "name" : "Stuart Little", + "y" : 2, + "drilldown" : "Stuart Little" + }, + { + "name" : "Veesh Goldman", + "drilldown" : "Veesh Goldman", + "y" : 1 + }, + { + "y" : 3, + "drilldown" : "Yozen Hernandez", + "name" : "Yozen Hernandez" + } + ] + } + ], + "legend" : { + "enabled" : 0 + }, "chart" : { "type" : "column" }, + "title" : { + "text" : "The Weekly Challenge - 018" + }, "yAxis" : { "title" : { "text" : "Total Solutions" } }, "subtitle" : { - "text" : "[Champions: 33] Last updated at 2023-03-26 10:37:55 GMT" + "text" : "[Champions: 34] Last updated at 2024-04-23 15:59:07 GMT" + }, + "tooltip" : { + "headerFormat" : "{series.name}
", + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
" }, "xAxis" : { "type" : "category" - }, - "title" : { - "text" : "The Weekly Challenge - 018" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } } } diff --git a/stats/pwc-challenge-265.json b/stats/pwc-challenge-265.json new file mode 100644 index 0000000000..f2f82cadff --- /dev/null +++ b/stats/pwc-challenge-265.json @@ -0,0 +1,695 @@ +{ + "xAxis" : { + "type" : "category" + }, + "subtitle" : { + "text" : "[Champions: 37] Last updated at 2024-04-23 15:59:07 GMT" + }, + "tooltip" : { + "headerFormat" : "{series.name}
", + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
" + }, + "legend" : { + "enabled" : 0 + }, + "series" : [ + { + "data" : [ + { + "name" : "Ali Moradi", + "y" : 5, + "drilldown" : "Ali Moradi" + }, + { + "name" : "Andrew Shitov", + "drilldown" : "Andrew Shitov", + "y" : 1 + }, + { + "name" : "Arne Sommer", + "y" : 3, + "drilldown" : "Arne Sommer" + }, + { + "y" : 2, + "drilldown" : "Asher Harvey-Smith", + "name" : "Asher Harvey-Smith" + }, + { + "name" : "Athanasius", + "drilldown" : "Athanasius", + "y" : 4 + }, + { + "name" : "BarrOff", + "y" : 1, + "drilldown" : "BarrOff" + }, + { + "name" : "Bob Lied", + "y" : 2, + "drilldown" : "Bob Lied" + }, + { + "y" : 2, + "drilldown" : "Bruce Gray", + "name" : "Bruce Gray" + }, + { + "name" : "Dave Jacoby", + "drilldown" : "Dave Jacoby", + "y" : 3 + }, + { + "y" : 2, + "drilldown" : "David Ferrone", + "name" : "David Ferrone" + }, + { + "name" : "E. Choroba", + "y" : 2, + "drilldown" : "E. Choroba" + }, + { + "y" : 2, + "drilldown" : "Feng Chang", + "name" : "Feng Chang" + }, + { + "y" : 5, + "drilldown" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas" + }, + { + "name" : "James Smith", + "drilldown" : "James Smith", + "y" : 3 + }, + { + "name" : "Jan Krnavek", + "y" : 2, + "drilldown" : "Jan Krnavek" + }, + { + "drilldown" : "Jorg Sommrey", + "y" : 3, + "name" : "Jorg Sommrey" + }, + { + "name" : "Kjetil Skotheim", + "y" : 2, + "drilldown" : "Kjetil Skotheim" + }, + { + "drilldown" : "Laurent Rosenfeld", + "y" : 6, + "name" : "Laurent Rosenfeld" + }, + { + "drilldown" : "Lubos Kolouch", + "y" : 2, + "name" : "Lubos Kolouch" + }, + { + "name" : "Luca Ferrari", + "drilldown" : "Luca Ferrari", + "y" : 11 + }, + { + "name" : "Mariano Spadaccini", + "y" : 2, + "drilldown" : "Mariano Spadaccini" + }, + { + "name" : "Mark Anderson", + "y" : 2, + "drilldown" : "Mark Anderson" + }, + { + "name" : "Matthew Neleigh", + "y" : 2, + "drilldown" : "Matthew Neleigh" + }, + { + "name" : "Nelo Tovar", + "y" : 2, + "drilldown" : "Nelo Tovar" + }, + { + "drilldown" : "Niels van Dijke", + "y" : 2, + "name" : "Niels van Dijke" + }, + { + "name" : "Packy Anderson", + "drilldown" : "Packy Anderson", + "y" : 5 + }, + { + "y" : 3, + "drilldown" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith" + }, + { + "drilldown" : "Peter Meszaros", + "y" : 2, + "name" : "Peter Meszaros" + }, + { + "name" : "Reinier Maliepaard", + "drilldown" : "Reinier Maliepaard", + "y" : 3 + }, + { + "drilldown" : "Robbie Hatley", + "y" : 3, + "name" : "Robbie Hatley" + }, + { + "name" : "Robert Ransbottom", + "y" : 2, + "drilldown" : "Robert Ransbottom" + }, + { + "y" : 5, + "drilldown" : "Roger Bell_West", + "name" : "Roger Bell_West" + }, + { + "drilldown" : "Simon Green", + "y" : 3, + "name" : "Simon Green" + }, + { + "name" : "Thomas Kohler", + "y" : 4, + "drilldown" : "Thomas Kohler" + }, + { + "y" : 4, + "drilldown" : "Ulrich Rieke", + "name" : "Ulrich Rieke" + }, + { + "name" : "W. Luis Mochan", + "y" : 3, + "drilldown" : "W. Luis Mochan" + }, + { + "drilldown" : "Wanderdoc", + "y" : 2, + "name" : "Wanderdoc" + } + ], + "name" : "The Weekly Challenge - 265", + "colorByPoint" : 1 + } + ], + "chart" : { + "type" : "column" + }, + "title" : { + "text" : "The Weekly Challenge - 265" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } + }, + "drilldown" : { + "series" : [ + { + "id" : "Ali Moradi", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Ali Moradi" + }, + { + "id" : "Andrew Shitov", + "data" : [ + [ + "Raku", + 1 + ] + ], + "name" : "Andrew Shitov" + }, + { + "id" : "Arne Sommer", + "name" : "Arne Sommer", + "data" : [ + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ] + }, + { + "id" : "Asher Harvey-Smith", + "data" : [ + [ + "Raku", + 2 + ] + ], + "name" : "Asher Harvey-Smith" + }, + { + "id" : "Athanasius", + "name" : "Athanasius", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ] + ] + }, + { + "id" : "BarrOff", + "data" : [ + [ + "Raku", + 1 + ] + ], + "name" : "BarrOff" + }, + { + "id" : "Bob Lied", + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Bob Lied" + }, + { + "data" : [ + [ + "Raku", + 2 + ] + ], + "name" : "Bruce Gray", + "id" : "Bruce Gray" + }, + { + "id" : "Dave Jacoby", + "name" : "Dave Jacoby", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ] + }, + { + "name" : "David Ferrone", + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "David Ferrone" + }, + { + "name" : "E. Choroba", + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "E. Choroba" + }, + { + "data" : [ + [ + "Raku", + 2 + ] + ], + "name" : "Feng Chang", + "id" : "Feng Chang" + }, + { + "id" : "Jaldhar H. Vyas", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Jaldhar H. Vyas" + }, + { + "name" : "James Smith", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "James Smith" + }, + { + "data" : [ + [ + "Raku", + 2 + ] + ], + "name" : "Jan Krnavek", + "id" : "Jan Krnavek" + }, + { + "name" : "Jorg Sommrey", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Jorg Sommrey" + }, + { + "id" : "Kjetil Skotheim", + "name" : "Kjetil Skotheim", + "data" : [ + [ + "Perl", + 2 + ] + ] + }, + { + "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 2 + ] + ] + }, + { + "name" : "Lubos Kolouch", + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Lubos Kolouch" + }, + { + "data" : [ + [ + "Raku", + 2 + ], + [ + "Blog", + 9 + ] + ], + "name" : "Luca Ferrari", + "id" : "Luca Ferrari" + }, + { + "id" : "Mariano Spadaccini", + "name" : "Mariano Spadaccini", + "data" : [ + [ + "Perl", + 2 + ] + ] + }, + { + "id" : "Mark Anderson", + "data" : [ + [ + "Raku", + 2 + ] + ], + "name" : "Mark Anderson" + }, + { + "id" : "Matthew Neleigh", + "data" : [ + [ + "Perl", + 2 + ] +