From 3898d4606c38eec2b06a994a139e82446dd0ef56 Mon Sep 17 00:00:00 2001 From: Mohammad Sajid Anwar Date: Wed, 2 Oct 2024 21:31:25 +0100 Subject: - Added solutions by Mark Anderson. - Added solutions by Jaldhar H. Vyas. - Added solutions by Dave Jacoby. - Added solutions by E. Choroba. - Added solutions by PokGoPun. - Added solutions by Tim King. - Added solutions by Peter Meszaros. - Added solutions by Paulo Custodio. - Added solutions by Peter Pentchev. - Added solutions by Reinier Maliepaard. - Added solutions by Laurent Rosenfeld. - Added solutions by Vinod Kumar K. --- challenge-289/laurent-rosenfeld/blog.txt | 1 + challenge-289/laurent-rosenfeld/perl/ch-1.pl | 15 + challenge-289/laurent-rosenfeld/raku/ch-1.raku | 10 + challenge-289/reinier-maliepaard/blog.txt | 1 + challenge-289/reinier-maliepaard/perl/ch-1.pl | 115 ++++ challenge-289/vinod-k/perl/ch-1.perl | 19 - challenge-289/vinod-k/perl/ch-1.pl | 19 + stats/pwc-challenge-287.json | 281 +++++----- stats/pwc-challenge-288.json | 467 ++++++++-------- stats/pwc-current.json | 295 +++++++--- stats/pwc-language-breakdown-2019.json | 594 ++++++++++---------- stats/pwc-language-breakdown-2020.json | 350 ++++++------ stats/pwc-language-breakdown-2021.json | 348 ++++++------ stats/pwc-language-breakdown-2022.json | 744 ++++++++++++------------- stats/pwc-language-breakdown-2023.json | 708 +++++++++++------------ stats/pwc-language-breakdown-2024.json | 348 ++++++------ stats/pwc-language-breakdown-summary.json | 60 +- stats/pwc-leaders.json | 738 ++++++++++++------------ stats/pwc-summary-1-30.json | 94 ++-- stats/pwc-summary-121-150.json | 52 +- stats/pwc-summary-151-180.json | 108 ++-- stats/pwc-summary-181-210.json | 104 ++-- stats/pwc-summary-211-240.json | 94 ++-- stats/pwc-summary-241-270.json | 106 ++-- stats/pwc-summary-271-300.json | 98 ++-- stats/pwc-summary-301-330.json | 70 +-- stats/pwc-summary-31-60.json | 104 ++-- stats/pwc-summary-61-90.json | 58 +- stats/pwc-summary-91-120.json | 118 ++-- stats/pwc-summary.json | 704 +++++++++++------------ stats/pwc-yearly-language-summary.json | 164 +++--- 31 files changed, 3669 insertions(+), 3318 deletions(-) create mode 100644 challenge-289/laurent-rosenfeld/blog.txt create mode 100644 challenge-289/laurent-rosenfeld/perl/ch-1.pl create mode 100644 challenge-289/laurent-rosenfeld/raku/ch-1.raku create mode 100644 challenge-289/reinier-maliepaard/blog.txt create mode 100644 challenge-289/reinier-maliepaard/perl/ch-1.pl delete mode 100644 challenge-289/vinod-k/perl/ch-1.perl create mode 100644 challenge-289/vinod-k/perl/ch-1.pl diff --git a/challenge-289/laurent-rosenfeld/blog.txt b/challenge-289/laurent-rosenfeld/blog.txt new file mode 100644 index 0000000000..78e3760912 --- /dev/null +++ b/challenge-289/laurent-rosenfeld/blog.txt @@ -0,0 +1 @@ +https://blogs.perl.org/users/laurent_r/2024/10/perl-weekly-challenge-289-third-maximum.html diff --git a/challenge-289/laurent-rosenfeld/perl/ch-1.pl b/challenge-289/laurent-rosenfeld/perl/ch-1.pl new file mode 100644 index 0000000000..6cd1457047 --- /dev/null +++ b/challenge-289/laurent-rosenfeld/perl/ch-1.pl @@ -0,0 +1,15 @@ +use strict; +use warnings; +use feature 'say'; + +sub third_max { + my %unique = map { $_ => 1 } @_; + my @sorted = sort { $b <=> $a } keys %unique; + return exists $sorted[2] ? $sorted[2] : $sorted[0]; +} + +my @tests = ( [5, 6, 4, 1], [4, 5], [1, 2, 2, 3] ); +for my $test (@tests) { + printf "%-10s => ", "@$test"; + say third_max @$test; +} diff --git a/challenge-289/laurent-rosenfeld/raku/ch-1.raku b/challenge-289/laurent-rosenfeld/raku/ch-1.raku new file mode 100644 index 0000000000..753fb1642b --- /dev/null +++ b/challenge-289/laurent-rosenfeld/raku/ch-1.raku @@ -0,0 +1,10 @@ +sub third-max (@in) { + my @sorted = @in.unique.sort.reverse; + return @sorted[2]:exists ?? @sorted[2] !! @sorted[0]; +} + +my @tests = (5, 6, 4, 1), (4, 5), (1, 2, 2, 3); +for @tests -> @test { + printf "%-10s => ", "@test[]"; + say third-max @test; +} diff --git a/challenge-289/reinier-maliepaard/blog.txt b/challenge-289/reinier-maliepaard/blog.txt new file mode 100644 index 0000000000..e74462fb1f --- /dev/null +++ b/challenge-289/reinier-maliepaard/blog.txt @@ -0,0 +1 @@ +https://reiniermaliepaard.nl/perl/pwc/index.php?id=pwc289 diff --git a/challenge-289/reinier-maliepaard/perl/ch-1.pl b/challenge-289/reinier-maliepaard/perl/ch-1.pl new file mode 100644 index 0000000000..9890d4699d --- /dev/null +++ b/challenge-289/reinier-maliepaard/perl/ch-1.pl @@ -0,0 +1,115 @@ +#!/usr/bin/perl +use strict; +use warnings; + +sub third_maximum { + + # remove duplicates: see example 3 and 4 + my @unique = keys %{{ map { $_ => 1 } @_ }}; + + # sort numerically + @unique = sort { $a <=> $b } @unique; + + # return the third largest or the largest if fewer than 3 elements + return (scalar(@unique) >= 3) ? $unique[-3] : $unique[-1]; +} + +# Tests +my @ints; + +Example 1 +@ints = (5, 6, 4, 1); +print(third_maximum(@ints), "\n"); # Output 4 + +Example 2 +@ints = (4, 5); +print(third_maximum(@ints), "\n"); # Output: 5 + +Example 3 +@ints = (1, 2, 2, 3); +print(third_maximum(@ints), "\n"); # Output: 1 + +Example 4 +@ints = (3, 3, 3, 3, 2, 2, 2, 1); +print(third_maximum(@ints), "\n"); # Output: 1 + + +TASK #2: Jumbled Letters +An Internet legend dating back to at least 2001 goes something like this: + +Aoccdrnig to a rscheearch at Cmabrigde Uinervtisy, it deosn’t mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht the frist and lsat ltteer be at the rghit pclae. The rset can be a toatl mses and you can sitll raed it wouthit porbelm. Tihs is bcuseae the huamn mnid deos not raed ervey lteter by istlef, but the wrod as a wlohe. + +This supposed Cambridge research is unfortunately an urban legend. However, the effect has been studied. For example—and with a title that probably made the journal’s editor a little nervous—Raeding wrods with jubmled lettres: there is a cost by Rayner, White, et. al. looked at reading speed and comprehension of jumbled text. + +Your task is to write a program that takes English text as its input and outputs a jumbled version as follows: + + The first and last letter of every word must stay the same + The remaining letters in the word are scrambled in a random order (if that happens to be the original order, that is OK). + Whitespace, punctuation, and capitalization must stay the same + The order of words does not change, only the letters inside the word + +So, for example, "Perl" could become "Prel", or stay as "Perl", but it could not become "Pelr" or "lreP". + +#!/usr/bin/perl +use strict; +use warnings; + +sub shuffle_words { + my $text = shift; + # use a regular expression to match and shuffle each word + $text =~ s/(\w+)([^\w]*)/shuffle_word($1). $2/ge; + return $text; +} + +sub shuffle_word { + + my $word = shift; + # if the word has 2 or fewer characters, return it unchanged + return ($word) if (length($word) <= 2); + + # call the fisher_yates_shuffle subroutine to shuffle the middle characters + my $first_char = substr($word, 0, 1); + my $middle = substr($word, 1, length($word) - 2); + my $last_char = substr($word, -1); + return $first_char . fisher_yates_shuffle($middle) . $last_char; +} + +# define a subroutine to shuffle an array using the Fisher-Yates algorithm +sub fisher_yates_shuffle { + + my @chars = split(//, $_[0]); + + my $i = scalar (@chars); + # iterate over the array, swapping each element with a random element + while ($i--) { + # generate a random index + my $j = int rand($i + 1); + # swap the current element with the element at the random index + @chars[$i, $j] = @chars[$j, $i]; + } + + return (join('', @chars)); +} + +Tests + +my $str; + +Example 1 +$str = "this is, this IS an exCellent Idea!!"; + +$str = shuffle_words($str); +print("$str\n"); # e.g. this is, tihs IS an eelelCxnt Ieda!! + +Example 2 +$str = "The Fisher-Yates shuffle is an efficient algorithm for producing +a random permutation of a finite sequence by repeatedly selecting and +swapping elements in place, ensuring that every possible arrangement is +equally likely."; + +$str = shuffle_words($str); +print("$str\n"); # e.g. The Fsiehr-Yteas sfflhue is an encieffit alighotrm for prniucdog +a raodnm pimatoerutn of a fnitie sncqueee by relpeaetdy sienetlcg and +sniappwg etlmeens in palce, einnrsug taht ervey pssbiole aranrgenemt is +ellaquy likley. + diff --git a/challenge-289/vinod-k/perl/ch-1.perl b/challenge-289/vinod-k/perl/ch-1.perl deleted file mode 100644 index 7ae5738224..0000000000 --- a/challenge-289/vinod-k/perl/ch-1.perl +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; -use List::MoreUtils qw(uniq); - -my @numbers = split(/\s+/, $ARGV[0]); - -my @sorted_array = uniq(sort { $b <=> $a } @numbers); - -my $size = scalar @sorted_array; - -if ($size == 0){ - print "We need atleast one input..\n"; -} elsif ($size == 1 || $size == 2) { - print "We have $size elements in the given input, so answer is: $sorted_array[0]\n"; -} else { - print "We have $size elements in the given input, so answer is: $sorted_array[2]\n"; -} \ No newline at end of file diff --git a/challenge-289/vinod-k/perl/ch-1.pl b/challenge-289/vinod-k/perl/ch-1.pl new file mode 100644 index 0000000000..7ae5738224 --- /dev/null +++ b/challenge-289/vinod-k/perl/ch-1.pl @@ -0,0 +1,19 @@ +#!/usr/bin/perl + +use strict; +use warnings; +use List::MoreUtils qw(uniq); + +my @numbers = split(/\s+/, $ARGV[0]); + +my @sorted_array = uniq(sort { $b <=> $a } @numbers); + +my $size = scalar @sorted_array; + +if ($size == 0){ + print "We need atleast one input..\n"; +} elsif ($size == 1 || $size == 2) { + print "We have $size elements in the given input, so answer is: $sorted_array[0]\n"; +} else { + print "We have $size elements in the given input, so answer is: $sorted_array[2]\n"; +} \ No newline at end of file diff --git a/stats/pwc-challenge-287.json b/stats/pwc-challenge-287.json index ce4eee1b19..d0a17ea7aa 100644 --- a/stats/pwc-challenge-287.json +++ b/stats/pwc-challenge-287.json @@ -2,27 +2,13 @@ "title" : { "text" : "The Weekly Challenge - 287" }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "{series.name}
", - "followPointer" : 1 - }, - "legend" : { - "enabled" : 0 - }, - "subtitle" : { - "text" : "[Champions: 33] Last updated at 2024-09-28 09:51:17 GMT" - }, "yAxis" : { "title" : { "text" : "Total Solutions" } }, - "xAxis" : { - "type" : "category" - }, - "chart" : { - "type" : "column" + "legend" : { + "enabled" : 0 }, "drilldown" : { "series" : [ @@ -69,14 +55,14 @@ "name" : "Arne Sommer" }, { + "name" : "BarrOff", + "id" : "BarrOff", "data" : [ [ "Raku", 1 ] - ], - "id" : "BarrOff", - "name" : "BarrOff" + ] }, { "name" : "Bob Lied", @@ -93,14 +79,14 @@ ] }, { - "id" : "David Ferrone", - "name" : "David Ferrone", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "David Ferrone", + "name" : "David Ferrone" }, { "name" : "E. Choroba", @@ -117,26 +103,46 @@ ] }, { - "name" : "Feng Chang", + "data" : [ + [ + "Raku", + 2 + ] + ], "id" : "Feng Chang", + "name" : "Feng Chang" + }, + { + "id" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas", "data" : [ + [ + "Perl", + 2 + ], [ "Raku", 2 + ], + [ + "Blog", + 1 ] ] }, { - "id" : "Jan Krnavek", - "name" : "Jan Krnavek", "data" : [ [ "Raku", 2 ] - ] + ], + "name" : "Jan Krnavek", + "id" : "Jan Krnavek" }, { + "name" : "Jorg Sommrey", + "id" : "Jorg Sommrey", "data" : [ [ "Perl", @@ -146,19 +152,17 @@ "Blog", 1 ] - ], - "id" : "Jorg Sommrey", - "name" : "Jorg Sommrey" + ] }, { + "id" : "Kjetil Skotheim", + "name" : "Kjetil Skotheim", "data" : [ [ "Perl", 2 ] - ], - "id" : "Kjetil Skotheim", - "name" : "Kjetil Skotheim" + ] }, { "id" : "Laurent Rosenfeld", @@ -189,8 +193,8 @@ ] }, { - "name" : "Luca Ferrari", "id" : "Luca Ferrari", + "name" : "Luca Ferrari", "data" : [ [ "Raku", @@ -203,8 +207,8 @@ ] }, { - "id" : "Mark Anderson", "name" : "Mark Anderson", + "id" : "Mark Anderson", "data" : [ [ "Raku", @@ -213,14 +217,14 @@ ] }, { + "id" : "Matthew Neleigh", + "name" : "Matthew Neleigh", "data" : [ [ "Perl", 2 ] - ], - "id" : "Matthew Neleigh", - "name" : "Matthew Neleigh" + ] }, { "data" : [ @@ -237,18 +241,16 @@ "name" : "Matthias Muth" }, { - "id" : "Niels van Dijke", - "name" : "Niels van Dijke", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Niels van Dijke", + "name" : "Niels van Dijke" }, { - "name" : "Packy Anderson", - "id" : "Packy Anderson", "data" : [ [ "Perl", @@ -262,17 +264,19 @@ "Blog", 1 ] - ] + ], + "name" : "Packy Anderson", + "id" : "Packy Anderson" }, { + "id" : "Paulo Custodio", + "name" : "Paulo Custodio", "data" : [ [ "Perl", 2 ] - ], - "name" : "Paulo Custodio", - "id" : "Paulo Custodio" + ] }, { "data" : [ @@ -285,20 +289,22 @@ 1 ] ], - "name" : "Peter Campbell Smith", - "id" : "Peter Campbell Smith" + "id" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith" }, { + "id" : "Peter Meszaros", + "name" : "Peter Meszaros", "data" : [ [ "Perl", 2 ] - ], - "name" : "Peter Meszaros", - "id" : "Peter Meszaros" + ] }, { + "name" : "Peter Pentchev", + "id" : "Peter Pentchev", "data" : [ [ "Perl", @@ -312,11 +318,11 @@ "Blog", 1 ] - ], - "name" : "Peter Pentchev", - "id" : "Peter Pentchev" + ] }, { + "id" : "Reinier Maliepaard", + "name" : "Reinier Maliepaard", "data" : [ [ "Perl", @@ -326,13 +332,9 @@ "Blog", 1 ] - ], - "id" : "Reinier Maliepaard", - "name" : "Reinier Maliepaard" + ] }, { - "name" : "Robbie Hatley", - "id" : "Robbie Hatley", "data" : [ [ "Perl", @@ -342,21 +344,21 @@ "Blog", 1 ] - ] + ], + "name" : "Robbie Hatley", + "id" : "Robbie Hatley" }, { + "name" : "Robert Ransbottom", + "id" : "Robert Ransbottom", "data" : [ [ "Raku", 2 ] - ], - "name" : "Robert Ransbottom", - "id" : "Robert Ransbottom" + ] }, { - "id" : "Roger Bell_West", - "name" : "Roger Bell_West", "data" : [ [ "Perl", @@ -370,11 +372,13 @@ "Blog", 1 ] - ] + ], + "id" : "Roger Bell_West", + "name" : "Roger Bell_West" }, { - "name" : "Santiago Leyva", "id" : "Santiago Leyva", + "name" : "Santiago Leyva", "data" : [ [ "Perl", @@ -393,22 +397,20 @@ 1 ] ], - "id" : "Simon Green", - "name" : "Simon Green" + "name" : "Simon Green", + "id" : "Simon Green" }, { - "name" : "Tim King", - "id" : "Tim King", "data" : [ [ "Perl", 1 ] - ] + ], + "id" : "Tim King", + "name" : "Tim King" }, { - "id" : "Ulrich Rieke", - "name" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -418,11 +420,11 @@ "Raku", 2 ] - ] + ], + "id" : "Ulrich Rieke", + "name" : "Ulrich Rieke" }, { - "id" : "W. Luis Mochan", - "name" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -432,7 +434,9 @@ "Blog", 1 ] - ] + ], + "name" : "W. Luis Mochan", + "id" : "W. Luis Mochan" }, { "data" : [ @@ -441,11 +445,22 @@ 2 ] ], - "id" : "Wanderdoc", - "name" : "Wanderdoc" + "name" : "Wanderdoc", + "id" : "Wanderdoc" } ] }, + "chart" : { + "type" : "column" + }, + "xAxis" : { + "type" : "category" + }, + "tooltip" : { + "followPointer" : 1, + "headerFormat" : "{series.name}
", + "pointFormat" : "{point.name}: {point.y:f}
" + }, "plotOptions" : { "series" : { "dataLabels" : { @@ -457,16 +472,16 @@ }, "series" : [ { - "colorByPoint" : 1, + "name" : "The Weekly Challenge - 287", "data" : [ { + "drilldown" : "Andre Ploger", "name" : "Andre Ploger", - "y" : 3, - "drilldown" : "Andre Ploger" + "y" : 3 }, { - "name" : "Andrew Schneider", "drilldown" : "Andrew Schneider", + "name" : "Andrew Schneider", "y" : 3 }, { @@ -475,33 +490,38 @@ "name" : "Arne Sommer" }, { - "drilldown" : "BarrOff", + "name" : "BarrOff", "y" : 1, - "name" : "BarrOff" + "drilldown" : "BarrOff" }, { - "name" : "Bob Lied", "y" : 3, + "name" : "Bob Lied", "drilldown" : "Bob Lied" }, { - "name" : "David Ferrone", "drilldown" : "David Ferrone", - "y" : 2 + "y" : 2, + "name" : "David Ferrone" }, { - "drilldown" : "E. Choroba", + "name" : "E. Choroba", "y" : 3, - "name" : "E. Choroba" + "drilldown" : "E. Choroba" }, { "name" : "Feng Chang", - "drilldown" : "Feng Chang", - "y" : 2 + "y" : 2, + "drilldown" : "Feng Chang" + }, + { + "drilldown" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas", + "y" : 5 }, { - "name" : "Jan Krnavek", "drilldown" : "Jan Krnavek", + "name" : "Jan Krnavek", "y" : 2 }, { @@ -510,9 +530,9 @@ "name" : "Jorg Sommrey" }, { - "drilldown" : "Kjetil Skotheim", + "name" : "Kjetil Skotheim", "y" : 2, - "name" : "Kjetil Skotheim" + "drilldown" : "Kjetil Skotheim" }, { "name" : "Laurent Rosenfeld", @@ -521,48 +541,48 @@ }, { "name" : "Lubos Kolouch", - "drilldown" : "Lubos Kolouch", - "y" : 2 + "y" : 2, + "drilldown" : "Lubos Kolouch" }, { "y" : 12, - "drilldown" : "Luca Ferrari", - "name" : "Luca Ferrari" + "name" : "Luca Ferrari", + "drilldown" : "Luca Ferrari" }, { - "y" : 2, "drilldown" : "Mark Anderson", - "name" : "Mark Anderson" + "name" : "Mark Anderson", + "y" : 2 }, { - "name" : "Matthew Neleigh", "drilldown" : "Matthew Neleigh", + "name" : "Matthew Neleigh", "y" : 2 }, { + "name" : "Matthias Muth", "y" : 3, - "drilldown" : "Matthias Muth", - "name" : "Matthias Muth" + "drilldown" : "Matthias Muth" }, { + "drilldown" : "Niels van Dijke", "name" : "Niels van Dijke", - "y" : 2, - "drilldown" : "Niels van Dijke" + "y" : 2 }, { - "name" : "Packy Anderson", "y" : 5, + "name" : "Packy Anderson", "drilldown" : "Packy Anderson" }, { - "drilldown" : "Paulo Custodio", "y" : 2, - "name" : "Paulo Custodio" + "name" : "Paulo Custodio", + "drilldown" : "Paulo Custodio" }, { "name" : "Peter Campbell Smith", - "drilldown" : "Peter Campbell Smith", - "y" : 3 + "y" : 3, + "drilldown" : "Peter Campbell Smith" }, { "name" : "Peter Meszaros", @@ -570,14 +590,14 @@ "drilldown" : "Peter Meszaros" }, { - "name" : "Peter Pentchev", "y" : 5, + "name" : "Peter Pentchev", "drilldown" : "Peter Pentchev" }, { - "name" : "Reinier Maliepaard", "drilldown" : "Reinier Maliepaard", - "y" : 2 + "y" : 2, + "name" : "Reinier Maliepaard" }, { "name" : "Robbie Hatley", @@ -585,47 +605,50 @@ "drilldown" : "Robbie Hatley" }, { - "name" : "Robert Ransbottom", "drilldown" : "Robert Ransbottom", + "name" : "Robert Ransbottom", "y" : 2 }, { - "y" : 5, "drilldown" : "Roger Bell_West", + "y" : 5, "name" : "Roger Bell_West" }, { - "name" : "Santiago Leyva", "y" : 2, + "name" : "Santiago Leyva", "drilldown" : "Santiago Leyva" }, { - "drilldown" : "Simon Green", "y" : 3, - "name" : "Simon Green" + "name" : "Simon Green", + "drilldown" : "Simon Green" }, { + "y" : 1, "name" : "Tim King", - "drilldown" : "Tim King", - "y" : 1 + "drilldown" : "Tim King" }, { + "name" : "Ulrich Rieke", "y" : 4, - "drilldown" : "Ulrich Rieke", - "name" : "Ulrich Rieke" + "drilldown" : "Ulrich Rieke" }, { - "name" : "W. Luis Mochan", "y" : 3, + "name" : "W. Luis Mochan", "drilldown" : "W. Luis Mochan" }, { "name" : "Wanderdoc", - "drilldown" : "Wanderdoc", - "y" : 2 + "y" : 2, + "drilldown" : "Wanderdoc" } ], - "name" : "The Weekly Challenge - 287" + "colorByPoint" : 1 } - ] + ], + "subtitle" : { + "text" : "[Champions: 34] Last updated at 2024-10-02 20:30:44 GMT" + } } diff --git a/stats/pwc-challenge-288.json b/stats/pwc-challenge-288.json index 5535887ddf..eca0d93093 100644 --- a/stats/pwc-challenge-288.json +++ b/stats/pwc-challenge-288.json @@ -1,10 +1,185 @@ { + "xAxis" : { + "type" : "category" + }, + "tooltip" : { + "headerFormat" : "{series.name}
", + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, + "series" : [ + { + "data" : [ + { + "drilldown" : "Andre Ploger", + "name" : "Andre Ploger", + "y" : 3 + }, + { + "y" : 3, + "name" : "Arne Sommer", + "drilldown" : "Arne Sommer" + }, + { + "name" : "Athanasius", + "y" : 4, + "drilldown" : "Athanasius" + }, + { + "y" : 1, + "name" : "BarrOff", + "drilldown" : "BarrOff" + }, + { + "y" : 2, + "name" : "Bob Lied", + "drilldown" : "Bob Lied" + }, + { + "y" : 2, + "name" : "Dave Jacoby", + "drilldown" : "Dave Jacoby" + }, + { + "drilldown" : "David Ferrone", + "y" : 2, + "name" : "David Ferrone" + }, + { + "drilldown" : "E. Choroba", + "name" : "E. Choroba", + "y" : 2 + }, + { + "y" : 2, + "name" : "Feng Chang", + "drilldown" : "Feng Chang" + }, + { + "y" : 5, + "name" : "Jaldhar H. Vyas", + "drilldown" : "Jaldhar H. Vyas" + }, + { + "y" : 1, + "name" : "Jan Krnavek", + "drilldown" : "Jan Krnavek" + }, + { + "y" : 3, + "name" : "Jorg Sommrey", + "drilldown" : "Jorg Sommrey" + }, + { + "drilldown" : "Kjetil Skotheim", + "name" : "Kjetil Skotheim", + "y" : 2 + }, + { + "name" : "Laurent Rosenfeld", + "y" : 3, + "drilldown" : "Laurent Rosenfeld" + }, + { + "drilldown" : "Lubos Kolouch", + "name" : "Lubos Kolouch", + "y" : 2 + }, + { + "drilldown" : "Luca Ferrari", + "y" : 5, + "name" : "Luca Ferrari" + }, + { + "drilldown" : "Matthias Muth", + "y" : 3, + "name" : "Matthias Muth" + }, + { + "drilldown" : "Niels van Dijke", + "y" : 1, + "name" : "Niels van Dijke" + }, + { + "drilldown" : "Packy Anderson", + "y" : 5, + "name" : "Packy Anderson" + }, + { + "name" : "Paulo Custodio", + "y" : 2, + "drilldown" : "Paulo Custodio" + }, + { + "name" : "Peter Campbell Smith", + "y" : 3, + "drilldown" : "Peter Campbell Smith" + }, + { + "name" : "Reinier Maliepaard", + "y" : 2, + "drilldown" : "Reinier Maliepaard" + }, + { + "drilldown" : "Robbie Hatley", + "name" : "Robbie Hatley", + "y" : 3 + }, + { + "name" : "Roger Bell_West", + "y" : 5, + "drilldown" : "Roger Bell_West" + }, + { + "name" : "Simon Green", + "y" : 2, + "drilldown" : "Simon Green" + }, + { + "drilldown" : "Torgny Lyon", + "name" : "Torgny Lyon", + "y" : 3 + }, + { + "y" : 2, + "name" : "Ulrich Rieke", + "drilldown" : "Ulrich Rieke" + }, + { + "name" : "W. Luis Mochan", + "y" : 3, + "drilldown" : "W. Luis Mochan" + }, + { + "y" : 1, + "name" : "Wanderdoc", + "drilldown" : "Wanderdoc" + } + ], + "colorByPoint" : 1, + "name" : "The Weekly Challenge - 288" + } + ], "subtitle" : { - "text" : "[Champions: 28] Last updated at 2024-09-30 14:28:18 GMT" + "text" : "[Champions: 29] Last updated at 2024-10-02 20:30:44 GMT" + }, + "legend" : { + "enabled" : 0 }, "drilldown" : { "series" : [ { + "id" : "Andre Ploger", + "name" : "Andre Ploger", "data" : [ [ "Perl", @@ -14,11 +189,11 @@ "Blog", 1 ] - ], - "name" : "Andre Ploger", - "id" : "Andre Ploger" + ] }, { + "name" : "Arne Sommer", + "id" : "Arne Sommer", "data" : [ [ "Raku", @@ -28,9 +203,7 @@ "Blog", 1 ] - ], - "id" : "Arne Sommer", - "name" : "Arne Sommer" + ] }, { "data" : [ @@ -43,12 +216,12 @@ 2 ] ], - "id" : "Athanasius", - "name" : "Athanasius" + "name" : "Athanasius", + "id" : "Athanasius" }, { - "name" : "BarrOff", "id" : "BarrOff", + "name" : "BarrOff", "data" : [ [ "Raku", @@ -67,6 +240,8 @@ "id" : "Bob Lied" }, { + "name" : "Dave Jacoby", + "id" : "Dave Jacoby", "data" : [ [ "Perl", @@ -76,19 +251,17 @@ "Blog", 1 ] - ], - "id" : "Dave Jacoby", - "name" : "Dave Jacoby" + ] }, { - "id" : "David Ferrone", - "name" : "David Ferrone", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "David Ferrone", + "id" : "David Ferrone" }, { "name" : "E. Choroba", @@ -101,28 +274,44 @@ ] }, { + "name" : "Feng Chang", + "id" : "Feng Chang", "data" : [ [ "Raku", 2 ] - ], - "id" : "Feng Chang", - "name" : "Feng Chang" + ] }, { "data" : [ + [ + "Perl", + 2 + ], [ "Raku", + 2 + ], + [ + "Blog", 1 ] ], + "name" : "Jaldhar H. Vyas", + "id" : "Jaldhar H. Vyas" + }, + { "id" : "Jan Krnavek", - "name" : "Jan Krnavek" + "name" : "Jan Krnavek", + "data" : [ + [ + "Raku", + 1 + ] + ] }, { - "id" : "Jorg Sommrey", - "name" : "Jorg Sommrey", "data" : [ [ "Perl", @@ -132,19 +321,23 @@ "Blog", 1 ] - ] + ], + "id" : "Jorg Sommrey", + "name" : "Jorg Sommrey" }, { - "name" : "Kjetil Skotheim", - "id" : "Kjetil Skotheim", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Kjetil Skotheim", + "id" : "Kjetil Skotheim" }, { + "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", "data" : [ [ "Perl", @@ -158,13 +351,11 @@ "Blog", 1 ] - ], - "id" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld" + ] }, { - "id" : "Lubos Kolouch", "name" : "Lubos Kolouch", + "id" : "Lubos Kolouch", "data" : [ [ "Perl", @@ -211,6 +402,8 @@ "name" : "Niels van Dijke" }, { + "name" : "Packy Anderson", + "id" : "Packy Anderson", "data" : [ [ "Perl", @@ -224,9 +417,7 @@ "Blog", 1 ] - ], - "id" : "Packy Anderson", - "name" : "Packy Anderson" + ] }, { "data" : [ @@ -235,12 +426,10 @@ 2 ] ], - "id" : "Paulo Custodio", - "name" : "Paulo Custodio" + "name" : "Paulo Custodio", + "id" : "Paulo Custodio" }, { - "id" : "Peter Campbell Smith", - "name" : "Peter Campbell Smith", "data" : [ [ "Perl", @@ -250,11 +439,11 @@ "Blog", 1 ] - ] + ], + "id" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith" }, { - "id" : "Reinier Maliepaard", - "name" : "Reinier Maliepaard", "data" : [ [ "Perl", @@ -264,7 +453,9 @@ "Blog", 1 ] - ] + ], + "id" : "Reinier Maliepaard", + "name" : "Reinier Maliepaard" }, { "name" : "Robbie Hatley", @@ -295,8 +486,8 @@ 1 ] ], - "name" : "Roger Bell_West", - "id" : "Roger Bell_West" + "id" : "Roger Bell_West", + "name" : "Roger Bell_West" }, { "id" : "Simon Green", @@ -309,8 +500,8 @@ ] }, { - "id" : "Torgny Lyon", "name" : "Torgny Lyon", + "id" : "Torgny Lyon", "data" : [ [ "Perl", @@ -323,8 +514,6 @@ ] }, { - "name" : "Ulrich Rieke", - "id" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -334,11 +523,11 @@ "Raku", 1 ] - ] + ], + "name" : "Ulrich Rieke", + "id" : "Ulrich Rieke" }, { - "name" : "W. Luis Mochan", - "id" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -348,7 +537,9 @@ "Blog", 1 ] - ] + ], + "id" : "W. Luis Mochan", + "name" : "W. Luis Mochan" }, { "data" : [ @@ -357,188 +548,20 @@ 1 ] ], - "name" : "Wanderdoc", - "id" : "Wanderdoc" + "id" : "Wanderdoc", + "name" : "Wanderdoc" } ] }, - "tooltip" : { - "followPointer" : 1, - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "{series.name}
" - }, - "legend" : { - "enabled" : 0 - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } + "chart" : { + "type" : "column" }, "title" : { "text" : "The Weekly Challenge - 288" }, - "series" : [ - { - "data" : [ - { - "name" : "Andre Ploger", - "drilldown" : "Andre Ploger", - "y" : 3 - }, - { - "name" : "Arne Sommer", - "drilldown" : "Arne Sommer", - "y" : 3 - }, - { - "y" : 4, - "drilldown" : "Athanasius", - "name" : "Athanasius" - }, - { - "drilldown" : "BarrOff", - "name" : "BarrOff", - "y" : 1 - }, - { - "y" : 2, - "name" : "Bob Lied", - "drilldown" : "Bob Lied" - }, - { - "y" : 2, - "name" : "Dave Jacoby", - "drilldown" : "Dave Jacoby" - }, - { - "drilldown" : "David Ferrone", - "name" : "David Ferrone", - "y" : 2 - }, - { - "name" : "E. Choroba", - "drilldown" : "E. Choroba", - "y" : 2 - }, - { - "drilldown" : "Feng Chang", - "name" : "Feng Chang", - "y" : 2 - }, - { - "y" : 1, - "drilldown" : "Jan Krnavek", - "name" : "Jan Krnavek" - }, - { - "name" : "Jorg Sommrey", - "drilldown" : "Jorg Sommrey", - "y" : 3 - }, - { - "drilldown" : "Kjetil Skotheim", - "name" : "Kjetil Skotheim", - "y" : 2 - }, - { - "drilldown" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld", - "y" : 3 - }, - { - "y" : 2, - "drilldown" : "Lubos Kolouch", - "name" : "Lubos Kolouch" - }, - { - "y" : 5, - "name" : "Luca Ferrari", - "drilldown" : "Luca Ferrari" - }, - { - "drilldown" : "Matthias Muth", - "name" : "Matthias Muth", - "y" : 3 - }, - { - "drilldown" : "Niels van Dijke", - "name" : "Niels van Dijke", - "y" : 1 - }, - { - "y" : 5, - "drilldown" : "Packy Anderson", - "name" : "Packy Anderson" - }, - { - "drilldown" : "Paulo Custodio", - "name" : "Paulo Custodio", - "y" : 2 - }, - { - "y" : 3, - "drilldown" : "Peter Campbell Smith", - "name" : "Peter Campbell Smith" - }, - { - "y" : 2, - "drilldown" : "Reinier Maliepaard", - "name" : "Reinier Maliepaard" - }, - { - "drilldown" : "Robbie Hatley", - "name" : "Robbie Hatley", - "y" : 3 - }, - { - "y" : 5, - "name" : "Roger Bell_West", - "drilldown" : "Roger Bell_West" - }, - { - "drilldown" : "Simon Green", - "name" : "Simon Green", - "y" : 2 - }, - { - "y" : 3, - "name" : "Torgny Lyon", - "drilldown" : "Torgny Lyon" - }, - { - "y" : 2, - "name" : "Ulrich Rieke", - "drilldown" : "Ulrich Rieke" - }, - { - "drilldown" : "W. Luis Mochan", - "name" : "W. Luis Mochan", - "y" : 3 - }, - { - "y" : 1, - "drilldown" : "Wanderdoc", - "name" : "Wanderdoc" - } - ], - "colorByPoint" : 1, - "name" : "The Weekly Challenge - 288" - } - ], "yAxis" : { "title" : { "text" : "Total Solutions" } - }, - "xAxis" : { - "type" : "category" - }, - "chart" : { - "type" : "column" } } diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 906e48f7aa..d942499623 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,8 +1,15 @@ { + "chart" : { + "type" : "column" + }, + "subtitle" : { + "text" : "[Champions: 23] Last updated at 2024-10-02 20:31:08 GMT" + }, + "legend" : { + "enabled" : 0 + }, "series" : [ { - "name" : "The Weekly Challenge - 289", - "colorByPoint" : 1, "data" : [ { "drilldown" : "Arne Sommer", @@ -10,28 +17,53 @@ "y" : 3 }, { - "drilldown" : "David Ferrone", + "drilldown" : "Dave Jacoby", + "name" : "Dave Jacoby", + "y" : 3 + }, + { + "y" : 2, "name" : "David Ferrone", - "y" : 2 + "drilldown" : "David Ferrone" }, { + "drilldown" : "E. Choroba", "y" : 2, + "name" : "E. Choroba" + }, + { + "y" : 5, + "name" : "Jaldhar H. Vyas", + "drilldown" : "Jaldhar H. Vyas" + }, + { + "drilldown" : "Kjetil Skotheim", "name" : "Kjetil Skotheim", - "drilldown" : "Kjetil Skotheim" + "y" : 2 + }, + { + "drilldown" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", + "y" : 3 }, { + "drilldown" : "Lubos Kolouch", "name" : "Lubos Kolouch", - "y" : 2, - "drilldown" : "Lubos Kolouch" + "y" : 2 }, { - "drilldown" : "Luca Ferrari", + "y" : 12, "name" : "Luca Ferrari", - "y" : 12 + "drilldown" : "Luca Ferrari" }, { + "drilldown" : "Mark Anderson", "y" : 2, + "name" : "Mark Anderson" + }, + { "name" : "Niels van Dijke", + "y" : 2, "drilldown" : "Niels van Dijke" }, { @@ -40,24 +72,39 @@ "drilldown" : "Paulo Custodio" }, { - "drilldown" : "Peter Campbell Smith", "y" : 3, - "name" : "Peter Campbell Smith" + "name" : "Peter Campbell Smith", + "drilldown" : "Peter Campbell Smith" }, { - "drilldown" : "Robbie Hatley", - "name" : "Robbie Hatley", + "drilldown" : "Peter Meszaros", + "name" : "Peter Meszaros", "y" : 2 }, { + "drilldown" : "Reinier Maliepaard", + "y" : 2, + "name" : "Reinier Maliepaard" + }, + { + "drilldown" : "Robbie Hatley", + "y" : 2, + "name" : "Robbie Hatley" + }, + { + "drilldown" : "Roger Bell_West", "name" : "Roger Bell_West", - "y" : 4, - "drilldown" : "Roger Bell_West" + "y" : 4 }, { - "drilldown" : "Thomas Kohler", "y" : 4, - "name" : "Thomas Kohler" + "name" : "Thomas Kohler", + "drilldown" : "Thomas Kohler" + }, + { + "drilldown" : "Tim King", + "name" : "Tim King", + "y" : 3 }, { "name" : "Torgny Lyon", @@ -69,52 +116,49 @@ "name" : "Ulrich Rieke", "y" : 4 }, + { + "drilldown" : "Vinod Kumar K", + "y" : 1, + "name" : "Vinod Kumar K" + }, { "drilldown" : "W. Luis Mochan", - "y" : 3, - "name" : "W. Luis Mochan" + "name" : "W. Luis Mochan", + "y" : 3 } - ] + ], + "name" : "The Weekly Challenge - 289", + "colorByPoint" : 1 } ], + "xAxis" : { + "type" : "category" + }, "title" : { "text" : "The Weekly Challenge - 289" }, - "chart" : { - "type" : "column" - }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "{series.name}
", - "followPointer" : 1 - }, - "legend" : { - "enabled" : 0 - }, "yAxis" : { "title" : { "text" : "Total Solutions" } }, - "xAxis" : { - "type" : "category" - }, - "subtitle" : { - "text" : "[Champions: 14] Last updated at 2024-10-01 16:02:44 GMT" - }, "plotOptions" : { "series" : { "borderWidth" : 0, "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 + "enabled" : 1, + "format" : "{point.y}" } } }, + "tooltip" : { + "followPointer" : 1, + "headerFormat" : "{series.name}
", + "pointFormat" : "{point.name}: {point.y:f}
" + }, "drilldown" : { "series" : [ { - "id" : "Arne Sommer", "data" : [ [ "Raku", @@ -125,8 +169,23 @@ 1 ] ], + "id" : "Arne Sommer", "name" : "Arne Sommer" }, + { + "id" : "Dave Jacoby", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Dave Jacoby" + }, { "data" : [ [ @@ -138,85 +197,164 @@ "name" : "David Ferrone" }, { - "name" : "Kjetil Skotheim", - "id" : "Kjetil Skotheim", + "id" : "E. Choroba", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "E. Choroba" }, { + "id" : "Jaldhar H. Vyas", "data" : [ [ "Perl", 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 ] ], - "id" : "Lubos Kolouch", - "name" : "Lubos Kolouch" + "name" : "Jaldhar H. Vyas" }, { + "id" : "Kjetil Skotheim", "data" : [ [ - "Raku", + "Perl", 2 + ] + ], + "name" : "Kjetil Skotheim" + }, + { + "id" : "Laurent Rosenfeld", + "data" : [ + [ + "Perl", + 1 + ], + [ + "Raku", + 1 ], [ "Blog", - 10 + 1 ] ], - "id" : "Luca Ferrari", - "name" : "Luca Ferrari" + "name" : "Laurent Rosenfeld" }, { + "name" : "Lubos Kolouch", "data" : [ [ "Perl", 2 ] ], + "id" : "Lubos Kolouch" + }, + { + "name" : "Luca Ferrari", + "id" : "Luca Ferrari", + "data" : [ + [ + "Raku", + 2 + ], + [ + "Blog", + 10 + ] + ] + }, + { + "name" : "Mark Anderson", + "id" : "Mark Anderson", + "data" : [ + [ + "Raku", + 2 + ] + ] + }, + { + "name" : "Niels van Dijke", "id" : "Niels van Dijke", - "name" : "Niels van Dijke" + "data" : [ + [ + "Perl", + 2 + ] + ] }, { + "name" : "Paulo Custodio", + "id" : "Paulo Custodio", "data" : [ [ "Perl", 2 ] + ] + }, + { + "name" : "Peter Campbell Smith", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] ], - "id" : "Paulo Custodio", - "name" : "Paulo Custodio" + "id" : "Peter Campbell Smith" }, { + "name" : "Peter Meszaros", "data" : [ [ "Perl", 2 + ] + ], + "id" : "Peter Meszaros" + }, + { + "id" : "Reinier Maliepaard", + "data" : [ + [ + "Perl", + 1 ], [ "Blog", 1 ] ], - "id" : "Peter Campbell Smith", - "name" : "Peter Campbell Smith" + "name" : "Reinier Maliepaard" }, { - "name" : "Robbie Hatley", - "id" : "Robbie Hatley", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Robbie Hatley", + "name" : "Robbie Hatley" }, { - "name" : "Roger Bell_West", "id" : "Roger Bell_West", "data" : [ [ @@ -227,9 +365,11 @@ "Raku", 2 ] - ] + ], + "name" : "Roger Bell_West" }, { + "id" : "Thomas Kohler", "data" : [ [ "Perl", @@ -240,7 +380,6 @@ 2 ] ], - "id" : "Thomas Kohler", "name" : "Thomas Kohler" }, { @@ -254,11 +393,24 @@ 1 ] ], - "id" : "Torgny Lyon", - "name" : "Torgny Lyon" + "id" : "Tim King", + "name" : "Tim King" + }, + { + "name" : "Torgny Lyon", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Torgny Lyon" }, { - "name" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -269,10 +421,21 @@ 2 ] ], - "id" : "Ulrich Rieke" + "id" : "Ulrich Rieke", + "name" : "Ulrich Rieke" + }, + { + "name" : "Vinod Kumar K", + "data" : [ + [ + "Perl", + 1 + ] + ], + "id" : "Vinod Kumar K" }, { - "id" : "W. Luis Mochan", + "name" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -283,7 +446,7 @@ 1 ] ], - "name" : "W. Luis Mochan" + "id" : "W. Luis Mochan" } ] } diff --git a/stats/pwc-language-breakdown-2019.json b/stats/pwc-language-breakdown-2019.json index 77b75a04cd..bc813f2886 100644 --- a/stats/pwc-language-breakdown-2019.json +++ b/stats/pwc-language-breakdown-2019.json @@ -1,15 +1,245 @@ { + "chart" : { + "type" : "column" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2024-10-02 20:31:08 GMT" + }, + "legend" : { + "enabled" : "false" + }, + "series" : [ + { + "name" : "The Weekly Challenge Languages", + "colorByPoint" : "true", + "data" : [ + { + "y" : 80, + "name" : "041", + "drilldown" : "041" + }, + { + "name" : "040", + "y" : 77, + "drilldown" : "040" + }, + { + "drilldown" : "039", + "name" : "039", + "y" : 68 + }, + { + "drilldown" : "038", + "name" : "038", + "y" : 74 + }, + { + "y" : 70, + "name" : "037", + "drilldown" : "037" + }, + { + "y" : 70, + "name" : "036", + "drilldown" : "036" + }, + { + "drilldown" : "035", + "name" : "035", + "y" : 68 + }, + { + "y" : 70, + "name" : "034", + "drilldown" : "034" + }, + { + "drilldown" : "033", + "name" : "033", + "y" : 113 + }, + { + "y" : 97, + "name" : "032", + "drilldown" : "032" + }, + { + "name" : "031", + "y" : 93, + "drilldown" : "031" + }, + { + "name" : "030", + "y" : 120, + "drilldown" : "030" + }, + { + "y" : 83, + "name" : "029", + "drilldown" : "029" + }, + { + "drilldown" : "028", + "name" : "028", + "y" : 82 + }, + { + "drilldown" : "027", + "y" : 64, + "name" : "027" + }, + { + "drilldown" : "026", + "y" : 75, + "name" : "026" + }, + { + "name" : "025", + "y" : 62, + "drilldown" : "025" + }, + { + "drilldown" : "024", + "y" : 77, + "name" : "024" + }, + { + "drilldown" : "023", + "y" : 88, + "name" : "023" + }, + { + "y" : 72, + "name" : "022", + "drilldown" : "022" + }, + { + "name" : "021", + "y" : 72, + "drilldown" : "021" + }, + { + "drilldown" : "020", + "name" : "020", + "y" : 100 + }, + { + "name" : "019", + "y" : 101, + "drilldown" : "019" + }, + { + "drilldown" : "018", + "name" : "018", + "y" : 82 + }, + { + "name" : "017", + "y" : 83, + "drilldown" : "017" + }, + { + "drilldown" : "016", + "name" : "016", + "y" : 75 + }, + { + "name" : "015", + "y" : 95, + "drilldown" : "015" + }, + { + "drilldown" : "014", + "y" : 98, + "name" : "014" + }, + { + "drilldown" : "013", + "y" : 85, + "name" : "013" + }, + { + "drilldown" : "012", + "name" : "012", + "y" : 90 + }, + { + "drilldown" : "011", + "y" : 86, + "name" : "011" + }, + { + "drilldown" : "010", + "name" : "010", + "y" : 69 + }, + { + "y" : 79, + "name" : "009", + "drilldown" : "009" + }, + { + "drilldown" : "008", + "name" : "008", + "y" : 82 + }, + { + "drilldown" : "007", + "y" : 71, + "name" : "007" + }, + { + "drilldown" : "006", + "y" : 63, + "name" : "006" + }, + { + "y" : 82, + "name" : "005", + "drilldown" : "005" + }, + { + "y" : 106, + "name" : "004", + "drilldown" : "004" + }, + { + "drilldown" : "003", + "y" : 91, + "name" : "003" + }, + { + "name" : "002", + "y" : 133, + "drilldown" : "002" + }, + { + "drilldown" : "001", + "name" : "001", + "y" : 165 + } + ] + } + ], + "xAxis" : { + "type" : "category" + }, + "title" : { + "text" : "The Weekly Challenge Language" + }, "plotOptions" : { "series" : { "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 + "enabled" : 1, + "format" : "{point.y}" }, "borderWidth" : 0 } }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2024-10-01 16:02:44 GMT" + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } }, "drilldown" : { "series" : [ @@ -32,7 +262,6 @@ "name" : "041" }, { - "name" : "040", "id" : "040", "data" : [ [ @@ -47,10 +276,11 @@ "Blog", 10 ] - ] + ], + "name" : "040" }, { - "name" : "039", + "id" : "039", "data" : [ [ "Perl", @@ -65,7 +295,7 @@ 12 ] ], - "id" : "039" + "name" : "039" }, { "data" : [ @@ -87,6 +317,7 @@ }, { "name" : "037", + "id" : "037", "data" : [ [ "Perl", @@ -100,11 +331,9 @@ "Blog", 9 ] - ], - "id" : "037" + ] }, { - "name" : "036", "id" : "036", "data" : [ [ @@ -119,11 +348,10 @@ "Blog", 11 ] - ] + ], + "name" : "036" }, { - "name" : "035", - "id" : "035", "data" : [ [