From 70a1571ce4c48f53a1eebc84eddb5c035f88b987 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Fri, 13 Jan 2023 20:19:42 +0000 Subject: - Added solutions by Robbie Hatley. - Added solutions by Bob Lied. - Added solutions by Arpad Thot. - Added solutions by Jorg Sommrey. - Added solutions by Laurent Rosenfeld. - Added solutions by Robert DiCicco. --- challenge-199/laurent-rosenfeld/blog.txt | 1 + challenge-199/laurent-rosenfeld/perl/ch-1.pl | 19 + challenge-199/laurent-rosenfeld/perl/ch-2.pl | 25 + challenge-199/laurent-rosenfeld/raku/ch-1.raku | 12 + challenge-199/laurent-rosenfeld/raku/ch-2.raku | 23 + challenge-199/robert-dicicco/perl/ch-2.pl | 119 ++ challenge-199/robert-dicicco/raku/ch-2.raku | 117 ++ stats/pwc-challenge-189.json | 341 +++--- stats/pwc-challenge-190.json | 345 +++--- stats/pwc-current.json | 384 ++++--- stats/pwc-language-breakdown-summary.json | 88 +- stats/pwc-language-breakdown.json | 1420 ++++++++++++------------ stats/pwc-leaders.json | 426 +++---- stats/pwc-summary-1-30.json | 124 +-- stats/pwc-summary-121-150.json | 36 +- stats/pwc-summary-151-180.json | 40 +- stats/pwc-summary-181-210.json | 100 +- stats/pwc-summary-211-240.json | 110 +- stats/pwc-summary-241-270.json | 102 +- stats/pwc-summary-271-300.json | 66 +- stats/pwc-summary-31-60.json | 120 +- stats/pwc-summary-61-90.json | 118 +- stats/pwc-summary-91-120.json | 24 +- stats/pwc-summary.json | 66 +- 24 files changed, 2322 insertions(+), 1904 deletions(-) create mode 100644 challenge-199/laurent-rosenfeld/blog.txt create mode 100644 challenge-199/laurent-rosenfeld/perl/ch-1.pl create mode 100644 challenge-199/laurent-rosenfeld/perl/ch-2.pl create mode 100644 challenge-199/laurent-rosenfeld/raku/ch-1.raku create mode 100644 challenge-199/laurent-rosenfeld/raku/ch-2.raku create mode 100644 challenge-199/robert-dicicco/perl/ch-2.pl create mode 100644 challenge-199/robert-dicicco/raku/ch-2.raku diff --git a/challenge-199/laurent-rosenfeld/blog.txt b/challenge-199/laurent-rosenfeld/blog.txt new file mode 100644 index 0000000000..31f6f623f2 --- /dev/null +++ b/challenge-199/laurent-rosenfeld/blog.txt @@ -0,0 +1 @@ +https://blogs.perl.org/users/laurent_r/2023/01/perl-weekly-challenge-199-good-pairs-and-good-triplets.html diff --git a/challenge-199/laurent-rosenfeld/perl/ch-1.pl b/challenge-199/laurent-rosenfeld/perl/ch-1.pl new file mode 100644 index 0000000000..7672044f89 --- /dev/null +++ b/challenge-199/laurent-rosenfeld/perl/ch-1.pl @@ -0,0 +1,19 @@ +use strict; +use warnings; +use feature "say"; + +sub count_good_pairs { + my @in = @_; + my $count = 0; + for my $i (0..$#in-1) { + for my $j ($i+1..$#in) { + $count++ if $in[$i] == $in[$j]; + } + } + return $count; +} + +for my $test ( [1,2,3,1,1,3], [1,2,3], [1,1,1,1], + [1,2,3,1,2,3], [4,3,2,3,2,1] ) { + say sprintf "%-15s => %d", "@$test", count_good_pairs @$test; +} diff --git a/challenge-199/laurent-rosenfeld/perl/ch-2.pl b/challenge-199/laurent-rosenfeld/perl/ch-2.pl new file mode 100644 index 0000000000..c34ce0f239 --- /dev/null +++ b/challenge-199/laurent-rosenfeld/perl/ch-2.pl @@ -0,0 +1,25 @@ +sub count_good_triplets { + my @in = @{$_[0]}; + my ($x, $y, $z) = @{$_[1]}; + my $count = 0; + for my $i (0..$#in-2) { + for my $j ($i+1..$#in-1) { + # short-cut the $k loop if $i $j not good + next if abs($in[$i] - $in[$j]) > $x; + for my $k ($j+1..$#in) { + $count++ if abs($in[$j] - $in[$k]) <= $y + and abs($in[$i] - $in[$k]) <= $z; + } + } + } + return $count; +} + +for my $test ( [ [3,0,1,1,9,7], [7,2,3] ], + [ [1,1,2,2,3], [0,0,1] ], + [ [1,1,2,2,3], [1,1,2] ], + ) { + say sprintf "%-15s - xyz = %-10s => %d", + "@{@$test[0]}", "@{@$test[1]}", + count_good_triplets @$test; +} diff --git a/challenge-199/laurent-rosenfeld/raku/ch-1.raku b/challenge-199/laurent-rosenfeld/raku/ch-1.raku new file mode 100644 index 0000000000..15c475254a --- /dev/null +++ b/challenge-199/laurent-rosenfeld/raku/ch-1.raku @@ -0,0 +1,12 @@ +sub count_good_pairs (@in) { + my $cnt = 0; + for 0..^@in.end -> $i { + $cnt++ if @in[$i] == @in[$_] for $i+1..@in.end; + } + return $cnt; +} + +for <1 2 3 1 1 3>, <1 2 3>, <1 1 1 1>, + <1 2 3 1 2 3>, <4 3 2 3 2 1> -> @test { + say (~@test).fmt("%-15s => "), count_good_pairs @test; +} diff --git a/challenge-199/laurent-rosenfeld/raku/ch-2.raku b/challenge-199/laurent-rosenfeld/raku/ch-2.raku new file mode 100644 index 0000000000..e711920896 --- /dev/null +++ b/challenge-199/laurent-rosenfeld/raku/ch-2.raku @@ -0,0 +1,23 @@ +sub count_good_triplets (@in, @xyz) { + my $count = 0; + my ($x, $y, $z) = @xyz; + for 0..@in.end-2 -> $i { + for $i+1..^@in.end -> $j { + next if abs(@in[$i] - @in[$j]) > $x; + for $j+1..@in.end -> $k { + $count++ if abs(@in[$j] - @in[$k]) <= $y + && abs(@in[$i] - @in[$k]) <= $z; + } + } + } + return $count; +} + +for ( <3 0 1 1 9 7>, <7 2 3> ), + ( <1 1 2 2 3>, <0 0 1> ), + ( <1 1 2 2 3>, <1 1 2> ) -> @test { + + say sprintf "%-15s - xyz = %-10s => %d", + "@test[0]", "@test[1]", + count_good_triplets @test[0], @test[1]; +} diff --git a/challenge-199/robert-dicicco/perl/ch-2.pl b/challenge-199/robert-dicicco/perl/ch-2.pl new file mode 100644 index 0000000000..d18144dfb1 --- /dev/null +++ b/challenge-199/robert-dicicco/perl/ch-2.pl @@ -0,0 +1,119 @@ +#!/usr/bin/env perl + +=begin + +AUTHOR: Robert DiCicco + +DATE : 2023-01-12 + +Challenge 199 Good Triplets ( Perl ) + +=cut + +use strict; + +use warnings; + +use Algorithm::Permute; + +use List::MoreUtils qw/indexes/; + +  + +my %seen = (); + +  + +my @list = (3,0,1,1,9,7); + +my $x = 7; + +my $y = 2; + +my $z = 3; + +  + +# my @list = (1,1,2,2,3); + +# my $x = 0; + +# my $y = 0; + +# my $z = 1; + +  + +  + +my $anchor = 0; + +my $cnt = 0; + +  + +sub TestArray { + + my ($first, $second, $third) = @_; + + my @x1 = indexes { $_ == $first } (@list); + + my @x2 = indexes { $_ == $second } (@list); + + my @x3 = indexes { $_ == $third } (@list); + + if (($x1[0] > $x2[0]) || ($x2[0] > $x3[0]) || ($x1[0] > $x3[0]) ){ + + return -1; + + } + + if (abs($first - $second) > $x) { return -1}; + + if (abs($second - $third) > $y) { return -1}; + + if (abs($first - $third) > $z) { return -1}; + + return 1; + +} + +my $sz = @list; + +my $p = Algorithm::Permute->new(\@list,3); + +while (my @res = $p->next) { + + my $retval = TestArray(@res); + + my $combined = "$res[0]$res[1]$res[2]"; + + if ($retval == 1) { + + if (! $seen{$combined}){ + + $seen{$combined} = 1; + + } else { + + print "$res[0], $res[1], $res[2]\n"; + + } + + } + +} + +=begin + +SAMPLE OUTPUT + +perl .\GoodTriplets.pl + +0, 1, 1 + +3, 1, 1 + +3, 0, 1 + +=cut diff --git a/challenge-199/robert-dicicco/raku/ch-2.raku b/challenge-199/robert-dicicco/raku/ch-2.raku new file mode 100644 index 0000000000..7b188e4e4f --- /dev/null +++ b/challenge-199/robert-dicicco/raku/ch-2.raku @@ -0,0 +1,117 @@ +#!/usr/bin/env raku + +#`{ + +AUTHOR: Robert DiCicco + +DATE : 2023-01-12 + +Challenge 199 Good Triplets ( Raku ) + +} + +use v6; + +  + +my %seen = (); + +  + +my @list = (3,0,1,1,9,7); + +my $x = 7; + +my $y = 2; + +my $z = 3; + +  + +# my @list = (1,1,2,2,3); + +# my $x = 0; + +# my $y = 0; + +# my $z = 1; + +  + +  + +my $cnt = 0; + +  + +sub TestArray(@arr) { + + my $first=@arr[0]; + + my $second=@arr[1]; + + my $third=@arr[2]; + + my $teststr = join("",@list); + + my @x1 = $teststr.indices($first); + + my @x2 = $teststr.indices($second); + + my @x3 = $teststr.indices($third); + + if @x1[0] > @x2[0] || @x2[0] > @x3[0] || @x1[0] > @x3[0] { + + return -1; + + } + + if ($first - $second).abs > $x { return -1}; + + if ($second - $third).abs > $y { return -1}; + + if ($first - $third).abs > $z { return -1}; + + return 1; + +} + +  + +for @list.combinations: 3 -> @res { + + my $retval = TestArray(@res); + + my $combined = "@res[0]@res[1]@res[2]"; + + if ($retval == 1) { + + if (! defined %seen{$combined}) { + + %seen{$combined} = 1; + + print "@res[0], @res[1], @res[2]\n"; + + } else { + + %seen{$combined}++; + + } + + } + +} + +#`{ + +SAMPLE OUTPUT + +raku .\GoodTriplets.rk + +3, 0, 1 + +3, 1, 1 + +0, 1, 1 + +} diff --git a/stats/pwc-challenge-189.json b/stats/pwc-challenge-189.json index ba174ac07a..76406280e4 100644 --- a/stats/pwc-challenge-189.json +++ b/stats/pwc-challenge-189.json @@ -1,49 +1,26 @@ { - "chart" : { - "type" : "column" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, - "tooltip" : { - "headerFormat" : "{series.name}
", - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1 - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, "series" : [ { - "name" : "The Weekly Challenge - 189", "data" : [ { - "y" : 4, "name" : "Adam Russell", - "drilldown" : "Adam Russell" + "drilldown" : "Adam Russell", + "y" : 4 }, { - "name" : "Alexander Pankoff", + "y" : 2, "drilldown" : "Alexander Pankoff", - "y" : 2 + "name" : "Alexander Pankoff" }, { - "name" : "Ali Moradi", "drilldown" : "Ali Moradi", + "name" : "Ali Moradi", "y" : 4 }, { - "name" : "Andrew Grangaard", + "y" : 2, "drilldown" : "Andrew Grangaard", - "y" : 2 + "name" : "Andrew Grangaard" }, { "name" : "Arne Sommer", @@ -51,9 +28,14 @@ "y" : 3 }, { - "y" : 4, "name" : "Athanasius", - "drilldown" : "Athanasius" + "drilldown" : "Athanasius", + "y" : 4 + }, + { + "drilldown" : "Bob Lied", + "name" : "Bob Lied", + "y" : 2 }, { "name" : "Bruce Gray", @@ -62,13 +44,13 @@ }, { "y" : 1, - "name" : "Cheok-Yin Fung", - "drilldown" : "Cheok-Yin Fung" + "drilldown" : "Cheok-Yin Fung", + "name" : "Cheok-Yin Fung" }, { - "y" : 3, "drilldown" : "Colin Crain", - "name" : "Colin Crain" + "name" : "Colin Crain", + "y" : 3 }, { "name" : "Dave Jacoby", @@ -76,29 +58,29 @@ "y" : 2 }, { - "y" : 2, "drilldown" : "Duncan C. White", - "name" : "Duncan C. White" + "name" : "Duncan C. White", + "y" : 2 }, { "y" : 3, - "name" : "E. Choroba", - "drilldown" : "E. Choroba" + "drilldown" : "E. Choroba", + "name" : "E. Choroba" }, { - "y" : 2, + "name" : "Feng Chang", "drilldown" : "Feng Chang", - "name" : "Feng Chang" + "y" : 2 }, { - "y" : 6, "name" : "Flavio Poletti", - "drilldown" : "Flavio Poletti" + "drilldown" : "Flavio Poletti", + "y" : 6 }, { - "y" : 2, "name" : "Humberto Massa", - "drilldown" : "Humberto Massa" + "drilldown" : "Humberto Massa", + "y" : 2 }, { "y" : 5, @@ -106,24 +88,24 @@ "drilldown" : "Jaldhar H. Vyas" }, { - "y" : 3, "drilldown" : "James Smith", - "name" : "James Smith" + "name" : "James Smith", + "y" : 3 }, { + "y" : 1, "drilldown" : "Jan Krnavek", - "name" : "Jan Krnavek", - "y" : 1 + "name" : "Jan Krnavek" }, { - "name" : "Jorg Sommrey", "drilldown" : "Jorg Sommrey", + "name" : "Jorg Sommrey", "y" : 2 }, { - "y" : 2, "name" : "Kueppo Wesley", - "drilldown" : "Kueppo Wesley" + "drilldown" : "Kueppo Wesley", + "y" : 2 }, { "y" : 5, @@ -131,58 +113,58 @@ "drilldown" : "Laurent Rosenfeld" }, { - "y" : 4, + "drilldown" : "Luca Ferrari", "name" : "Luca Ferrari", - "drilldown" : "Luca Ferrari" + "y" : 4 }, { + "y" : 2, "name" : "Mark Anderson", - "drilldown" : "Mark Anderson", - "y" : 2 + "drilldown" : "Mark Anderson" }, { - "drilldown" : "Marton Polgar", "name" : "Marton Polgar", + "drilldown" : "Marton Polgar", "y" : 2 }, { - "name" : "Matthew Neleigh", "drilldown" : "Matthew Neleigh", + "name" : "Matthew Neleigh", "y" : 2 }, { - "y" : 3, "drilldown" : "Mohammad S Anwar", - "name" : "Mohammad S Anwar" + "name" : "Mohammad S Anwar", + "y" : 3 }, { - "y" : 2, + "name" : "Niels van Dijke", "drilldown" : "Niels van Dijke", - "name" : "Niels van Dijke" + "y" : 2 }, { - "drilldown" : "Peter Campbell Smith", + "y" : 3, "name" : "Peter Campbell Smith", - "y" : 3 + "drilldown" : "Peter Campbell Smith" }, { "y" : 2, - "drilldown" : "Robbie Hatley", - "name" : "Robbie Hatley" + "name" : "Robbie Hatley", + "drilldown" : "Robbie Hatley" }, { "y" : 2, - "drilldown" : "Robert DiCicco", - "name" : "Robert DiCicco" + "name" : "Robert DiCicco", + "drilldown" : "Robert DiCicco" }, { "y" : 2, - "drilldown" : "Robert Ransbottom", - "name" : "Robert Ransbottom" + "name" : "Robert Ransbottom", + "drilldown" : "Robert Ransbottom" }, { - "name" : "Roger Bell_West", "drilldown" : "Roger Bell_West", + "name" : "Roger Bell_West", "y" : 5 }, { @@ -191,9 +173,9 @@ "y" : 3 }, { - "y" : 2, "drilldown" : "Solathian", - "name" : "Solathian" + "name" : "Solathian", + "y" : 2 }, { "y" : 5, @@ -201,46 +183,49 @@ "name" : "Stephen G. Lynn" }, { - "y" : 2, "name" : "Tim Potapov", - "drilldown" : "Tim Potapov" + "drilldown" : "Tim Potapov", + "y" : 2 }, { - "name" : "Ulrich Rieke", "drilldown" : "Ulrich Rieke", + "name" : "Ulrich Rieke", "y" : 4 }, { + "y" : 2, "drilldown" : "Vamsi Meenavilli", - "name" : "Vamsi Meenavilli", - "y" : 2 + "name" : "Vamsi Meenavilli" }, { - "name" : "W. Luis Mochan", + "y" : 3, "drilldown" : "W. Luis Mochan", - "y" : 3 + "name" : "W. Luis Mochan" } ], + "name" : "The Weekly Challenge - 189", "colorByPoint" : 1 } ], "title" : { "text" : "The Weekly Challenge - 189" }, - "xAxis" : { - "type" : "category" + "chart" : { + "type" : "column" }, "legend" : { "enabled" : 0 }, - "subtitle" : { - "text" : "[Champions: 39] Last updated at 2022-11-07 13:35:44 GMT" + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } }, "drilldown" : { "series" : [ { - "name" : "Adam Russell", "id" : "Adam Russell", + "name" : "Adam Russell", "data" : [ [ "Perl", @@ -277,14 +262,14 @@ ] }, { + "name" : "Andrew Grangaard", + "id" : "Andrew Grangaard", "data" : [ [ "Perl", 2 ] - ], - "id" : "Andrew Grangaard", - "name" : "Andrew Grangaard" + ] }, { "name" : "Arne Sommer", @@ -315,6 +300,18 @@ "name" : "Athanasius" }, { + "id" : "Bob Lied", + "name" : "Bob Lied", + "data" : [ + [ + "Perl", + 2 + ] + ] + }, + { + "id" : "Bruce Gray", + "name" : "Bruce Gray", "data" : [ [ "Perl", @@ -328,19 +325,17 @@ "Blog", 1 ] - ], - "name" : "Bruce Gray", - "id" : "Bruce Gray" + ] }, { + "name" : "Cheok-Yin Fung", + "id" : "Cheok-Yin Fung", "data" : [ [ "Perl", 1 ] - ], - "name" : "Cheok-Yin Fung", - "id" : "Cheok-Yin Fung" + ] }, { "data" : [ @@ -357,18 +352,18 @@ "name" : "Colin Crain" }, { - "id" : "Dave Jacoby", - "name" : "Dave Jacoby", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Dave Jacoby", + "id" : "Dave Jacoby" }, { - "id" : "Duncan C. White", "name" : "Duncan C. White", + "id" : "Duncan C. White", "data" : [ [ "Perl", @@ -377,6 +372,8 @@ ] }, { + "id" : "E. Choroba", + "name" : "E. Choroba", "data" : [ [ "Perl", @@ -386,19 +383,17 @@ "Blog", 1 ] - ], - "name" : "E. Choroba", - "id" : "E. Choroba" + ] }, { - "id" : "Feng Chang", - "name" : "Feng Chang", "data" : [ [ "Raku", 2 ] - ] + ], + "name" : "Feng Chang", + "id" : "Feng Chang" }, { "data" : [ @@ -415,22 +410,20 @@ 2 ] ], - "id" : "Flavio Poletti", - "name" : "Flavio Poletti" + "name" : "Flavio Poletti", + "id" : "Flavio Poletti" }, { - "name" : "Humberto Massa", - "id" : "Humberto Massa", "data" : [ [ "Raku", 2 ] - ] + ], + "name" : "Humberto Massa", + "id" : "Humberto Massa" }, { - "id" : "Jaldhar H. Vyas", - "name" : "Jaldhar H. Vyas", "data" : [ [ "Perl", @@ -444,11 +437,13 @@ "Blog", 1 ] - ] + ], + "id" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas" }, { - "name" : "James Smith", "id" : "James Smith", + "name" : "James Smith", "data" : [ [ "Perl", @@ -461,38 +456,36 @@ ] }, { + "name" : "Jan Krnavek", + "id" : "Jan Krnavek", "data" : [ [ "Raku", 1 ] - ], - "id" : "Jan Krnavek", - "name" : "Jan Krnavek" + ] }, { - "name" : "Jorg Sommrey", - "id" : "Jorg Sommrey", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Jorg Sommrey", + "name" : "Jorg Sommrey" }, { - "id" : "Kueppo Wesley", - "name" : "Kueppo Wesley", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Kueppo Wesley", + "name" : "Kueppo Wesley" }, { - "name" : "Laurent Rosenfeld", - "id" : "Laurent Rosenfeld", "data" : [ [ "Perl", @@ -506,7 +499,9 @@ "Blog", 1 ] - ] + ], + "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld" }, { "data" : [ @@ -523,38 +518,36 @@ "name" : "Luca Ferrari" }, { - "name" : "Mark Anderson", - "id" : "Mark Anderson", "data" : [ [ "Raku", 2 ] - ] + ], + "name" : "Mark Anderson", + "id" : "Mark Anderson" }, { + "name" : "Marton Polgar", + "id" : "Marton Polgar", "data" : [ [ "Raku", 2 ] - ], - "id" : "Marton Polgar", - "name" : "Marton Polgar" + ] }, { - "id" : "Matthew Neleigh", - "name" : "Matthew Neleigh", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Matthew Neleigh", + "id" : "Matthew Neleigh" }, { - "id" : "Mohammad S Anwar", - "name" : "Mohammad S Anwar", "data" : [ [ "Perl", @@ -564,21 +557,21 @@ "Raku", 1 ] - ] + ], + "id" : "Mohammad S Anwar", + "name" : "Mohammad S Anwar" }, { - "name" : "Niels van Dijke", - "id" : "Niels van Dijke", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Niels van Dijke", + "id" : "Niels van Dijke" }, { - "name" : "Peter Campbell Smith", - "id" : "Peter Campbell Smith", "data" : [ [ "Perl", @@ -588,17 +581,19 @@ "Blog", 1 ] - ] + ], + "name" : "Peter Campbell Smith", + "id" : "Peter Campbell Smith" }, { + "name" : "Robbie Hatley", + "id" : "Robbie Hatley", "data" : [ [ "Perl", 2 ] - ], - "id" : "Robbie Hatley", - "name" : "Robbie Hatley" + ] }, { "name" : "Robert DiCicco", @@ -615,16 +610,18 @@ ] }, { - "id" : "Robert Ransbottom", - "name" : "Robert Ransbottom", "data" : [ [ "Raku", 2 ] - ] + ], + "id" : "Robert Ransbottom", + "name" : "Robert Ransbottom" }, { + "name" : "Roger Bell_West", + "id" : "Roger Bell_West", "data" : [ [ "Perl", @@ -638,11 +635,11 @@ "Blog", 1 ] - ], - "id" : "Roger Bell_West", - "name" : "Roger Bell_West" + ] }, { + "name" : "Simon Green", + "id" : "Simon Green", "data" : [ [ "Perl", @@ -652,9 +649,7 @@ "Blog", 1 ] - ], - "name" : "Simon Green", - "id" : "Simon Green" + ] }, { "data" : [ @@ -667,8 +662,8 @@ "name" : "Solathian" }, { - "name" : "Stephen G. Lynn", "id" : "Stephen G. Lynn", + "name" : "Stephen G. Lynn", "data" : [ [ "Perl", @@ -685,14 +680,14 @@ ] }, { - "id" : "Tim Potapov", - "name" : "Tim Potapov", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Tim Potapov", + "id" : "Tim Potapov" }, { "data" : [ @@ -719,6 +714,8 @@ "id" : "Vamsi Meenavilli" }, { + "name" : "W. Luis Mochan", + "id" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -728,10 +725,28 @@ "Blog", 1 ] - ], - "name" : "W. Luis Mochan", - "id" : "W. Luis Mochan" + ] } ] + }, + "xAxis" : { + "type" : "category" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } + }, + "tooltip" : { + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "{series.name}
" + }, + "subtitle" : { + "text" : "[Champions: 40] Last updated at 2023-01-13 19:57:34 GMT" } } diff --git a/stats/pwc-challenge-190.json b/stats/pwc-challenge-190.json index dbad4d9ec9..15a326e7cc 100644 --- a/stats/pwc-challenge-190.json +++ b/stats/pwc-challenge-190.json @@ -1,10 +1,35 @@ { + "tooltip" : { + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "{series.name}
" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } + }, + "xAxis" : { + "type" : "category" + }, + "subtitle" : { + "text" : "[Champions: 38] Last updated at 2023-01-13 19:57:34 GMT" + }, + "legend" : { + "enabled" : 0 + }, "series" : [ { + "colorByPoint" : 1, + "name" : "The Weekly Challenge - 190", "data" : [ { - "name" : "Adam Russell", "drilldown" : "Adam Russell", + "name" : "Adam Russell", "y" : 4 }, { @@ -14,18 +39,23 @@ }, { "y" : 3, - "drilldown" : "Arne Sommer", - "name" : "Arne Sommer" + "name" : "Arne Sommer", + "drilldown" : "Arne Sommer" }, { - "name" : "Athanasius", + "y" : 4, "drilldown" : "Athanasius", - "y" : 4 + "name" : "Athanasius" + }, + { + "name" : "Bob Lied", + "drilldown" : "Bob Lied", + "y" : 2 }, { - "y" : 4, "name" : "Bruce Gray", - "drilldown" : "Bruce Gray" + "drilldown" : "Bruce Gray", + "y" : 4 }, { "y" : 2, @@ -33,14 +63,14 @@ "drilldown" : "Cheok-Yin Fung" }, { + "y" : 3, "name" : "Colin Crain", - "drilldown" : "Colin Crain", - "y" : 3 + "drilldown" : "Colin Crain" }, { - "y" : 1, + "name" : "Dario Mazzeo", "drilldown" : "Dario Mazzeo", - "name" : "Dario Mazzeo" + "y" : 1 }, { "drilldown" : "Dave Jacoby", @@ -49,33 +79,33 @@ }, { "y" : 2, - "drilldown" : "Duncan C. White", - "name" : "Duncan C. White" + "name" : "Duncan C. White", + "drilldown" : "Duncan C. White" }, { - "y" : 2, "drilldown" : "E. Choroba", - "name" : "E. Choroba" + "name" : "E. Choroba", + "y" : 2 }, { - "y" : 2, + "name" : "Feng Chang", "drilldown" : "Feng Chang", - "name" : "Feng Chang" + "y" : 2 }, { - "drilldown" : "Flavio Poletti", + "y" : 6, "name" : "Flavio Poletti", - "y" : 6 + "drilldown" : "Flavio Poletti" }, { - "y" : 2, + "name" : "Humberto Massa", "drilldown" : "Humberto Massa", - "name" : "Humberto Massa" + "y" : 2 }, { - "y" : 5, "drilldown" : "Jaldhar H. Vyas", - "name" : "Jaldhar H. Vyas" + "name" : "Jaldhar H. Vyas", + "y" : 5 }, { "y" : 3, @@ -83,9 +113,9 @@ "name" : "James Smith" }, { - "drilldown" : "Jan Krnavek", + "y" : 2, "name" : "Jan Krnavek", - "y" : 2 + "drilldown" : "Jan Krnavek" }, { "drilldown" : "Jorg Sommrey", @@ -98,18 +128,18 @@ "y" : 2 }, { - "drilldown" : "Laurent Rosenfeld", + "y" : 5, "name" : "Laurent Rosenfeld", - "y" : 5 + "drilldown" : "Laurent Rosenfeld" }, { "y" : 8, - "drilldown" : "Luca Ferrari", - "name" : "Luca Ferrari" + "name" : "Luca Ferrari", + "drilldown" : "Luca Ferrari" }, { - "name" : "Mark Anderson", "drilldown" : "Mark Anderson", + "name" : "Mark Anderson", "y" : 1 }, { @@ -118,19 +148,19 @@ "y" : 2 }, { - "y" : 1, "name" : "Matthew Neleigh", - "drilldown" : "Matthew Neleigh" + "drilldown" : "Matthew Neleigh", + "y" : 1 }, { - "drilldown" : "Mohammad S Anwar", "name" : "Mohammad S Anwar", + "drilldown" : "Mohammad S Anwar", "y" : 2 }, { - "y" : 2, "drilldown" : "Niels van Dijke", - "name" : "Niels van Dijke" + "name" : "Niels van Dijke", + "y" : 2 }, { "name" : "Peter Campbell Smith", @@ -138,8 +168,8 @@ "y" : 3 }, { - "drilldown" : "Robbie Hatley", "name" : "Robbie Hatley", + "drilldown" : "Robbie Hatley", "y" : 2 }, { @@ -148,89 +178,57 @@ "y" : 2 }, { - "name" : "Robert Ransbottom", "drilldown" : "Robert Ransbottom", + "name" : "Robert Ransbottom", "y" : 2 }, { + "y" : 5, "drilldown" : "Roger Bell_West", - "name" : "Roger Bell_West", - "y" : 5 + "name" : "Roger Bell_West" }, { + "y" : 3, "drilldown" : "Simon Green", - "name" : "Simon Green", - "y" : 3 + "name" : "Simon Green" }, { - "drilldown" : "Solathian", + "y" : 1, "name" : "Solathian", - "y" : 1 + "drilldown" : "Solathian" }, { - "y" : 5, + "drilldown" : "Stephen G. Lynn", "name" : "Stephen G. Lynn", - "drilldown" : "Stephen G. Lynn" + "y" : 5 }, { - "drilldown" : "Tim Potapov", + "y" : 2, "name" : "Tim Potapov", - "y" : 2 + "drilldown" : "Tim Potapov" }, { + "y" : 3, "drilldown" : "Ulrich Rieke", - "name" : "Ulrich Rieke", - "y" : 3 + "name" : "Ulrich Rieke" }, { "drilldown" : "W. Luis Mochan", "name" : "W. Luis Mochan", "y" : 3 } - ], - "name" : "The Weekly Challenge - 190", - "colorByPoint" : 1 + ] } ], - "tooltip" : { - "followPointer" : 1, - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "{series.name}
" - }, - "xAxis" : { - "type" : "category" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, "chart" : { "type" : "column" }, - "subtitle" : { - "text" : "[Champions: 37] Last updated at 2022-11-21 02:27:05 GMT" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "legend" : { - "enabled" : 0 - }, "title" : { "text" : "The Weekly Challenge - 190" }, "drilldown" : { "series" : [ { - "id" : "Adam Russell", - "name" : "Adam Russell", "data" : [ [ "Perl", @@ -240,11 +238,11 @@ "Blog", 2 ] - ] + ], + "name" : "Adam Russell", + "id" : "Adam Russell" }, { - "name" : "Alexander Pankoff", - "id" : "Alexander Pankoff", "data" : [ [ "Perl", @@ -254,9 +252,13 @@ "Blog", 2 ] - ] + ], + "id" : "Alexander Pankoff", + "name" : "Alexander Pankoff" }, { + "id" : "Arne Sommer", + "name" : "Arne Sommer", "data" : [ [ "Raku", @@ -266,13 +268,9 @@ "Blog", 1 ] - ], - "id" : "Arne Sommer", - "name" : "Arne Sommer" + ] }, { - "id" : "Athanasius", - "name" : "Athanasius", "data" : [ [ "Perl", @@ -282,11 +280,21 @@ "Raku", 2 ] - ] + ], + "name" : "Athanasius", + "id" : "Athanasius" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Bob Lied", + "name" : "Bob Lied" }, { - "id" : "Bruce Gray", - "name" : "Bruce Gray", "data" : [ [ "Perl", @@ -296,7 +304,9 @@ "Raku", 2 ] - ] + ], + "name" : "Bruce Gray", + "id" : "Bruce Gray" }, { "data" : [ @@ -305,12 +315,10 @@ 2 ] ], - "id" : "Cheok-Yin Fung", - "name" : "Cheok-Yin Fung" + "name" : "Cheok-Yin Fung", + "id" : "Cheok-Yin Fung" }, { - "name" : "Colin Crain", - "id" : "Colin Crain", "data" : [ [ "Perl", @@ -320,17 +328,19 @@ "Blog", 1 ] - ] + ], + "name" : "Colin Crain", + "id" : "Colin Crain" }, { + "id" : "Dario Mazzeo", + "name" : "Dario Mazzeo", "data" : [ [ "Perl", 1 ] - ], - "id" : "Dario Mazzeo", - "name" : "Dario Mazzeo" + ] }, { "data" : [ @@ -339,38 +349,38 @@ 2 ] ], - "name" : "Dave Jacoby", - "id" : "Dave Jacoby" + "id" : "Dave Jacoby", + "name" : "Dave Jacoby" }, { + "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", 2 ] - ], - "id" : "E. Choroba", - "name" : "E. Choroba" + ] }, { + "name" : "Feng Chang", + "id" : "Feng Chang", "data" : [ [ "Raku", 2 ] - ], - "id" : "Feng Chang", - "name" : "Feng Chang" + ] }, { "data" : [ @@ -387,8 +397,8 @@ 2 ] ], - "name" : "Flavio Poletti", - "id" : "Flavio Poletti" + "id" : "Flavio Poletti", + "name" : "Flavio Poletti" }, { "data" : [ @@ -401,8 +411,6 @@ "name" : "Humberto Massa" }, { - "name" : "Jaldhar H. Vyas", - "id" : "Jaldhar H. Vyas", "data" : [ [ "Perl", @@ -416,7 +424,9 @@ "Blog", 1 ] - ] + ], + "id" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas" }, { "id" : "James Smith", @@ -439,12 +449,12 @@ 2 ] ], - "id" : "Jan Krnavek", - "name" : "Jan Krnavek" + "name" : "Jan Krnavek", + "id" : "Jan Krnavek" }, { - "name" : "Jorg Sommrey", "id" : "Jorg Sommrey", + "name" : "Jorg Sommrey", "data" : [ [ "Perl", @@ -453,16 +463,18 @@ ] }, { + "id" : "Kueppo Wesley", + "name" : "Kueppo Wesley", "data" : [ [ "Perl", 2 ] - ], - "name" : "Kueppo Wesley", - "id" : "Kueppo Wesley" + ] }, { + "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld", "data" : [ [ "Perl", @@ -476,11 +488,11 @@ "Blog", 1 ] - ], - "name" : "Laurent Rosenfeld", - "id" : "Laurent Rosenfeld" + ] }, { + "name" : "Luca Ferrari", + "id" : "Luca Ferrari", "data" : [ [ "Raku", @@ -490,19 +502,17 @@ "Blog", 6 ] - ], - "name" : "Luca Ferrari", - "id" : "Luca Ferrari" + ] }, { - "name" : "Mark Anderson", - "id" : "Mark Anderson", "data" : [ [ "Raku", 1 ] - ] + ], + "name" : "Mark Anderson", + "id" : "Mark Anderson" }, { "data" : [ @@ -515,16 +525,18 @@ "name" : "Marton Polgar" }, { + "id" : "Matthew Neleigh", + "name" : "Matthew Neleigh", "data" : [ [ "Perl", 1 ] - ], - "id" : "Matthew Neleigh", - "name" : "Matthew Neleigh" + ] }, { + "id" : "Mohammad S Anwar", + "name" : "Mohammad S Anwar", "data" : [ [ "Perl", @@ -534,9 +546,7 @@ "Raku", 1 ] - ], - "id" : "Mohammad S Anwar", - "name" : "Mohammad S Anwar" + ] }, { "id" : "Niels van Dijke", @@ -549,8 +559,6 @@ ] }, { - "id" : "Peter Campbell Smith", - "name" : "Peter Campbell Smith", "data" : [ [ "Perl", @@ -560,7 +568,9 @@ "Blog", 1 ] - ] + ], + "name" : "Peter Campbell Smith", + "id" : "Peter Campbell Smith" }, { "data" : [ @@ -569,8 +579,8 @@ 2 ] ], - "name" : "Robbie Hatley", - "id" : "Robbie Hatley" + "id" : "Robbie Hatley", + "name" : "Robbie Hatley" }, { "id" : "Robert DiCicco", @@ -587,16 +597,18 @@ ] }, { + "id" : "Robert Ransbottom", + "name" : "Robert Ransbottom", "data" : [ [ "Raku", 2 ] - ], - "name" : "Robert Ransbottom", - "id" : "Robert Ransbottom" + ] }, { + "id" : "Roger Bell_West", + "name" : "Roger Bell_West", "data" : [ [ "Perl", @@ -610,13 +622,9 @@ "Blog", 1 ] - ], - "id" : "Roger Bell_West", - "name" : "Roger Bell_West" + ] }, { - "id" : "Simon Green", - "name" : "Simon Green", "data" : [ [ "Perl", @@ -626,11 +634,13 @@ "Blog", 1 ] - ] + ], + "name" : "Simon Green", + "id" : "Simon Green" }, { - "id" : "Solathian", "name" : "Solathian", + "id" : "Solathian", "data" : [ [ "Perl", @@ -639,6 +649,8 @@ ] }, { + "name" : "Stephen G. Lynn", + "id" : "Stephen G. Lynn", "data" : [ [ "Perl", @@ -652,13 +664,11 @@ "Blog", 1 ] - ], - "id" : "Stephen G. Lynn", - "name" : "Stephen G. Lynn" + ] }, { - "name" : "Tim Potapov", "id" : "Tim Potapov", + "name" : "Tim Potapov", "data" : [ [ "Perl", @@ -667,8 +677,6 @@ ] }, { - "name" : "Ulrich Rieke", - "id" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -678,9 +686,13 @@ "Raku", 1 ] - ] + ], + "id" : "Ulrich Rieke", + "name" : "Ulrich Rieke" }, { + "id" : "W. Luis Mochan", + "name" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -690,10 +702,13 @@ "Blog", 1 ] - ], - "name" : "W. Luis Mochan", - "id" : "W. Luis Mochan" + ] } ] + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } } } diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 5135cf6873..4814209b5d 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,19 +1,154 @@ { - "title" : { - "text" : "The Weekly Challenge - 199" + "tooltip" : { + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "{series.name}
" }, "legend" : { "enabled" : 0 }, - "tooltip" : { - "headerFormat" : "{series.name}
", - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1 + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, + "chart" : { + "type" : "column" + }, + "title" : { + "text" : "The Weekly Challenge - 199" }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "subtitle" : { + "text" : "[Champions: 21] Last updated at 2023-01-13 20:17:12 GMT" + }, + "xAxis" : { + "type" : "category" + }, + "series" : [ + { + "colorByPoint" : 1, + "data" : [ + { + "name" : "Ali Moradi", + "y" : 4, + "drilldown" : "Ali Moradi" + }, + { + "drilldown" : "Arpad Toth", + "y" : 2, + "name" : "Arpad Toth" + }, + { + "name" : "Bob Lied", + "y" : 2, + "drilldown" : "Bob Lied" + }, + { + "drilldown" : "Dave Jacoby", + "y" : 3, + "name" : "Dave Jacoby" + }, + { + "name" : "David Ferrone", + "drilldown" : "David Ferrone", + "y" : 4 + }, + { + "name" : "E. Choroba", + "y" : 2, + "drilldown" : "E. Choroba" + }, + { + "drilldown" : "Feng Chang", + "y" : 2, + "name" : "Feng Chang" + }, + { + "name" : "Jorg Sommrey", + "drilldown" : "Jorg Sommrey", + "y" : 2 + }, + { + "y" : 5, + "drilldown" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld" + }, + { + "name" : "Luca Ferrari", + "y" : 8, + "drilldown" : "Luca Ferrari" + }, + { + "name" : "Mark Anderson", + "y" : 2, + "drilldown" : "Mark Anderson" + }, + { + "drilldown" : "Niels van Dijke", + "y" : 2, + "name" : "Niels van Dijke" + }, + { + "name" : "Peter Campbell Smith", + "drilldown" : "Peter Campbell Smith", + "y" : 3 + }, + { + "name" : "Rawley Fowler", + "drilldown" : "Rawley Fowler", + "y" : 2 + }, + { + "name" : "Robbie Hatley", + "drilldown" : "Robbie Hatley", + "y" : 3 + }, + { + "name" : "Robert DiCicco", + "drilldown" : "Robert DiCicco", + "y" : 4 + }, + { + "drilldown" : "Robert Ransbottom", + "y" : 2, + "name" : "Robert Ransbottom" + }, + { + "y" : 4, + "drilldown" : "Roger Bell_West", + "name" : "Roger Bell_West" + }, + { + "name" : "Stephen G. Lynn", + "y" : 5, + "drilldown" : "Stephen G. Lynn" + }, + { + "name" : "Thomas Kohler", + "y" : 4, + "drilldown" : "Thomas Kohler" + }, + { + "y" : 3, + "drilldown" : "W. Luis Mochan", + "name" : "W. Luis Mochan" + } + ], + "name" : "The Weekly Challenge - 199" + } + ], "drilldown" : { "series" : [ { - "id" : "Ali Moradi", "data" : [ [ "Perl", @@ -24,20 +159,30 @@ 2 ] ], + "id" : "Ali Moradi", "name" : "Ali Moradi" }, { + "id" : "Arpad Toth", + "name" : "Arpad Toth", + "data" : [ + [ + "Perl", + 2 + ] + ] + }, + { + "name" : "Bob Lied", "id" : "Bob Lied", "data" : [ [ "Perl", 2 ] - ], - "name" : "Bob Lied" + ] }, { - "id" : "Dave Jacoby", "data" : [ [ "Perl", @@ -48,10 +193,10 @@ 1 ] ], - "name" : "Dave Jacoby" + "name" : "Dave Jacoby", + "id" : "Dave Jacoby" }, { - "id" : "David Ferrone", "data" : [ [ "Perl", @@ -62,17 +207,18 @@ 2 ] ], - "name" : "David Ferrone" + "name" : "David Ferrone", + "id" : "David Ferrone" }, { + "id" : "E. Choroba", + "name" : "E. Choroba", "data" : [ [ "Perl", 2 ] - ], - "id" : "E. Choroba", - "name" : "E. Choroba" + ] }, { "data" : [ @@ -81,11 +227,40 @@ 2 ] ], - "id" : "Feng Chang", - "name" : "Feng Chang" + "name" : "Feng Chang", + "id" : "Feng Chang" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Jorg Sommrey", + "id" : "Jorg Sommrey" + }, + { + "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ] }, { "name" : "Luca Ferrari", + "id" : "Luca Ferrari", "data" : [ [ "Raku", @@ -95,8 +270,7 @@ "Blog", 6 ] - ], - "id" : "Luca Ferrari" + ] }, { "data" : [ @@ -105,20 +279,22 @@ 2 ] ], - "id" : "Mark Anderson", - "name" : "Mark Anderson" + "name" : "Mark Anderson", + "id" : "Mark Anderson" }, { + "name" : "Niels van Dijke", "id" : "Niels van Dijke", "data" : [ [ "Perl", 2 ] - ], - "name" : "Niels van Dijke" + ] }, { + "name" : "Peter Campbell Smith", + "id" : "Peter Campbell Smith", "data" : [ [ "Perl", @@ -128,13 +304,11 @@ "Blog", 1 ] - ], - "id" : "Peter Campbell Smith", - "name" : "Peter Campbell Smith" + ] }, { - "name" : "Rawley Fowler", "id" : "Rawley Fowler", + "name" : "Rawley Fowler", "data" : [ [ "Raku", @@ -143,31 +317,46 @@ ] }, { - "id" : "Robert DiCicco", + "name" : "Robbie Hatley", + "id" : "Robbie Hatley", "data" : [ [ "Perl", + 2 + ], + [ + "Blog", 1 + ] + ] + }, + { + "id" : "Robert DiCicco", + "name" : "Robert DiCicco", + "data" : [ + [ + "Perl", + 2 ], [ "Raku", - 1 + 2 ] - ], - "name" : "Robert DiCicco" + ] }, { "id" : "Robert Ransbottom", + "name" : "Robert Ransbottom", "data" : [ [ "Raku", 2 ] - ], - "name" : "Robert Ransbottom" + ] }, { "id" : "Roger Bell_West", + "name" : "Roger Bell_West", "data" : [ [ "Perl", @@ -177,11 +366,9 @@ "Raku", 2 ] - ], - "name" : "Roger Bell_West" + ] }, { - "id" : "Stephen G. Lynn", "data" : [ [ "Perl", @@ -196,11 +383,10 @@ 1 ] ], + "id" : "Stephen G. Lynn", "name" : "Stephen G. Lynn" }, { - "name" : "Thomas Kohler", - "id" : "Thomas Kohler", "data" : [ [ "Perl", @@ -210,7 +396,9 @@ "Blog", 2 ] - ] + ], + "id" : "Thomas Kohler", + "name" : "Thomas Kohler" }, { "name" : "W. Luis Mochan", @@ -227,121 +415,5 @@ ] } ] - }, - "subtitle" : { - "text" : "[Champions: 17] Last updated at 2023-01-10 19:13:28 GMT" - }, - "xAxis" : { - "type" : "category" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "series" : [ - { - "name" : "The Weekly Challenge - 199", - "data" : [ - { - "name" : "Ali Moradi", - "drilldown" : "Ali Moradi", - "y" : 4 - }, - { - "drilldown" : "Bob Lied", - "name" : "Bob Lied", - "y" : 2 - }, - { - "name" : "Dave Jacoby", - "drilldown" : "Dave Jacoby", - "y" : 3 - }, - { - "y" : 4, - "drilldown" : "David Ferrone", - "name" : "David Ferrone" - }, - { - "y" : 2, - "name" : "E. Choroba", - "drilldown" : "E. Choroba" - }, - { - "drilldown" : "Feng Chang", - "name" : "Feng Chang", - "y" : 2 - }, - { - "name" : "Luca Ferrari", - "drilldown" : "Luca Ferrari", - "y" : 8 - }, - { - "name" : "Mark Anderson", - "drilldown" : "Mark Anderson", - "y" : 2 - }, - { - "y" : 2, - "drilldown" : "Niels van Dijke", - "name" : "Niels van Dijke" - }, - { - "y" : 3, - "name" : "Peter Campbell Smith", - "drilldown" : "Peter Campbell Smith" - }, - { - "y" : 2, - "name" : "Rawley Fowler", - "drilldown" : "Rawley Fowler" - }, - { - "name" : "Robert DiCicco", - "drilldown" : "Robert DiCicco", - "y" : 2 - }, - { - "name" : "Robert Ransbottom", - "drilldown" : "Robert Ransbottom", - "y" : 2 - }, - { - "name" : "Roger Bell_West", - "drilldown" : "Roger Bell_West", - "y" : 4 - }, - { - "name" : "Stephen G. Lynn", - "drilldown" : "Stephen G. Lynn", - "y" : 5 - }, - { - "y" : 4, - "name" : "Thomas Kohler", - "drilldown" : "Thomas Kohler" - }, - { - "drilldown" : "W. Luis Mochan", - "name" : "W. Luis Mochan", - "y" : 3 - } - ], - "colorByPoint" : 1 - } - ], - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - } - } - }, - "chart" : { - "type" : "column" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 58fb926d95..000f0fe62a 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,63 +1,63 @@ { - "subtitle" : { - "text" : "Last updated at 2023-01-10 19:13:28 GMT" - }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - }, "title" : { "text" : "The Weekly Challenge Contributions [2019 - 2022]" }, - "legend" : { - "enabled" : "false" - }, - "chart" : { - "type" : "column" - }, - "xAxis" : { - "labels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - } - }, - "type" : "category" - }, - "yAxis" : { - "title" : { - "text" : null - }, - "min" : 0 - }, "series" : [ { - "dataLabels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - }, - "enabled" : "true", - "y" : 10, - "color" : "#FFFFFF", - "rotation" : -90, - "align" : "right", - "format" : "{point.y:.0f}" - }, "name" : "Contributions", "data" : [ [ "Blog", - 3190 + 3192 ], [ "Perl", - 9779 + 9792 ], [ "Raku", - 5869 + 5872 ] - ] + ], + "dataLabels" : { + "color" : "#FFFFFF", + "enabled" : "true", + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + }, +