From 011f5753333c8e103396ef17683e2d7bb4164820 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Mon, 4 Sep 2023 01:30:04 +0100 Subject: - Added solutions by Jan Krnavek. - Added solutions by Mariano Spadaccini. - Added solutions by Tyler Wardhaugh. - Added solutions by Simon Green. - Added solutions by Lubos Kolouch. - Added solutions by Solathian. - Added solutions by Cheok-Yin Fung. - Added solutions by Matthias Muth. - Added solutions by Jorg Sommrey. - Added solutions by BarrOff. - Added solutions by Bruce Gray. - Added solutions by Kueppo Wesley. - Added solutions by Robert Ransbottom. - Added solutions by Bob Lied. - Added solutions by Feng Chang. - Added solutions by Clifton Wood. - Added solutions by Macy TY. - Added solutions by Wanderdoc. --- challenge-231/clifton-wood/README | 1 + challenge-231/clifton-wood/raku/ch-1.raku | 1 + challenge-231/clifton-wood/raku/ch-2.raku | 3 + challenge-231/clifton-wood/raku/ch-2a.raku | 3 + challenge-231/kueppo-wesley/Perl/ch-1.pl | 40 - challenge-231/kueppo-wesley/Perl/ch-2.pl | 30 - challenge-231/kueppo-wesley/perl/ch-1.pl | 40 + challenge-231/kueppo-wesley/perl/ch-2.pl | 30 + challenge-231/macy-ty/README | 1 + challenge-231/macy-ty/javascript/ch-1.js | 12 + challenge-231/macy-ty/javascript/ch-2.js | 10 + challenge-231/wanderdoc/perl/ch-1.pl | 35 + challenge-231/wanderdoc/perl/ch-2.pl | 37 + guests.json | 1 + members.json | 1 + stats/pwc-challenge-001.json | 510 ++++----- stats/pwc-challenge-151.json | 228 ++-- stats/pwc-challenge-221.json | 267 ++--- stats/pwc-challenge-222.json | 295 +++--- stats/pwc-challenge-223.json | 267 ++--- stats/pwc-challenge-224.json | 267 ++--- stats/pwc-challenge-225.json | 573 +++++----- stats/pwc-challenge-226.json | 341 +++--- stats/pwc-challenge-227.json | 297 +++--- stats/pwc-challenge-228.json | 583 +++++----- stats/pwc-challenge-229.json | 587 ++++++----- stats/pwc-challenge-230.json | 603 +++++------ stats/pwc-current.json | 462 +++++--- stats/pwc-language-breakdown-summary.json | 54 +- stats/pwc-language-breakdown.json | 1580 ++++++++++++++-------------- stats/pwc-leaders.json | 500 ++++----- stats/pwc-summary-1-30.json | 50 +- stats/pwc-summary-121-150.json | 114 +- stats/pwc-summary-151-180.json | 124 +-- stats/pwc-summary-181-210.json | 98 +- stats/pwc-summary-211-240.json | 66 +- stats/pwc-summary-241-270.json | 114 +- stats/pwc-summary-271-300.json | 90 +- stats/pwc-summary-31-60.json | 116 +- stats/pwc-summary-61-90.json | 144 +-- stats/pwc-summary-91-120.json | 66 +- stats/pwc-summary.json | 76 +- 42 files changed, 4603 insertions(+), 4114 deletions(-) create mode 100644 challenge-231/clifton-wood/README create mode 100644 challenge-231/clifton-wood/raku/ch-1.raku create mode 100644 challenge-231/clifton-wood/raku/ch-2.raku create mode 100644 challenge-231/clifton-wood/raku/ch-2a.raku delete mode 100644 challenge-231/kueppo-wesley/Perl/ch-1.pl delete mode 100644 challenge-231/kueppo-wesley/Perl/ch-2.pl create mode 100644 challenge-231/kueppo-wesley/perl/ch-1.pl create mode 100644 challenge-231/kueppo-wesley/perl/ch-2.pl create mode 100644 challenge-231/macy-ty/README create mode 100644 challenge-231/macy-ty/javascript/ch-1.js create mode 100644 challenge-231/macy-ty/javascript/ch-2.js create mode 100755 challenge-231/wanderdoc/perl/ch-1.pl create mode 100755 challenge-231/wanderdoc/perl/ch-2.pl diff --git a/challenge-231/clifton-wood/README b/challenge-231/clifton-wood/README new file mode 100644 index 0000000000..c85ee0de50 --- /dev/null +++ b/challenge-231/clifton-wood/README @@ -0,0 +1 @@ +Solutions by Clifton Wood. diff --git a/challenge-231/clifton-wood/raku/ch-1.raku b/challenge-231/clifton-wood/raku/ch-1.raku new file mode 100644 index 0000000000..369f845bf8 --- /dev/null +++ b/challenge-231/clifton-wood/raku/ch-1.raku @@ -0,0 +1 @@ +my @ints = (3, 2, 1, 4); @ints.grep( * != (@ints.min, @ints.max).any ).gist.say # (3 2) diff --git a/challenge-231/clifton-wood/raku/ch-2.raku b/challenge-231/clifton-wood/raku/ch-2.raku new file mode 100644 index 0000000000..1fb6657024 --- /dev/null +++ b/challenge-231/clifton-wood/raku/ch-2.raku @@ -0,0 +1,3 @@ +sub getAge($_) { .comb[11,12].join.Int }; +my @list = ("1313579440F2036","2921522980M5644"); +@list.grep({ .&getAge >= 60 }).elems.say # 0 diff --git a/challenge-231/clifton-wood/raku/ch-2a.raku b/challenge-231/clifton-wood/raku/ch-2a.raku new file mode 100644 index 0000000000..93ea56cce2 --- /dev/null +++ b/challenge-231/clifton-wood/raku/ch-2a.raku @@ -0,0 +1,3 @@ +sub getAge($_) { .comb[11,12].join.Int }; +my @list = ("7868190130M7522","5303914400F9211","9273338290F4010"); +@list.grep({ .&getAge >= 60 }).elems.say # 2 diff --git a/challenge-231/kueppo-wesley/Perl/ch-1.pl b/challenge-231/kueppo-wesley/Perl/ch-1.pl deleted file mode 100644 index de61acb30d..0000000000 --- a/challenge-231/kueppo-wesley/Perl/ch-1.pl +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env perl - - -# You are given an array of distinct integers. -# -# Write a script to find all elements that is neither minimum nor maximum. Return -1 if you can’t. -# -# Example 1 -# Input: @ints = (3, 2, 1, 4) -# Output: (3, 2) -# -# The minimum is 1 and maximum is 4 in the given array. So (3, 2) is neither min nor max. -# Example 2 -# Input: @ints = (3, 1) -# Output: -1 -# Example 3 -# Input: @ints = (2, 1, 3) -# Output: (2) -# -# The minimum is 1 and maximum is 3 in the given array. So 2 is neither min nor max. - -use strict; -use warnings; -use feature qw(signatures); - -use List::Util qw(min max); -use Test::More; - -sub not_minmax($a) { - my ($min, $max) = (min(@$a), max(@$a)); - - @$a = grep { $_ != $min && $_ != $max } @$a; - return @$a ? $a : -1; -} - -is_deeply(not_minmax([3, 2, 1, 4]), [3, 2], "ok?"); -is_deeply(not_minmax([2, 1, 3]), [2], "ok?"); -is(not_minmax([3, 1]), -1, "ok?"); - -done_testing(3); diff --git a/challenge-231/kueppo-wesley/Perl/ch-2.pl b/challenge-231/kueppo-wesley/Perl/ch-2.pl deleted file mode 100644 index f34c48163d..0000000000 --- a/challenge-231/kueppo-wesley/Perl/ch-2.pl +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/env perl - -# You are given a list of passenger details in the form “9999999999A1122”, where 9 denotes the phone number, A the sex, 1 the age and 2 the seat number. -# -# Write a script to return the count of all senior citizens (age >= 60). -# -# Example 1 -# Input: @list = ("7868190130M7522","5303914400F9211","9273338290F4010") -# Ouput: 2 -# -# The age of the passengers in the given list are 75, 92 and 40. -# So we have only 2 senior citizens. -# Example 2 -# Input: @list = ("1313579440F2036","2921522980M5644") -# Ouput: 0 - -use strict; -use warnings; -use feature qw(signatures); - -use Test::More; - -sub find_seniors($a) { - return grep { s/^.+(.{2}).{2}/$1/r >= 60 } @$a; -} - -is(find_seniors(["7868190130M7522","5303914400F9211","9273338290F4010"]), 2, "ok?"); -is(find_seniors(["1313579440F2036","2921522980M5644"]), 0, "ok?"); - -done_testing(2); diff --git a/challenge-231/kueppo-wesley/perl/ch-1.pl b/challenge-231/kueppo-wesley/perl/ch-1.pl new file mode 100644 index 0000000000..de61acb30d --- /dev/null +++ b/challenge-231/kueppo-wesley/perl/ch-1.pl @@ -0,0 +1,40 @@ +#!/usr/bin/env perl + + +# You are given an array of distinct integers. +# +# Write a script to find all elements that is neither minimum nor maximum. Return -1 if you can’t. +# +# Example 1 +# Input: @ints = (3, 2, 1, 4) +# Output: (3, 2) +# +# The minimum is 1 and maximum is 4 in the given array. So (3, 2) is neither min nor max. +# Example 2 +# Input: @ints = (3, 1) +# Output: -1 +# Example 3 +# Input: @ints = (2, 1, 3) +# Output: (2) +# +# The minimum is 1 and maximum is 3 in the given array. So 2 is neither min nor max. + +use strict; +use warnings; +use feature qw(signatures); + +use List::Util qw(min max); +use Test::More; + +sub not_minmax($a) { + my ($min, $max) = (min(@$a), max(@$a)); + + @$a = grep { $_ != $min && $_ != $max } @$a; + return @$a ? $a : -1; +} + +is_deeply(not_minmax([3, 2, 1, 4]), [3, 2], "ok?"); +is_deeply(not_minmax([2, 1, 3]), [2], "ok?"); +is(not_minmax([3, 1]), -1, "ok?"); + +done_testing(3); diff --git a/challenge-231/kueppo-wesley/perl/ch-2.pl b/challenge-231/kueppo-wesley/perl/ch-2.pl new file mode 100644 index 0000000000..f34c48163d --- /dev/null +++ b/challenge-231/kueppo-wesley/perl/ch-2.pl @@ -0,0 +1,30 @@ +#!/usr/bin/env perl + +# You are given a list of passenger details in the form “9999999999A1122”, where 9 denotes the phone number, A the sex, 1 the age and 2 the seat number. +# +# Write a script to return the count of all senior citizens (age >= 60). +# +# Example 1 +# Input: @list = ("7868190130M7522","5303914400F9211","9273338290F4010") +# Ouput: 2 +# +# The age of the passengers in the given list are 75, 92 and 40. +# So we have only 2 senior citizens. +# Example 2 +# Input: @list = ("1313579440F2036","2921522980M5644") +# Ouput: 0 + +use strict; +use warnings; +use feature qw(signatures); + +use Test::More; + +sub find_seniors($a) { + return grep { s/^.+(.{2}).{2}/$1/r >= 60 } @$a; +} + +is(find_seniors(["7868190130M7522","5303914400F9211","9273338290F4010"]), 2, "ok?"); +is(find_seniors(["1313579440F2036","2921522980M5644"]), 0, "ok?"); + +done_testing(2); diff --git a/challenge-231/macy-ty/README b/challenge-231/macy-ty/README new file mode 100644 index 0000000000..bafec674e0 --- /dev/null +++ b/challenge-231/macy-ty/README @@ -0,0 +1 @@ +Solutions by Macy TY. diff --git a/challenge-231/macy-ty/javascript/ch-1.js b/challenge-231/macy-ty/javascript/ch-1.js new file mode 100644 index 0000000000..00db6b22e6 --- /dev/null +++ b/challenge-231/macy-ty/javascript/ch-1.js @@ -0,0 +1,12 @@ +function minMax (...elements){ + let array = Object.values(elements); + + const min_num = Math.min(...array); + const max_num = Math.max(...array); + var result = array.filter((num) => num != min_num && num != max_num); + if (result.length == 0){ + result = -1; + } + console.log(result); +} +minMax(3, 1); diff --git a/challenge-231/macy-ty/javascript/ch-2.js b/challenge-231/macy-ty/javascript/ch-2.js new file mode 100644 index 0000000000..86827ee4f6 --- /dev/null +++ b/challenge-231/macy-ty/javascript/ch-2.js @@ -0,0 +1,10 @@ +function seniorCitizens (...elements){ + var senior = 0; + for(value of elements){ + const age = value.slice(-4, -2); + if (age >= 60){senior++} + } + console.log("Number of senior(s): " + senior); +} + +seniorCitizens ("7868190130M7522","5303914400F9211","9273338290F4010") diff --git a/challenge-231/wanderdoc/perl/ch-1.pl b/challenge-231/wanderdoc/perl/ch-1.pl new file mode 100755 index 0000000000..747d84dd9d --- /dev/null +++ b/challenge-231/wanderdoc/perl/ch-1.pl @@ -0,0 +1,35 @@ +#!perl +use strict; +use warnings FATAL => qw(all); + +=prompt +You are given an array of distinct integers. Write a script to find all elements that is neither minimum nor maximum. Return -1 if you can’t. +Example 1 Input: @ints = (3, 2, 1, 4) Output: (3, 2) +The minimum is 1 and maximum is 4 in the given array. So (3, 2) is neither min nor max. +Example 2 Input: @ints = (3, 1) Output: -1 +Example 3 Input: @ints = (2, 1, 3) Output: (2) +The minimum is 1 and maximum is 3 in the given array. So 2 is neither min nor max. +=cut + + + +use Test2::V0; +use List::Util qw(min max); + + +sub no_min_max +{ + my @arr = @_; + return -1 if (scalar @arr < 3); + my $min = min(@arr); + my $max = max(@arr); + @arr = grep {$_ != $min and $_ != $max} @arr; + return @arr; +} + +# print join(" ", no_min_max(2, 1, 3)); + +is([no_min_max(3, 2, 1, 4)], [3, 2], 'Example 1'); +is([no_min_max(3, 1)], [-1], 'Example 2'); +is([no_min_max(2, 1, 3)], [2], 'Example 3'); +done_testing(); \ No newline at end of file diff --git a/challenge-231/wanderdoc/perl/ch-2.pl b/challenge-231/wanderdoc/perl/ch-2.pl new file mode 100755 index 0000000000..90f2d33c3d --- /dev/null +++ b/challenge-231/wanderdoc/perl/ch-2.pl @@ -0,0 +1,37 @@ +#!perl +use strict; +use warnings FATAL => qw(all); + +=prompt +You are given a list of passenger details in the form "9999999999A1122", where 9 denotes the phone number, A the sex, 1 the age and 2 the seat number. Write a script to return the count of all senior citizens (age >= 60). +Example 1 Input: @list = ("7868190130M7522","5303914400F9211","9273338290F4010") Output: 2 +The age of the passengers in the given list are 75, 92 and 40. +So we have only 2 senior citizens. +Example 2 Input: @list = ("1313579440F2036","2921522980M5644") Output: 0 +=cut + + + + + + + +use Test2::V0; + +sub count_by_age +{ + my $boundary = shift; + my @tickets = @_; + my $count = 0; + for my $elm ( @tickets ) + { + my ($phone, $sex, $age, $seat) = unpack("A10A1A2A2", $elm); + $count++ if ( $age >= $boundary ); + } + return $count; +} + + +is(count_by_age(60, ("7868190130M7522","5303914400F9211","9273338290F4010")), 2, 'Example 1'); +is(count_by_age(60, ("1313579440F2036","2921522980M5644")), 0, 'Example 2'); +done_testing(); \ No newline at end of file diff --git a/guests.json b/guests.json index 2beee277e4..de71c61efa 100644 --- a/guests.json +++ b/guests.json @@ -10,6 +10,7 @@ "henry-wong" : "Henry Wong", "joaofel" : "Joao Felipe", "karishma" : "Karishma Rajput", + "macy-ty" : "Macy TY", "mfoda" : "Mohammad Foda", "michael-dicicco" : "Michael DiCicco", "orestis-zekai" : "Orestis Zekai", diff --git a/members.json b/members.json index ac47b24a06..e018ed16e7 100644 --- a/members.json +++ b/members.json @@ -47,6 +47,7 @@ "cheok-yin-fung" : "Cheok-Yin Fung", "chicagoist" : "Chicagoist", "christian-jaeger" : "Christian Jaeger", + "clifton-wood" : "Clifton Wood", "cliveholloway" : "Clive Holloway", "colin-crain" : "Colin Crain", "craig" : "Craig", diff --git a/stats/pwc-challenge-001.json b/stats/pwc-challenge-001.json index 25538a0ae2..33459057a7 100644 --- a/stats/pwc-challenge-001.json +++ b/stats/pwc-challenge-001.json @@ -1,18 +1,17 @@ { - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } + "title" : { + "text" : "The Weekly Challenge - 001" }, "xAxis" : { "type" : "category" }, - "title" : { - "text" : "The Weekly Challenge - 001" + "subtitle" : { + "text" : "[Champions: 69] Last updated at 2023-09-04 00:10:45 GMT" + }, + "tooltip" : { + "headerFormat" : "{series.name}
", + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
" }, "chart" : { "type" : "column" @@ -22,12 +21,6 @@ "text" : "Total Solutions" } }, - "subtitle" : { - "text" : "[Champions: 69] Last updated at 2023-03-26 10:37:55 GMT" - }, - "legend" : { - "enabled" : 0 - }, "drilldown" : { "series" : [ { @@ -41,6 +34,8 @@ ] }, { + "name" : "Adam Russell", + "id" : "Adam Russell", "data" : [ [ "Perl", @@ -50,29 +45,27 @@ "Blog", 1 ] - ], - "id" : "Adam Russell", - "name" : "Adam Russell" + ] }, { + "name" : "Ailbhe Tweedie", + "id" : "Ailbhe Tweedie", "data" : [ [ "Perl", 1 ] - ], - "id" : "Ailbhe Tweedie", - "name" : "Ailbhe Tweedie" + ] }, { - "id" : "Alex Daniel", - "name" : "Alex Daniel", "data" : [ [ "Raku", 2 ] - ] + ], + "name" : "Alex Daniel", + "id" : "Alex Daniel" }, { "id" : "Ali Moradi", @@ -85,14 +78,14 @@ ] }, { + "name" : "Andrezgz", + "id" : "Andrezgz", "data" : [ [ "Perl", 2 ] - ], - "id" : "Andrezgz", - "name" : "Andrezgz" + ] }, { "data" : [ @@ -105,8 +98,8 @@ "name" : "Antonio Gamiz" }, { - "name" : "Arne Sommer", "id" : "Arne Sommer", + "name" : "Arne Sommer", "data" : [ [ "Perl", @@ -123,18 +116,18 @@ ] }, { + "id" : "Arpad Toth", + "name" : "Arpad Toth", "data" : [ [ "Perl", 2 ] - ], - "id" : "Arpad Toth", - "name" : "Arpad Toth" + ] }, { - "name" : "Athanasius", "id" : "Athanasius", + "name" : "Athanasius", "data" : [ [ "Perl", @@ -153,28 +146,26 @@ "id" : "Bob Kleemann" }, { + "name" : "Bob Lied", + "id" : "Bob Lied", "data" : [ [ "Perl", 2 ] - ], - "name" : "Bob Lied", - "id" : "Bob Lied" + ] }, { - "id" : "Daniel Mantovani", - "name" : "Daniel Mantovani", "data" : [ [ "Perl", 1 ] - ] + ], + "name" : "Daniel Mantovani", + "id" : "Daniel Mantovani" }, { - "name" : "Dave Cross", - "id" : "Dave Cross", "data" : [ [ "Perl", @@ -184,7 +175,9 @@ "Blog", 1 ] - ] + ], + "id" : "Dave Cross", + "name" : "Dave Cross" }, { "id" : "Dave Jacoby", @@ -201,14 +194,14 @@ ] }, { - "id" : "David Kayal", - "name" : "David Kayal", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "David Kayal", + "id" : "David Kayal" }, { "data" : [ @@ -221,8 +214,8 @@ "id" : "Doug Schrag" }, { - "id" : "Duncan C. White", "name" : "Duncan C. White", + "id" : "Duncan C. White", "data" : [ [ "Perl", @@ -231,24 +224,24 @@ ] }, { - "name" : "Eddy HS", - "id" : "Eddy HS", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Eddy HS", + "id" : "Eddy HS" }, { - "id" : "Finley", - "name" : "Finley", "data" : [ [ "Raku", 2 ] - ] + ], + "name" : "Finley", + "id" : "Finley" }, { "data" : [ @@ -257,18 +250,18 @@ 1 ] ], - "id" : "Fred Zinn", - "name" : "Fred Zinn" + "name" : "Fred Zinn", + "id" : "Fred Zinn" }, { - "id" : "Freddie B", - "name" : "Freddie B", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Freddie B", + "name" : "Freddie B" }, { "name" : "Gustavo Chaves", @@ -295,8 +288,8 @@ ] }, { - "name" : "James Smith", "id" : "James Smith", + "name" : "James Smith", "data" : [ [ "Perl", @@ -309,14 +302,14 @@ ] }, { - "name" : "Jeff", - "id" : "Jeff", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Jeff", + "name" : "Jeff" }, { "id" : "Jeremy Carman", @@ -333,14 +326,14 @@ ] }, { - "name" : "Jim Bacon", - "id" : "Jim Bacon", "data" : [ [ "Perl", 1 ] - ] + ], + "name" : "Jim Bacon", + "id" : "Jim Bacon" }, { "id" : "JJ Merelo", @@ -357,6 +350,8 @@ ] }, { + "name" : "Jo Christian Oterhals", + "id" : "Jo Christian Oterhals", "data" : [ [ "Perl", @@ -370,13 +365,11 @@ "Blog", 1 ] - ], - "name" : "Jo Christian Oterhals", - "id" : "Jo Christian Oterhals" + ] }, { - "id" : "Joelle Maslak", "name" : "Joelle Maslak", + "id" : "Joelle Maslak", "data" : [ [ "Perl", @@ -389,24 +382,24 @@ ] }, { - "name" : "John Barrett", - "id" : "John Barrett", "data" : [ [ "Perl", 1 ] - ] + ], + "name" : "John Barrett", + "id" : "John Barrett" }, { - "name" : "Jorg Sommrey", - "id" : "Jorg Sommrey", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Jorg Sommrey", + "id" : "Jorg Sommrey" }, { "data" : [ @@ -415,18 +408,18 @@ 2 ] ], - "id" : "Juan Caballero", - "name" : "Juan Caballero" + "name" : "Juan Caballero", + "id" : "Juan Caballero" }, { + "id" : "Khalid", + "name" : "Khalid", "data" : [ [ "Perl", 2 ] - ], - "id" : "Khalid", - "name" : "Khalid" + ] }, { "id" : "Kian-Meng Ang", @@ -443,14 +436,14 @@ ] }, { - "name" : "Kivanc Yazan", - "id" : "Kivanc Yazan", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Kivanc Yazan", + "name" : "Kivanc Yazan" }, { "data" : [ @@ -477,6 +470,8 @@ "name" : "Lars Balker" }, { + "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", "data" : [ [ "Perl", @@ -490,19 +485,21 @@ "Blog", 1 ] - ], - "id" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld" + ] }, { + "id" : "Lubos Kolouch", + "name" : "Lubos Kolouch", "data" : [ [ "Perl", 2 + ], + [ + "Blog", + 1 ] - ], - "id" : "Lubos Kolouch", - "name" : "Lubos Kolouch" + ] }, { "data" : [ @@ -511,18 +508,18 @@ 2 ] ], - "id" : "Mark Senn", - "name" : "Mark Senn" + "name" : "Mark Senn", + "id" : "Mark Senn" }, { - "id" : "Martin Mugeni", - "name" : "Martin Mugeni", "data" : [ [ "Raku", 2 ] - ] + ], + "id" : "Martin Mugeni", + "name" : "Martin Mugeni" }, { "data" : [ @@ -531,22 +528,20 @@ 2 ] ], - "name" : "Max Kossek", - "id" : "Max Kossek" + "id" : "Max Kossek", + "name" : "Max Kossek" }, { - "id" : "Neil Bowers", - "name" : "Neil Bowers", "data" : [ [ "Perl", 1 ] - ] + ], + "id" : "Neil Bowers", + "name" : "Neil Bowers" }, { - "name" : "Nick Logan", - "id" : "Nick Logan", "data" : [ [ "Perl", @@ -556,7 +551,9 @@ "Raku", 2 ] - ] + ], + "name" : "Nick Logan", + "id" : "Nick Logan" }, { "data" : [ @@ -565,8 +562,8 @@ 2 ] ], - "id" : "Oleksii Tsvietnov", - "name" : "Oleksii Tsvietnov" + "name" : "Oleksii Tsvietnov", + "id" : "Oleksii Tsvietnov" }, { "id" : "Ozzy", @@ -579,34 +576,34 @@ ] }, { - "id" : "Pablo Saavedra", - "name" : "Pablo Saavedra", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Pablo Saavedra", + "id" : "Pablo Saavedra" }, { - "id" : "Paulo Custodio", - "name" : "Paulo Custodio", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Paulo Custodio", + "name" : "Paulo Custodio" }, { - "id" : "Pavel Jurca", - "name" : "Pavel Jurca", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Pavel Jurca", + "id" : "Pavel Jurca" }, { "id" : "Pete Houston", @@ -629,12 +626,12 @@ 1 ] ], - "id" : "Philippe Bruhat", - "name" : "Philippe Bruhat" + "name" : "Philippe Bruhat", + "id" : "Philippe Bruhat" }, { - "id" : "Prajith P", "name" : "Prajith P", + "id" : "Prajith P", "data" : [ [ "Perl", @@ -643,8 +640,8 @@ ] }, { - "id" : "Ruben Westerberg", "name" : "Ruben Westerberg", + "id" : "Ruben Westerberg", "data" : [ [ "Perl", @@ -657,6 +654,8 @@ ] }, { + "id" : "Ryan Thompson", + "name" : "Ryan Thompson", "data" : [ [ "Perl", @@ -666,33 +665,29 @@ "Raku", 2 ] - ], - "id" : "Ryan Thompson", - "name" : "Ryan Thompson" + ] }, { - "name" : "Samir Parikh", - "id" : "Samir Parikh", "data" : [ [ "Perl", 1 ] - ] + ], + "name" : "Samir Parikh", + "id" : "Samir Parikh" }, { - "name" : "Sean Meininger", - "id" : "Sean Meininger", "data" : [ [ "Raku", 2 ] - ] + ], + "name" : "Sean Meininger", + "id" : "Sean Meininger" }, { - "id" : "Simon Proctor", - "name" : "Simon Proctor", "data" : [ [ "Perl", @@ -706,19 +701,23 @@ "Blog", 2 ] - ] + ], + "id" : "Simon Proctor", + "name" : "Simon Proctor" }, { + "name" : "Simon Reinhardt", + "id" : "Simon Reinhardt", "data" : [ [ "Perl", 2 ] - ], - "name" : "Simon Reinhardt", - "id" : "Simon Reinhardt" + ] }, { + "name" : "Steve Rogerson", + "id" : "Steve Rogerson", "data" : [ [ "Perl", @@ -728,9 +727,7 @@ "Raku", 2 ] - ], - "name" : "Steve Rogerson", - "id" : "Steve Rogerson" + ] }, { "data" : [ @@ -753,14 +750,14 @@ "id" : "Stuart Little" }, { + "id" : "Tiago Stock", + "name" : "Tiago Stock", "data" : [ [ "Perl", 1 ] - ], - "name" : "Tiago Stock", - "id" : "Tiago Stock" + ] }, { "data" : [ @@ -769,8 +766,8 @@ 2 ] ], - "id" : "Tore Andersson", - "name" : "Tore Andersson" + "name" : "Tore Andersson", + "id" : "Tore Andersson" }, { "data" : [ @@ -783,14 +780,14 @@ "name" : "Veesh Goldman" }, { + "name" : "Vinod Kumar K", + "id" : "Vinod Kumar K", "data" : [ [ "Perl", 2 ] - ], - "name" : "Vinod Kumar K", - "id" : "Vinod Kumar K" + ] }, { "data" : [ @@ -803,8 +800,8 @@ "id" : "William Gilmore" }, { - "id" : "Yet Ebreo", "name" : "Yet Ebreo", + "id" : "Yet Ebreo", "data" : [ [ "Perl", @@ -818,40 +815,33 @@ } ] }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "{series.name}
", - "followPointer" : 1 - }, "series" : [ { - "name" : "The Weekly Challenge - 001", - "colorByPoint" : 1, "data" : [ { - "drilldown" : "Abigail", "y" : 2, - "name" : "Abigail" + "name" : "Abigail", + "drilldown" : "Abigail" }, { - "name" : "Adam Russell", + "drilldown" : "Adam Russell", "y" : 3, - "drilldown" : "Adam Russell" + "name" : "Adam Russell" }, { "drilldown" : "Ailbhe Tweedie", - "y" : 1, - "name" : "Ailbhe Tweedie" + "name" : "Ailbhe Tweedie", + "y" : 1 }, { - "name" : "Alex Daniel", "y" : 2, + "name" : "Alex Daniel", "drilldown" : "Alex Daniel" }, { - "drilldown" : "Ali Moradi", + "y" : 2, "name" : "Ali Moradi", - "y" : 2 + "drilldown" : "Ali Moradi" }, { "drilldown" : "Andrezgz", @@ -859,19 +849,19 @@ "y" : 2 }, { - "drilldown" : "Antonio Gamiz", + "y" : 2, "name" : "Antonio Gamiz", - "y" : 2 + "drilldown" : "Antonio Gamiz" }, { + "drilldown" : "Arne Sommer", "y" : 5, - "name" : "Arne Sommer", - "drilldown" : "Arne Sommer" + "name" : "Arne Sommer" }, { - "drilldown" : "Arpad Toth", "y" : 2, - "name" : "Arpad Toth" + "name" : "Arpad Toth", + "drilldown" : "Arpad Toth" }, { "drilldown" : "Athanasius", @@ -880,8 +870,8 @@ }, { "drilldown" : "Bob Kleemann", - "name" : "Bob Kleemann", - "y" : 2 + "y" : 2, + "name" : "Bob Kleemann" }, { "drilldown" : "Bob Lied", @@ -889,59 +879,59 @@ "y" : 2 }, { - "y" : 1, "name" : "Daniel Mantovani", + "y" : 1, "drilldown" : "Daniel Mantovani" }, { - "drilldown" : "Dave Cross", "y" : 3, - "name" : "Dave Cross" + "name" : "Dave Cross", + "drilldown" : "Dave Cross" }, { - "name" : "Dave Jacoby", "y" : 2, + "name" : "Dave Jacoby", "drilldown" : "Dave Jacoby" }, { - "y" : 2, + "drilldown" : "David Kayal", "name" : "David Kayal", - "drilldown" : "David Kayal" + "y" : 2 }, { - "y" : 2, + "drilldown" : "Doug Schrag", "name" : "Doug Schrag", - "drilldown" : "Doug Schrag" + "y" : 2 }, { - "drilldown" : "Duncan C. White", "name" : "Duncan C. White", - "y" : 2 + "y" : 2, + "drilldown" : "Duncan C. White" }, { - "y" : 2, + "drilldown" : "Eddy HS", "name" : "Eddy HS", - "drilldown" : "Eddy HS" + "y" : 2 }, { - "y" : 2, + "drilldown" : "Finley", "name" : "Finley", - "drilldown" : "Finley" + "y" : 2 }, { + "drilldown" : "Fred Zinn", "y" : 1, - "name" : "Fred Zinn", - "drilldown" : "Fred Zinn" + "name" : "Fred Zinn" }, { - "y" : 2, + "drilldown" : "Freddie B", "name" : "Freddie B", - "drilldown" : "Freddie B" + "y" : 2 }, { - "drilldown" : "Gustavo Chaves", + "name" : "Gustavo Chaves", "y" : 1, - "name" : "Gustavo Chaves" + "drilldown" : "Gustavo Chaves" }, { "drilldown" : "Jaldhar H. Vyas", @@ -949,29 +939,29 @@ "y" : 4 }, { - "name" : "James Smith", + "drilldown" : "James Smith", "y" : 4, - "drilldown" : "James Smith" + "name" : "James Smith" }, { - "drilldown" : "Jeff", + "name" : "Jeff", "y" : 2, - "name" : "Jeff" + "drilldown" : "Jeff" }, { - "drilldown" : "Jeremy Carman", "y" : 2, - "name" : "Jeremy Carman" + "name" : "Jeremy Carman", + "drilldown" : "Jeremy Carman" }, { "drilldown" : "Jim Bacon", - "y" : 1, - "name" : "Jim Bacon" + "name" : "Jim Bacon", + "y" : 1 }, { - "drilldown" : "JJ Merelo", "name" : "JJ Merelo", - "y" : 2 + "y" : 2, + "drilldown" : "JJ Merelo" }, { "drilldown" : "Jo Christian Oterhals", @@ -984,14 +974,14 @@ "name" : "Joelle Maslak" }, { - "name" : "John Barrett", "y" : 1, + "name" : "John Barrett", "drilldown" : "John Barrett" }, { "drilldown" : "Jorg Sommrey", - "name" : "Jorg Sommrey", - "y" : 2 + "y" : 2, + "name" : "Jorg Sommrey" }, { "drilldown" : "Juan Caballero", @@ -999,49 +989,49 @@ "name" : "Juan Caballero" }, { - "y" : 2, + "drilldown" : "Khalid", "name" : "Khalid", - "drilldown" : "Khalid" + "y" : 2 }, { - "drilldown" : "Kian-Meng Ang", "name" : "Kian-Meng Ang", - "y" : 3 + "y" : 3, + "drilldown" : "Kian-Meng Ang" }, { "drilldown" : "Kivanc Yazan", - "y" : 2, - "name" : "Kivanc Yazan" + "name" : "Kivanc Yazan", + "y" : 2 }, { - "drilldown" : "Lakpa Tashi Bhutia", "y" : 2, - "name" : "Lakpa Tashi Bhutia" + "name" : "Lakpa Tashi Bhutia", + "drilldown" : "Lakpa Tashi Bhutia" }, { - "y" : 4, + "drilldown" : "Lars Balker", "name" : "Lars Balker", - "drilldown" : "Lars Balker" + "y" : 4 }, { - "y" : 4, + "drilldown" : "Laurent Rosenfeld", "name" : "Laurent Rosenfeld", - "drilldown" : "Laurent Rosenfeld" + "y" : 4 }, { - "drilldown" : "Lubos Kolouch", - "y" : 2, - "name" : "Lubos Kolouch" + "y" : 3, + "name" : "Lubos Kolouch", + "drilldown" : "Lubos Kolouch" }, { "drilldown" : "Mark Senn", - "y" : 2, - "name" : "Mark Senn" + "name" : "Mark Senn", + "y" : 2 }, { - "drilldown" : "Martin Mugeni", "y" : 2, - "name" : "Martin Mugeni" + "name" : "Martin Mugeni", + "drilldown" : "Martin Mugeni" }, { "drilldown" : "Max Kossek", @@ -1054,8 +1044,8 @@ "drilldown" : "Neil Bowers" }, { - "name" : "Nick Logan", "y" : 4, + "name" : "Nick Logan", "drilldown" : "Nick Logan" }, { @@ -1069,14 +1059,14 @@ "drilldown" : "Ozzy" }, { - "y" : 2, + "drilldown" : "Pablo Saavedra", "name" : "Pablo Saavedra", - "drilldown" : "Pablo Saavedra" + "y" : 2 }, { + "drilldown" : "Paulo Custodio", "name" : "Paulo Custodio", - "y" : 2, - "drilldown" : "Paulo Custodio" + "y" : 2 }, { "name" : "Pavel Jurca", @@ -1084,69 +1074,69 @@ "drilldown" : "Pavel Jurca" }, { - "drilldown" : "Pete Houston", + "y" : 2, "name" : "Pete Houston", - "y" : 2 + "drilldown" : "Pete Houston" }, { "drilldown" : "Philippe Bruhat", - "name" : "Philippe Bruhat", - "y" : 3 + "y" : 3, + "name" : "Philippe Bruhat" }, { - "y" : 1, + "drilldown" : "Prajith P", "name" : "Prajith P", - "drilldown" : "Prajith P" + "y" : 1 }, { - "drilldown" : "Ruben Westerberg", + "name" : "Ruben Westerberg", "y" : 4, - "name" : "Ruben Westerberg" + "drilldown" : "Ruben Westerberg" }, { + "drilldown" : "Ryan Thompson", "name" : "Ryan Thompson", - "y" : 4, - "drilldown" : "Ryan Thompson" + "y" : 4 }, { - "drilldown" : "Samir Parikh", + "name" : "Samir Parikh", "y" : 1, - "name" : "Samir Parikh" + "drilldown" : "Samir Parikh" }, { + "drilldown" : "Sean Meininger", "y" : 2, - "name" : "Sean Meininger", - "drilldown" : "Sean Meininger" + "name" : "Sean Meininger" }, { - "drilldown" : "Simon Proctor", "y" : 7, - "name" : "Simon Proctor" + "name" : "Simon Proctor", + "drilldown" : "Simon Proctor" }, { - "name" : "Simon Reinhardt", "y" : 2, + "name" : "Simon Reinhardt", "drilldown" : "Simon Reinhardt" }, { "drilldown" : "Steve Rogerson", - "y" : 4, - "name" : "Steve Rogerson" + "name" : "Steve Rogerson", + "y" : 4 }, { + "drilldown" : "Steven Wilson", "y" : 2, - "name" : "Steven Wilson", - "drilldown" : "Steven Wilson" + "name" : "Steven Wilson" }, { "drilldown" : "Stuart Little", - "y" : 2, - "name" : "Stuart Little" + "name" : "Stuart Little", + "y" : 2 }, { - "drilldown" : "Tiago Stock", + "y" : 1, "name" : "Tiago Stock", - "y" : 1 + "drilldown" : "Tiago Stock" }, { "y" : 2, @@ -1159,9 +1149,9 @@ "drilldown" : "Veesh Goldman" }, { - "drilldown" : "Vinod Kumar K", "name" : "Vinod Kumar K", - "y" : 2 + "y" : 2, + "drilldown" : "Vinod Kumar K" }, { "drilldown" : "William Gilmore", @@ -1173,7 +1163,21 @@ "y" : 4, "name" : "Yet Ebreo" } - ] + ], + "name" : "The Weekly Challenge - 001", + "colorByPoint" : 1 + } + ], + "legend" : { + "enabled" : 0 + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } } - ] + } } diff --git a/stats/pwc-challenge-151.json b/stats/pwc-challenge-151.json index 093734f098..e6dd61eb64 100644 --- a/stats/pwc-challenge-151.json +++ b/stats/pwc-challenge-151.json @@ -1,21 +1,23 @@ { - "title" : { - "text" : "The Weekly Challenge - 151" + "chart" : { + "type" : "column" + }, + "legend" : { + "enabled" : 0 }, "drilldown" : { "series" : [ { - "id" : "Abigail", "data" : [ [ "Perl", 2 ] ], - "name" : "Abigail" + "name" : "Abigail", + "id" : "Abigail" }, { - "id" : "Alexander Pankoff", "data" : [ [ "Perl", @@ -26,6 +28,7 @@ 2 ] ], + "id" : "Alexander Pankoff", "name" : "Alexander Pankoff" }, { @@ -43,8 +46,8 @@ "name" : "Arne Sommer" }, { - "name" : "Athanasius", "id" : "Athanasius", + "name" : "Athanasius", "data" : [ [ "Perl", @@ -57,28 +60,28 @@ ] }, { - "name" : "Bruce Gray", "data" : [ [ "Raku", 2 ] ], - "id" : "Bruce Gray" + "id" : "Bruce Gray", + "name" : "Bruce Gray" }, { - "id" : "Cheok-Yin Fung", "data" : [ [ "Perl", 1 ] ], - "name" : "Cheok-Yin Fung" + "name" : "Cheok-Yin Fung", + "id" : "Cheok-Yin Fung" }, { - "name" : "Colin Crain", "id" : "Colin Crain", + "name" : "Colin Crain", "data" : [ [ "Perl", @@ -95,6 +98,8 @@ ] }, { + "name" : "Dave Jacoby", + "id" : "Dave Jacoby", "data" : [ [ "Perl", @@ -104,9 +109,7 @@ "Blog", 1 ] - ], - "id" : "Dave Jacoby", - "name" : "Dave Jacoby" + ] }, { "data" : [ @@ -115,32 +118,30 @@ 2 ] ], - "id" : "Duncan C. White", - "name" : "Duncan C. White" + "name" : "Duncan C. White", + "id" : "Duncan C. White" }, { - "name" : "E. Choroba", - "id" : "E. Choroba", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "E. Choroba", + "name" : "E. Choroba" }, { + "name" : "Feng Chang", + "id" : "Feng Chang", "data" : [ [ "Raku", - 1 + 2 ] - ], - "id" : "Feng Chang", - "name" : "Feng Chang" + ] }, { - "name" : "Flavio Poletti", - "id" : "Flavio Poletti", "data" : [ [ "Perl", @@ -154,11 +155,11 @@ "Blog", 2 ] - ] + ], + "name" : "Flavio Poletti", + "id" : "Flavio Poletti" }, { - "name" : "James Smith", - "id" : "James Smith", "data" : [ [ "Perl", @@ -168,17 +169,19 @@ "Blog", 1 ] - ] + ], + "name" : "James Smith", + "id" : "James Smith" }, { "id" : "Jan Krnavek", + "name" : "Jan Krnavek", "data" : [ [ "Raku", 1 ] - ], - "name" : "Jan Krnavek" + ] }, { "data" : [ @@ -210,13 +213,13 @@ }, { "id" : "Lubos Kolouch", + "name" : "Lubos Kolouch", "data" : [ [ "Perl", 2 ] - ], - "name" : "Lubos Kolouch" + ] }, { "name" : "Mark Anderson", @@ -235,32 +238,32 @@ 2 ] ], - "id" : "Marton Polgar", - "name" : "Marton Polgar" + "name" : "Marton Polgar", + "id" : "Marton Polgar" }, { - "name" : "Matthew Neleigh", "data" : [ [ "Perl", 2 ] ], + "name" : "Matthew Neleigh", "id" : "Matthew Neleigh" }, { - "id" : "Mohammad S Anwar", "data" : [ [ "Perl", 1 ] ], + "id" : "Mohammad S Anwar", "name" : "Mohammad S Anwar" }, { - "name" : "Paulo Custodio", "id" : "Paulo Custodio", + "name" : "Paulo Custodio", "data" : [ [ "Perl", @@ -269,6 +272,7 @@ ] }, { + "id" : "Peter Campbell Smith", "name" : "Peter Campbell Smith", "data" : [ [ @@ -279,8 +283,7 @@ "Blog", 1 ] - ], - "id" : "Peter Campbell Smith" + ] }, { "data" : [ @@ -293,8 +296,8 @@ "name" : "PokGoPun" }, { - "name" : "Roger Bell_West", "id" : "Roger Bell_West", + "name" : "Roger Bell_West", "data" : [ [ "Perl", @@ -311,6 +314,8 @@ ] }, { + "name" : "Simon Green", + "id" : "Simon Green", "data" : [ [ "Perl", @@ -320,11 +325,11 @@ "Blog", 1 ] - ], - "id" : "Simon Green", - "name" : "Simon Green" + ] }, { + "name" : "Ulrich Rieke", + "id" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -334,12 +339,11 @@ "Raku", 2 ] - ], - "id" : "Ulrich Rieke", - "name" : "Ulrich Rieke" + ] }, { "name" : "W. Luis Mochan", + "id" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -349,23 +353,10 @@ "Blog", 1 ] - ], - "id" : "W. Luis Mochan" + ] } ] }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } - }, - "chart" : { - "type" : "column" - }, "yAxis" : { "title" : { "text" : "Total Solutions" @@ -373,42 +364,40 @@ }, "series" : [ { - "name" : "The Weekly Challenge - 151", - "colorByPoint" : 1, "data" : [ { + "drilldown" : "Abigail", "y" : 2, - "name" : "Abigail", - "drilldown" : "Abigail" + "name" : "Abigail" }, { - "y" : 4, "name" : "Alexander Pankoff", + "y" : 4, "drilldown" : "Alexander Pankoff" }, { - "y" : 3, "drilldown" : "Arne Sommer", + "y" : 3, "name" : "Arne Sommer" }, { "y" : 4, - "drilldown" : "Athanasius", - "name" : "Athanasius" + "name" : "Athanasius", + "drilldown" : "Athanasius" }, { + "drilldown" : "Bruce Gray", "y" : 2, - "name" : "Bruce Gray", - "drilldown" : "Bruce Gray" + "name" : "Bruce Gray" }, { - "y" : 1, "name" : "Cheok-Yin Fung", + "y" : 1, "drilldown" : "Cheok-Yin Fung" }, { - "y" : 5, "name" : "Colin Crain", + "y" : 5, "drilldown" : "Colin Crain" }, { @@ -417,9 +406,9 @@ "drilldown" : "Dave Jacoby" }, { - "drilldown" : "Duncan C. White", "name" : "Duncan C. White", - "y" : 2 + "y" : 2, + "drilldown" : "Duncan C. White" }, { "y" : 2, @@ -428,43 +417,43 @@ }, { "drilldown" : "Feng Chang", - "name" : "Feng Chang", - "y" : 1 + "y" : 2, + "name" : "Feng Chang" }, { - "name" : "Flavio Poletti", "drilldown" : "Flavio Poletti", + "name" : "Flavio Poletti", "y" : 6 }, { - "drilldown" : "James Smith", "name" : "James Smith", - "y" : 3 + "y" : 3, + "drilldown" : "James Smith" }, { + "y" : 1, "name" : "Jan Krnavek", - "drilldown" : "Jan Krnavek", - "y" : 1 + "drilldown" : "Jan Krnavek" }, { - "name" : "Jorg Sommrey", "drilldown" : "Jorg Sommrey", - "y" : 2 + "y" : 2, + "name" : "Jorg Sommrey" }, { - "drilldown" : "Laurent Rosenfeld", + "y" : 5, "name" : "Laurent Rosenfeld", - "y" : 5 + "drilldown" : "Laurent Rosenfeld" }, { "name" : "Lubos Kolouch", - "drilldown" : "Lubos Kolouch", - "y" : 2 + "y" : 2, + "drilldown" : "Lubos Kolouch" }, { + "drilldown" : "Mark Anderson", "y" : 2, - "name" : "Mark Anderson", - "drilldown" : "Mark Anderson" + "name" : "Mark Anderson" }, { "drilldown" : "Marton Polgar", @@ -472,65 +461,76 @@ "y" : 2 }, { - "name" : "Matthew Neleigh", "drilldown" : "Matthew Neleigh", - "y" : 2 + "y" : 2, + "name" : "Matthew Neleigh" }, { - "y" : 1, "name" : "Mohammad S Anwar", + "y" : 1, "drilldown" : "Mohammad S Anwar" }, { + "drilldown" : "Paulo Custodio", "y" : 2, - "name" : "Paulo Custodio", - "drilldown" : "Paulo Custodio" + "name" : "Paulo Custodio" }, { "name" : "Peter Campbell Smith", - "drilldown" : "Peter Campbell Smith", - "y" : 3 + "y" : 3, + "drilldown" : "Peter Campbell Smith" }, { "drilldown" : "PokGoPun", - "name" : "PokGoPun", - "y" : 2 + "y" : 2, + "name" : "PokGoPun" }, { "name" : "Roger Bell_West", - "drilldown" : "Roger Bell_West", - "y" : 5 + "y" : 5, + "drilldown" : "Roger Bell_West" }, { + "name" : "Simon Green", "y" : 3, - "drilldown" : "Simon Green", - "name" : "Simon Green" + "drilldown" : "Simon Green" }, { - "y" : 4, + "drilldown" : "Ulrich Rieke", "name" : "Ulrich Rieke", - "drilldown" : "Ulrich Rieke" + "y" : 4 }, { "drilldown" : "W. Luis Mochan", "name" : "W. Luis Mochan", "y" : 3 } - ] + ], + "colorByPoint" : 1, + "name" : "The Weekly Challenge - 151" } ], - "legend" : { - "enabled" : 0 + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } + } }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1, - "headerFormat" : "{series.name}
" + "title" : { + "text" : "The Weekly Challenge - 151" + }, + "subtitle" : { + "text" : "[Champions: 28] Last updated at 2023-09-04 00:10:45 GMT" }, "xAxis" : { "type" : "category" }, - "subtitle" : { - "text" : "[Champions: 28] Last updated at 2022-04-07 03:51:16 GMT" + "tooltip" : { + "headerFormat" : "{series.name}
", + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
" } } diff --git a/stats/pwc-challenge-221.json b/stats/pwc-challenge-221.json index c47e2835c8..7c91f0a43f 100644 --- a/stats/pwc-challenge-221.json +++ b/stats/pwc-challenge-221.json @@ -1,34 +1,40 @@ { - "xAxis" : { - "type" : "category" - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2023-06-25 07:52:20 GMT" - }, "chart" : { "type" : "column" }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } + }, + "legend" : { + "enabled" : 0 + }, "drilldown" : { "series" : [ { + "name" : "Ali Moradi", + "id" : "Ali Moradi", "data" : [ [ "Perl", 2 ] - ], - "id" : "Ali Moradi", - "name" : "Ali Moradi" + ] }, { - "name" : "Andreas Voegele", - "id" : "Andreas Voegele", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Andreas Voegele", + "id" : "Andreas Voegele" }, { "data" : [ @@ -45,8 +51,6 @@ "id" : "Arne Sommer" }, { - "id" : "Athanasius", - "name" : "Athanasius", "data" : [ [ "Perl", @@ -56,7 +60,9 @@ "Raku", 1 ] - ] + ], + "name" : "Athanasius", + "id" : "Athanasius" }, { "name" : "Avery Adams", @@ -73,36 +79,38 @@ ] }, { + "id" : "BarrOff", + "name" : "BarrOff", "data" : [ [ "Raku", 2 ] - ], - "id" : "BarrOff", - "name" : "BarrOff" + ] }, { + "name" : "Bruce Gray", + "id" : "Bruce Gray", "data" : [ [ "Raku", 2 ] - ], - "id" : "Bruce Gray", - "name" : "Bruce Gray" + ] }, { - "id" : "Cheok-Yin Fung", - "name" : "Cheok-Yin Fung", "data" : [ [ "Perl", 1 ] - ] + ], + "id" : "Cheok-Yin Fung", + "name" : "Cheok-Yin Fung" }, { + "id" : "David Ferrone", + "name" : "David Ferrone", "data" : [ [ "Perl", @@ -112,9 +120,7 @@ "Raku", 2 ] - ], - "id" : "David Ferrone", - "name" : "David Ferrone" + ] }, { "name" : "E. Choroba", @@ -127,8 +133,16 @@ ] }, { - "name" : "Flavio Poletti", - "id" : "Flavio Poletti", + "data" : [ + [ + "Raku", + 2 + ] + ], + "name" : "Feng Chang", + "id" : "Feng Chang" + }, + { "data" : [ [ "Perl", @@ -142,11 +156,11 @@ "Blog", 2 ] - ] + ], + "id" : "Flavio Poletti", + "name" : "Flavio Poletti" }, { - "name" : "Jaldhar H. Vyas", - "id" : "Jaldhar H. Vyas", "data" : [ [ "Perl", @@ -160,17 +174,19 @@ "Blog", 1 ] - ] + ], + "name" : "Jaldhar H. Vyas", + "id" : "Jaldhar H. Vyas" }, { + "id" : "Jan Krnavek", + "name" : "Jan Krnavek", "data" : [ [ "Raku", 1 ] - ], - "id" : "Jan Krnavek", - "name" : "Jan Krnavek" + ] }, { "name" : "Jorg Sommrey", @@ -183,8 +199,8 @@ ] }, { - "name" : "Lance Wicks", "id" : "Lance Wicks", + "name" : "Lance Wicks", "data" : [ [ "Perl", @@ -215,14 +231,14 @@ ] }, { - "name" : "Lubos Kolouch", - "id" :