From a9f099b09f5cd637d39b54abbd42dd0d49fe497d Mon Sep 17 00:00:00 2001 From: Mohammad Sajid Anwar Date: Tue, 10 Jun 2025 09:30:01 +0100 Subject: - Added solutions by Eric Cheung. - Added solutions by Thomas Kohler. - Added solutions by E. Choroba. - Added solutions by Niels van Dijke. - Added solutions by Andrew Shitov. - Added solutions by Mark Anderson. - Added solutions by Peter Campbell Smith. - Added solutions by David Ferrone. - Added solutions by W. Luis Mochan. - Added solutions by Robbie Hatley. - Added solutions by Ali Moradi. - Added solutions by Feng Chang. - Added solutions by PokGoPun. - Added solutions by Andreas Mahnke. - Added solutions by Peter Meszaros. --- challenge-325/eric-cheung/python/ch-1.py | 22 ++ challenge-325/eric-cheung/python/ch-2.py | 18 + challenge-325/perlboy1967/perl/ch-1.pl | 35 ++ challenge-325/perlboy1967/perl/ch-2.pl | 47 +++ challenge-325/perlboy1967/perl/ch1.pl | 35 -- challenge-325/perlboy1967/perl/ch2.pl | 47 --- stats/pwc-challenge-324.json | 559 ++++++++++++++++++++++++++++++ stats/pwc-current.json | 302 +--------------- stats/pwc-language-breakdown-2019.json | 2 +- stats/pwc-language-breakdown-2020.json | 2 +- stats/pwc-language-breakdown-2021.json | 2 +- stats/pwc-language-breakdown-2022.json | 2 +- stats/pwc-language-breakdown-2023.json | 2 +- stats/pwc-language-breakdown-2024.json | 2 +- stats/pwc-language-breakdown-2025.json | 25 +- stats/pwc-language-breakdown-summary.json | 8 +- stats/pwc-leaders.json | 56 +-- stats/pwc-summary-1-30.json | 10 +- stats/pwc-summary-121-150.json | 2 +- stats/pwc-summary-151-180.json | 4 +- stats/pwc-summary-181-210.json | 4 +- stats/pwc-summary-211-240.json | 8 +- stats/pwc-summary-241-270.json | 6 +- stats/pwc-summary-271-300.json | 6 +- stats/pwc-summary-301-330.json | 6 +- stats/pwc-summary-31-60.json | 4 +- stats/pwc-summary-61-90.json | 8 +- stats/pwc-summary-91-120.json | 2 +- stats/pwc-summary.json | 38 +- stats/pwc-yearly-language-summary.json | 10 +- 30 files changed, 800 insertions(+), 474 deletions(-) create mode 100755 challenge-325/eric-cheung/python/ch-1.py create mode 100755 challenge-325/eric-cheung/python/ch-2.py create mode 100755 challenge-325/perlboy1967/perl/ch-1.pl create mode 100755 challenge-325/perlboy1967/perl/ch-2.pl delete mode 100755 challenge-325/perlboy1967/perl/ch1.pl delete mode 100755 challenge-325/perlboy1967/perl/ch2.pl create mode 100644 stats/pwc-challenge-324.json diff --git a/challenge-325/eric-cheung/python/ch-1.py b/challenge-325/eric-cheung/python/ch-1.py new file mode 100755 index 0000000000..6cc76254d9 --- /dev/null +++ b/challenge-325/eric-cheung/python/ch-1.py @@ -0,0 +1,22 @@ + +## arrBinary = [0, 1, 1, 0, 1, 1, 1] ## Example 1 +## arrBinary = [0, 0, 0, 0] ## Example 2 +arrBinary = [1, 0, 1, 0, 1, 1] ## Example 3 + +nMaxOne = 0 +nCountOne = 0 + +for nBinLoop in arrBinary: + if nBinLoop == 0: + if nCountOne > nMaxOne: + nMaxOne = nCountOne + + nCountOne = 0 + continue + + nCountOne = nCountOne + 1 + +if nCountOne > nMaxOne: + nMaxOne = nCountOne + +print (nMaxOne) diff --git a/challenge-325/eric-cheung/python/ch-2.py b/challenge-325/eric-cheung/python/ch-2.py new file mode 100755 index 0000000000..997d8bbb8a --- /dev/null +++ b/challenge-325/eric-cheung/python/ch-2.py @@ -0,0 +1,18 @@ + +## Ref.: +## https://www.tutorialspoint.com/program-to-find-final-prices-with-a-special-discount-in-a-shop-in-python + +## arrPrice = [8, 4, 6, 2, 3] ## Example 1 +## arrPrice = [1, 2, 3, 4, 5] ## Example 2 +arrPrice = [7, 1, 1, 5] ## Example 3 + +arrOutput = [] + +for nIndx, nPrice in enumerate(arrPrice): + arrDiscount = [arrPrice[nSubIndxLoop] for nSubIndxLoop in range(nIndx + 1, len(arrPrice)) if arrPrice[nSubIndxLoop] <= nPrice] + + nDiscount = (0 if len(arrDiscount) == 0 else arrDiscount[0]) + + arrOutput.append(nPrice - nDiscount) + +print (arrOutput) diff --git a/challenge-325/perlboy1967/perl/ch-1.pl b/challenge-325/perlboy1967/perl/ch-1.pl new file mode 100755 index 0000000000..941e10119d --- /dev/null +++ b/challenge-325/perlboy1967/perl/ch-1.pl @@ -0,0 +1,35 @@ +#!/bin/perl + +=pod + +The Weekly Challenge - 325 +L + +Author: Niels 'PerlBoy' van Dijke + +Task 1: Consecutive One +Submitted by: Mohammad Sajid Anwar + +You are given a binary array containing only 0 or/and 1. + +Write a script to find out the maximum consecutive 1 in the given array. + +=cut + +use v5.32; +use common::sense; +use feature qw(signatures); +use Test2::V0 qw(-no_srand); +no warnings qw(experimental::signatures); + +use List::Util qw(max); + +sub consecutiveOne (@binary) { + return max (0, map { length } grep '1', split '0', join '', @binary); +} + +is(consecutiveOne(0,1,1,0,1,1,1),3,'Example 1'); +is(consecutiveOne(0,0,0,0),0,'Example 2'); +is(consecutiveOne(1,0,1,0,1,1),2,'Example 3'); + +done_testing; diff --git a/challenge-325/perlboy1967/perl/ch-2.pl b/challenge-325/perlboy1967/perl/ch-2.pl new file mode 100755 index 0000000000..9e2ccbaa41 --- /dev/null +++ b/challenge-325/perlboy1967/perl/ch-2.pl @@ -0,0 +1,47 @@ +#!/bin/perl + +=pod + +The Weekly Challenge - 325 +L + +Author: Niels 'PerlBoy' van Dijke + +Task 2: Final Price +Submitted by: Mohammad Sajid Anwar + +You are given an array of item prices. + +Write a script to find out the final price of each items in the given array. + +There is a special discount scheme going on. If there’s an item with a lower +or equal price later in the list, you get a discount equal to that later price +(the first one you find in order). + +=cut + +use v5.32; +use common::sense; +use feature qw(signatures); +use Test2::V0 qw(-no_srand); +no warnings qw(experimental::signatures); + +use List::MoreUtils qw(firstidx); + +sub finalPrice (@prices) { + my @n; + + while (@prices) { + push(@n,shift(@prices)); + my $m = firstidx { $_ <= $n[-1] } @prices; + $n[-1] -= $prices[$m] if $m >= 0; + } + + return @n; +} + +is([finalPrice(8,4,6,2,3)],[4,2,4,2,3],'Example 1'); +is([finalPrice(1,2,3,4,5)],[1,2,3,4,5],'Example 2'); +is([finalPrice(7,1,1,5)],[6,0,1,5],'Example 3'); + +done_testing; diff --git a/challenge-325/perlboy1967/perl/ch1.pl b/challenge-325/perlboy1967/perl/ch1.pl deleted file mode 100755 index 941e10119d..0000000000 --- a/challenge-325/perlboy1967/perl/ch1.pl +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/perl - -=pod - -The Weekly Challenge - 325 -L - -Author: Niels 'PerlBoy' van Dijke - -Task 1: Consecutive One -Submitted by: Mohammad Sajid Anwar - -You are given a binary array containing only 0 or/and 1. - -Write a script to find out the maximum consecutive 1 in the given array. - -=cut - -use v5.32; -use common::sense; -use feature qw(signatures); -use Test2::V0 qw(-no_srand); -no warnings qw(experimental::signatures); - -use List::Util qw(max); - -sub consecutiveOne (@binary) { - return max (0, map { length } grep '1', split '0', join '', @binary); -} - -is(consecutiveOne(0,1,1,0,1,1,1),3,'Example 1'); -is(consecutiveOne(0,0,0,0),0,'Example 2'); -is(consecutiveOne(1,0,1,0,1,1),2,'Example 3'); - -done_testing; diff --git a/challenge-325/perlboy1967/perl/ch2.pl b/challenge-325/perlboy1967/perl/ch2.pl deleted file mode 100755 index 9e2ccbaa41..0000000000 --- a/challenge-325/perlboy1967/perl/ch2.pl +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/perl - -=pod - -The Weekly Challenge - 325 -L - -Author: Niels 'PerlBoy' van Dijke - -Task 2: Final Price -Submitted by: Mohammad Sajid Anwar - -You are given an array of item prices. - -Write a script to find out the final price of each items in the given array. - -There is a special discount scheme going on. If there’s an item with a lower -or equal price later in the list, you get a discount equal to that later price -(the first one you find in order). - -=cut - -use v5.32; -use common::sense; -use feature qw(signatures); -use Test2::V0 qw(-no_srand); -no warnings qw(experimental::signatures); - -use List::MoreUtils qw(firstidx); - -sub finalPrice (@prices) { - my @n; - - while (@prices) { - push(@n,shift(@prices)); - my $m = firstidx { $_ <= $n[-1] } @prices; - $n[-1] -= $prices[$m] if $m >= 0; - } - - return @n; -} - -is([finalPrice(8,4,6,2,3)],[4,2,4,2,3],'Example 1'); -is([finalPrice(1,2,3,4,5)],[1,2,3,4,5],'Example 2'); -is([finalPrice(7,1,1,5)],[6,0,1,5],'Example 3'); - -done_testing; diff --git a/stats/pwc-challenge-324.json b/stats/pwc-challenge-324.json new file mode 100644 index 0000000000..954f4508b1 --- /dev/null +++ b/stats/pwc-challenge-324.json @@ -0,0 +1,559 @@ +{ + "chart" : { + "type" : "column" + }, + "drilldown" : { + "series" : [ + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 2 + ] + ], + "id" : "Adam Russell", + "name" : "Adam Russell" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Alexander Karelas", + "name" : "Alexander Karelas" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Ali Moradi", + "name" : "Ali Moradi" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Andreas Mahnke", + "name" : "Andreas Mahnke" + }, + { + "data" : [ + [ + "Raku", + 2 + ] + ], + "id" : "Andrew Shitov", + "name" : "Andrew Shitov" + }, + { + "data" : [ + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Arne Sommer", + "name" : "Arne Sommer" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ] + ], + "id" : "Athanasius", + "name" : "Athanasius" + }, + { + "data" : [ + [ + "Raku", + 2 + ] + ], + "id" : "BarrOff", + "name" : "BarrOff" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Bob Lied", + "name" : "Bob Lied" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "David Ferrone", + "name" : "David Ferrone" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "E. Choroba", + "name" : "E. Choroba" + }, + { + "data" : [ + [ + "Raku", + 2 + ] + ], + "id" : "Feng Chang", + "name" : "Feng Chang" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas" + }, + { + "data" : [ + [ + "Raku", + 2 + ] + ], + "id" : "Jan Krnavek", + "name" : "Jan Krnavek" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Jorg Sommrey", + "name" : "Jorg Sommrey" + }, + { + "data" : [ + [ + "Raku", + 2 + ] + ], + "id" : "Mark Anderson", + "name" : "Mark Anderson" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Matthias Muth", + "name" : "Matthias Muth" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Niels van Dijke", + "name" : "Niels van Dijke" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Packy Anderson", + "name" : "Packy Anderson" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Peter Meszaros", + "name" : "Peter Meszaros" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Robbie Hatley", + "name" : "Robbie Hatley" + }, + { + "data" : [ + [ + "Raku", + 2 + ] + ], + "id" : "Robert Ransbottom", + "name" : "Robert Ransbottom" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Roger Bell_West", + "name" : "Roger Bell_West" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Simon Green", + "name" : "Simon Green" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 2 + ] + ], + "id" : "Thomas Kohler", + "name" : "Thomas Kohler" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ] + ], + "id" : "Ulrich Rieke", + "name" : "Ulrich Rieke" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "W. Luis Mochan", + "name" : "W. Luis Mochan" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Yitzchak Scott-Thoennes", + "name" : "Yitzchak Scott-Thoennes" + } + ] + }, + "legend" : { + "enabled" : 0 + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } + }, + "series" : [ + { + "colorByPoint" : 1, + "data" : [ + { + "drilldown" : "Adam Russell", + "name" : "Adam Russell", + "y" : 4 + }, + { + "drilldown" : "Alexander Karelas", + "name" : "Alexander Karelas", + "y" : 2 + }, + { + "drilldown" : "Ali Moradi", + "name" : "Ali Moradi", + "y" : 3 + }, + { + "drilldown" : "Andreas Mahnke", + "name" : "Andreas Mahnke", + "y" : 2 + }, + { + "drilldown" : "Andrew Shitov", + "name" : "Andrew Shitov", + "y" : 2 + }, + { + "drilldown" : "Arne Sommer", + "name" : "Arne Sommer", + "y" : 3 + }, + { + "drilldown" : "Athanasius", + "name" : "Athanasius", + "y" : 4 + }, + { + "drilldown" : "BarrOff", + "name" : "BarrOff", + "y" : 2 + }, + { + "drilldown" : "Bob Lied", + "name" : "Bob Lied", + "y" : 2 + }, + { + "drilldown" : "David Ferrone", + "name" : "David Ferrone", + "y" : 2 + }, + { + "drilldown" : "E. Choroba", + "name" : "E. Choroba", + "y" : 2 + }, + { + "drilldown" : "Feng Chang", + "name" : "Feng Chang", + "y" : 2 + }, + { + "drilldown" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas", + "y" : 5 + }, + { + "drilldown" : "Jan Krnavek", + "name" : "Jan Krnavek", + "y" : 2 + }, + { + "drilldown" : "Jorg Sommrey", + "name" : "Jorg Sommrey", + "y" : 3 + }, + { + "drilldown" : "Mark Anderson", + "name" : "Mark Anderson", + "y" : 2 + }, + { + "drilldown" : "Matthias Muth", + "name" : "Matthias Muth", + "y" : 3 + }, + { + "drilldown" : "Niels van Dijke", + "name" : "Niels van Dijke", + "y" : 2 + }, + { + "drilldown" : "Packy Anderson", + "name" : "Packy Anderson", + "y" : 5 + }, + { + "drilldown" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith", + "y" : 3 + }, + { + "drilldown" : "Peter Meszaros", + "name" : "Peter Meszaros", + "y" : 2 + }, + { + "drilldown" : "Robbie Hatley", + "name" : "Robbie Hatley", + "y" : 3 + }, + { + "drilldown" : "Robert Ransbottom", + "name" : "Robert Ransbottom", + "y" : 2 + }, + { + "drilldown" : "Roger Bell_West", + "name" : "Roger Bell_West", + "y" : 5 + }, + { + "drilldown" : "Simon Green", + "name" : "Simon Green", + "y" : 3 + }, + { + "drilldown" : "Thomas Kohler", + "name" : "Thomas Kohler", + "y" : 4 + }, + { + "drilldown" : "Ulrich Rieke", + "name" : "Ulrich Rieke", + "y" : 4 + }, + { + "drilldown" : "W. Luis Mochan", + "name" : "W. Luis Mochan", + "y" : 3 + }, + { + "drilldown" : "Yitzchak Scott-Thoennes", + "name" : "Yitzchak Scott-Thoennes", + "y" : 3 + } + ], + "name" : "The Weekly Challenge - 324" + } + ], + "subtitle" : { + "text" : "[Champions: 29] Last updated at 2025-06-10 08:29:51 GMT" + }, + "title" : { + "text" : "The Weekly Challenge - 324" + }, + "tooltip" : { + "followPointer" : 1, + "headerFormat" : "{series.name}
", + "pointFormat" : "{point.name}: {point.y:f}
" + }, + "xAxis" : { + "type" : "category" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + } +} diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 2e25c84639..936f3790aa 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -4,30 +4,6 @@ }, "drilldown" : { "series" : [ - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 2 - ] - ], - "id" : "Adam Russell", - "name" : "Adam Russell" - }, - { - "data" : [ - [ - "Perl", - 2 - ] - ], - "id" : "Alexander Karelas", - "name" : "Alexander Karelas" - }, { "data" : [ [ @@ -64,56 +40,8 @@ }, { "data" : [ - [ - "Raku", - 2 - ], [ "Blog", - 1 - ] - ], - "id" : "Arne Sommer", - "name" : "Arne Sommer" - }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ] - ], - "id" : "Athanasius", - "name" : "Athanasius" - }, - { - "data" : [ - [ - "Raku", - 2 - ] - ], - "id" : "BarrOff", - "name" : "BarrOff" - }, - { - "data" : [ - [ - "Perl", - 2 - ] - ], - "id" : "Bob Lied", - "name" : "Bob Lied" - }, - { - "data" : [ - [ - "Perl", 2 ] ], @@ -140,48 +68,6 @@ "id" : "Feng Chang", "name" : "Feng Chang" }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Jaldhar H. Vyas", - "name" : "Jaldhar H. Vyas" - }, - { - "data" : [ - [ - "Raku", - 2 - ] - ], - "id" : "Jan Krnavek", - "name" : "Jan Krnavek" - }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Jorg Sommrey", - "name" : "Jorg Sommrey" - }, { "data" : [ [ @@ -192,20 +78,6 @@ "id" : "Mark Anderson", "name" : "Mark Anderson" }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Matthias Muth", - "name" : "Matthias Muth" - }, { "data" : [ [ @@ -216,24 +88,6 @@ "id" : "Niels van Dijke", "name" : "Niels van Dijke" }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Packy Anderson", - "name" : "Packy Anderson" - }, { "data" : [ [ @@ -272,48 +126,6 @@ "id" : "Robbie Hatley", "name" : "Robbie Hatley" }, - { - "data" : [ - [ - "Raku", - 2 - ] - ], - "id" : "Robert Ransbottom", - "name" : "Robert Ransbottom" - }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Roger Bell_West", - "name" : "Roger Bell_West" - }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Simon Green", - "name" : "Simon Green" - }, { "data" : [ [ @@ -328,20 +140,6 @@ "id" : "Thomas Kohler", "name" : "Thomas Kohler" }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ] - ], - "id" : "Ulrich Rieke", - "name" : "Ulrich Rieke" - }, { "data" : [ [ @@ -355,20 +153,6 @@ ], "id" : "W. Luis Mochan", "name" : "W. Luis Mochan" - }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Yitzchak Scott-Thoennes", - "name" : "Yitzchak Scott-Thoennes" } ] }, @@ -388,16 +172,6 @@ { "colorByPoint" : 1, "data" : [ - { - "drilldown" : "Adam Russell", - "name" : "Adam Russell", - "y" : 4 - }, - { - "drilldown" : "Alexander Karelas", - "name" : "Alexander Karelas", - "y" : 2 - }, { "drilldown" : "Ali Moradi", "name" : "Ali Moradi", @@ -413,26 +187,6 @@ "name" : "Andrew Shitov", "y" : 2 }, - { - "drilldown" : "Arne Sommer", - "name" : "Arne Sommer", - "y" : 3 - }, - { - "drilldown" : "Athanasius", - "name" : "Athanasius", - "y" : 4 - }, - { - "drilldown" : "BarrOff", - "name" : "BarrOff", - "y" : 2 - }, - { - "drilldown" : "Bob Lied", - "name" : "Bob Lied", - "y" : 2 - }, { "drilldown" : "David Ferrone", "name" : "David Ferrone", @@ -448,41 +202,16 @@ "name" : "Feng Chang", "y" : 2 }, - { - "drilldown" : "Jaldhar H. Vyas", - "name" : "Jaldhar H. Vyas", - "y" : 5 - }, - { - "drilldown" : "Jan Krnavek", - "name" : "Jan Krnavek", - "y" : 2 - }, - { - "drilldown" : "Jorg Sommrey", - "name" : "Jorg Sommrey", - "y" : 3 - }, { "drilldown" : "Mark Anderson", "name" : "Mark Anderson", "y" : 2 }, - { - "drilldown" : "Matthias Muth", - "name" : "Matthias Muth", - "y" : 3 - }, { "drilldown" : "Niels van Dijke", "name" : "Niels van Dijke", "y" : 2 }, - { - "drilldown" : "Packy Anderson", - "name" : "Packy Anderson", - "y" : 5 - }, { "drilldown" : "Peter Campbell Smith", "name" : "Peter Campbell Smith", @@ -498,50 +227,25 @@ "name" : "Robbie Hatley", "y" : 3 }, - { - "drilldown" : "Robert Ransbottom", - "name" : "Robert Ransbottom", - "y" : 2 - }, - { - "drilldown" : "Roger Bell_West", - "name" : "Roger Bell_West", - "y" : 5 - }, - { - "drilldown" : "Simon Green", - "name" : "Simon Green", - "y" : 3 - }, { "drilldown" : "Thomas Kohler", "name" : "Thomas Kohler", "y" : 4 }, - { - "drilldown" : "Ulrich Rieke", - "name" : "Ulrich Rieke", - "y" : 4 - }, { "drilldown" : "W. Luis Mochan", "name" : "W. Luis Mochan", "y" : 3 - }, - { - "drilldown" : "Yitzchak Scott-Thoennes", - "name" : "Yitzchak Scott-Thoennes", - "y" : 3 } ], - "name" : "The Weekly Challenge - 324" + "name" : "The Weekly Challenge - 325" } ], "subtitle" : { - "text" : "[Champions: 29] Last updated at 2025-06-09 01:01:46 GMT" + "text" : "[Champions: 13] Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { - "text" : "The Weekly Challenge - 324" + "text" : "The Weekly Challenge - 325" }, "tooltip" : { "followPointer" : 1, diff --git a/stats/pwc-language-breakdown-2019.json b/stats/pwc-language-breakdown-2019.json index 1d43eb0e0b..0c3e395aaf 100644 --- a/stats/pwc-language-breakdown-2019.json +++ b/stats/pwc-language-breakdown-2019.json @@ -970,7 +970,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-06-09 01:01:46 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2020.json b/stats/pwc-language-breakdown-2020.json index 405ea5d1f2..95392c6dfb 100644 --- a/stats/pwc-language-breakdown-2020.json +++ b/stats/pwc-language-breakdown-2020.json @@ -1223,7 +1223,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-06-09 01:01:46 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2021.json b/stats/pwc-language-breakdown-2021.json index dee349af00..618af49362 100644 --- a/stats/pwc-language-breakdown-2021.json +++ b/stats/pwc-language-breakdown-2021.json @@ -1223,7 +1223,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-06-09 01:01:46 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2022.json b/stats/pwc-language-breakdown-2022.json index e42627e720..024c40bc63 100644 --- a/stats/pwc-language-breakdown-2022.json +++ b/stats/pwc-language-breakdown-2022.json @@ -1223,7 +1223,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-06-09 01:01:46 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2023.json b/stats/pwc-language-breakdown-2023.json index 562e0655db..efe82a6085 100644 --- a/stats/pwc-language-breakdown-2023.json +++ b/stats/pwc-language-breakdown-2023.json @@ -1200,7 +1200,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-06-09 01:01:46 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2024.json b/stats/pwc-language-breakdown-2024.json index b05a258744..9343082621 100644 --- a/stats/pwc-language-breakdown-2024.json +++ b/stats/pwc-language-breakdown-2024.json @@ -1246,7 +1246,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-06-09 01:01:46 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2025.json b/stats/pwc-language-breakdown-2025.json index aa7500e59d..708900b247 100644 --- a/stats/pwc-language-breakdown-2025.json +++ b/stats/pwc-language-breakdown-2025.json @@ -4,6 +4,24 @@ }, "drilldown" : { "series" : [ + { + "data" : [ + [ + "Perl", + 18 + ], + [ + "Raku", + 6 + ], + [ + "Blog", + 8 + ] + ], + "id" : "325", + "name" : "325" + }, { "data" : [ [ @@ -418,6 +436,11 @@ { "colorByPoint" : "true", "data" : [ + { + "drilldown" : "325", + "name" : "325", + "y" : 32 + }, { "drilldown" : "324", "name" : "324", @@ -533,7 +556,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-06-09 01:01:46 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index de507dc598..5bd5dfb3e3 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -10,15 +10,15 @@ "data" : [ [ "Perl", - 16762 + 16780 ], [ "Raku", - 9335 + 9341 ], [ "Blog", - 5961 + 5969 ] ], "dataLabels" : { @@ -37,7 +37,7 @@ } ], "subtitle" : { - "text" : "Last updated at 2025-06-09 01:01:46 GMT" + "text" : "Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge Contributions [2019 - 2025]" diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 6d8dc7dd81..07f9ca33b2 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -194,7 +194,7 @@ "data" : [ [ "Perl", - 466 + 468 ], [ "Raku", @@ -202,7 +202,7 @@ ], [ "Blog", - 233 + 234 ] ], "id" : "W. Luis Mochan", @@ -212,7 +212,7 @@ "data" : [ [ "Perl", - 637 + 639 ], [ "Blog", @@ -286,11 +286,11 @@ "data" : [ [ "Perl", - 374 + 376 ], [ "Blog", - 180 + 181 ] ], "id" : "Peter Campbell Smith", @@ -304,7 +304,7 @@ ], [ "Raku", - 511 + 513 ], [ "Blog", @@ -318,11 +318,11 @@ "data" : [ [ "Perl", - 250 + 252 ], [ "Blog", - 243 + 245 ] ], "id" : "Thomas Kohler", @@ -336,7 +336,7 @@ ], [ "Raku", - 439 + 441 ] ], "id" : "Feng Chang", @@ -392,7 +392,7 @@ "data" : [ [ "Perl", - 229 + 231 ], [ "Raku", @@ -400,7 +400,7 @@ ], [ "Blog", - 79 + 80 ] ], "id" : "Ali Moradi", @@ -438,7 +438,7 @@ "data" : [ [ "Perl", - 388 + 390 ] ], "id" : "Niels van Dijke", @@ -448,11 +448,11 @@ "data" : [ [ "Perl", - 266 + 268 ], [ "Blog", - 120 + 121 ] ], "id" : "Robbie Hatley", @@ -566,7 +566,7 @@ ], [ "Blog", - 7 + 9 ] ], "id" : "David Ferrone", @@ -646,7 +646,7 @@ "data" : [ [ "Perl", - 250 + 252 ] ], "id" : "Peter Meszaros", @@ -852,12 +852,12 @@ { "drilldown" : "W. Luis Mochan", "name" : "12: W. Luis Mochan", - "y" : 1402 + "y" : 1408 }, { "drilldown" : "E. Choroba", "name" : "13: E. Choroba", - "y" : 1388 + "y" : 1392 }, { "drilldown" : "Colin Crain", @@ -882,22 +882,22 @@ { "drilldown" : "Peter Campbell Smith", "name" : "18: Peter Campbell Smith", - "y" : 1108 + "y" : 1114 }, { "drilldown" : "Mark Anderson", "name" : "19: Mark Anderson", - "y" : 1074 + "y" : 1078 }, { "drilldown" : "Thomas Kohler", "name" : "20: Thomas Kohler", - "y" : 986 + "y" : 994 }, { "drilldown" : "Feng Chang", "name" : "21: Feng Chang", - "y" : 922 + "y" : 926 }, { "drilldown" : "Cheok-Yin Fung", @@ -917,7 +917,7 @@ { "drilldown" : "Ali Moradi", "name" : "25: Ali Moradi", - "y" : 842 + "y" : 848 }, { "drilldown" : "Duncan C. White", @@ -932,12 +932,12 @@ { "drilldown" : "Niels van Dijke", "name" : "28: Niels van Dijke", - "y" : 776 + "y" : 780 }, { "drilldown" : "Robbie Hatley", "name" : "29: Robbie Hatley", - "y" : 772 + "y" : 778 }, { "drilldown" : "Packy Anderson", @@ -972,7 +972,7 @@ { "drilldown" : "David Ferrone", "name" : "36: David Ferrone", - "y" : 616 + "y" : 620 }, { "drilldown" : "Matthias Muth", @@ -1002,7 +1002,7 @@ { "drilldown" : "Peter Meszaros", "name" : "42: Peter Meszaros", - "y" : 500 + "y" : 504 }, { "drilldown" : "Stephen G. Lynn", @@ -1049,7 +1049,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2025-06-09 01:01:46 GMT" + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "Team Leaders (TOP 50)" diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index 599b937b96..58ae99ed04 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -24,11 +24,11 @@ 2, 38, 93, - 229, + 231, 44, 13, 8, - 48, + 50, 22, 8, 1, @@ -68,7 +68,7 @@ 0, 0, 0, - 97, + 99, 0, 0, 2, @@ -94,7 +94,7 @@ 0, 0, 13, - 79, + 80, 0, 32, 4, @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-06-09 01:01:46 GMT" + "text" : "[Champions: 30] Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge [2019 - 2025]" diff --git a/stats/pwc-summary-121-150.json b/stats/pwc-summary-121-150.json index d0c57f2737..996db6ba24 100644 --- a/stats/pwc-summary-121-150.json +++ b/stats/pwc-summary-121-150.json @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-06-09 01:01:46 GMT" + "text" : "[Champions: 30] Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge [2019 - 2025]" diff --git a/stats/pwc-summary-151-180.json b/stats/pwc-summary-151-180.json index b66bee40b0..df040e8344 100644 --- a/stats/pwc-summary-151-180.json +++ b/stats/pwc-summary-151-180.json @@ -68,7 +68,7 @@ 0, 0, 0, - 511, + 513, 1, 49, 91, @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-06-09 01:01:46 GMT" + "text" : "[Champions: 30] Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge [2019 - 2025]" diff --git a/stats/pwc-summary-181-210.json b/stats/pwc-summary-181-210.json index 75b14b337d..b25d0d848f 100644 --- a/stats/pwc-summary-181-210.json +++ b/stats/pwc-summary-181-210.json @@ -34,7 +34,7 @@ 88, 8, 1, - 388, + 390, 2, 0, 52, @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-06-09 01:01:46 GMT" + "text" : "[Champions: 30] Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge [2019 - 2025]" diff --git a/stats/pwc-summary-211-240.json b/stats/pwc-summary-211-240.json index c0cc67b11c..3e675ea938 100644 --- a/stats/pwc-summary-211-240.json +++ b/stats/pwc-summary-211-240.json @@ -23,9 +23,9 @@ 4, 180, 0, - 374, + 376, 1, - 250, + 252, 10, 11, 7, @@ -93,7 +93,7 @@ 0, 0, 0, - 180, + 181, 0, 0, 2, @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-06-09 01:01:46 GMT" + "text" : "[Champions: 30] Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge [2019 - 2025]" diff --git a/stats/pwc-summary-241-270.json b/stats/pwc-summary-241-270.json index 5712e64c82..4fea03e744 100644 --- a/stats/pwc-summary-241-270.json +++ b/stats/pwc-summary-241-270.json @@ -25,7 +25,7 @@ 0, 0, 9, - 266, + 268, 156, 2, 0, @@ -95,7 +95,7 @@ 13, 0, 0, - 120, + 121, 0, 0, 7, @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-06-09 01:01:46 GMT" + "text" : "[Champions: 30] Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge [2019 - 2025]" diff --git a/stats/pwc-summary-271-300.json b/stats/pwc-summary-271-300.json index 09813e8d05..46f0ece2c8 100644 --- a/stats/pwc-summary-271-300.json +++ b/stats/pwc-summary-271-300.json @@ -35,7 +35,7 @@ 6, 4, 2, - 250, + 252, 1, 10, 14, @@ -105,7 +105,7 @@ 0, 0, 0, - 243, + 245, 0, 3, 0, @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-06-09 01:01:46 GMT" + "text" : "[Champions: 30] Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge [2019 - 2025]" diff --git a/stats/pwc-summary-301-330.json b/stats/pwc-summary-301-330.json index 90ada138cf..9f715d804f 100644 --- a/stats/pwc-summary-301-330.json +++ b/stats/pwc-summary-301-330.json @@ -24,7 +24,7 @@ 28, 0, 4, - 466, + 468, 81, 312, 1, @@ -82,7 +82,7 @@ 0, 0, 0, - 233, + 234, 17, 2, 0, @@ -97,7 +97,7 @@ } ], "subtitle" : { - "text" : "[Champions: 24] Last updated at 2025-06-09 01:01:46 GMT" + "text" : "[Champions: 24] Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge [2019 - 2025]" diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index 4935e8eba3..0f4bd680dc 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -69,8 +69,8 @@ 9, 0, 0, - 2, 17, + 2, 0, 194, 0, @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-06-09 01:01:46 GMT" + "text" : "[Champions: 30] Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge [2019 - 2025]" diff --git a/stats/pwc-summary-61-90.json b/stats/pwc-summary-61-90.json index 4b3ead8c33..4bdd1271e5 100644 --- a/stats/pwc-summary-61-90.json +++ b/stats/pwc-summary-61-90.json @@ -33,7 +33,7 @@ 0, 82, 396, - 637, + 639, 2, 8, 22, @@ -71,7 +71,7 @@ 0, 0, 0, - 439, + 441, 4, 237, 36 @@ -92,7 +92,7 @@ 0, 2, 195, - 7, + 9, 0, 0, 0, @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-06-09 01:01:46 GMT" + "text" : "[Champions: 30] Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge [2019 - 2025]" diff --git a/stats/pwc-summary-91-120.json b/stats/pwc-summary-91-120.json index 0b8e692f7e..fa569f64f0 100644 --- a/stats/pwc-summary-91-120.json +++ b/stats/pwc-summary-91-120.json @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-06-09 01:01:46 GMT" + "text" : "[Champions: 30] Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge [2019 - 2025]" diff --git a/stats/pwc-summary.json b/stats/pwc-summary.json index c36acc098f..80f4276789 100644 --- a/stats/pwc-summary.json +++ b/stats/pwc-summary.json @@ -24,11 +24,11 @@ 1, 21, 48, - 115, + 116, 26, 9, 4, - 24, + 25, 11, 4, 1, @@ -93,7 +93,7 @@ 0, 43, 202, - 319, + 320, 1, 4, 12, @@ -214,7 +214,7 @@ 45, 4, 1, - 201, + 202, 1, 0, 26, @@ -233,9 +233,9 @@ 2, 102, 0, - 190, + 191, 1, - 125, + 126, 5, 10, 4, @@ -265,7 +265,7 @@ 0, 0, 6, - 136, + 137, 98, 1, 0, @@ -305,7 +305,7 @@ 3, 2, 1, - 127, + 128, 1, 6, 7, @@ -324,7 +324,7 @@ 19, 0, 2, - 233, + 234, 41, 166, 1, @@ -362,7 +362,7 @@ 0, 0, 0, - 57, + 58, 0, 0, 1, @@ -425,7 +425,7 @@ 0, 0, 0, - 223, + 224, 2, 119, 18, @@ -512,7 +512,7 @@ 0, 0, 0, - 268, + 269, 1, 27, 48, @@ -682,7 +682,7 @@ 0, 0, 7, - 79, + 80, 0, 23, 4, @@ -740,7 +740,7 @@ 0, 2, 186, - 6, + 7, 0, 0, 0, @@ -891,7 +891,7 @@ 0, 0, 0, - 178, + 179, 0, 0, 2, @@ -923,7 +923,7 @@ 13, 0, 0, - 120, + 121, 0, 0, 4, @@ -963,7 +963,7 @@ 0, 0, 0, - 124, + 125, 0, 3, 0, @@ -982,7 +982,7 @@ 0, 0, 0, - 233, + 234, 17, 1, 0, @@ -997,7 +997,7 @@ } ], "subtitle" : { - "text" : "[Champions: 324] Last updated at 2025-06-09 01:01:46 GMT" + "text" : "[Champions: 324] Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge [2019 - 2025]" diff --git a/stats/pwc-yearly-language-summary.json b/stats/pwc-yearly-language-summary.json index df01e9c232..e2c75bfa29 100644 --- a/stats/pwc-yearly-language-summary.json +++ b/stats/pwc-yearly-language-summary.json @@ -8,15 +8,15 @@ "data" : [ [ "Perl", - 995 + 1013 ], [ "Raku", - 469 + 475 ], [ "Blog", - 384 + 392 ] ], "id" : "2025", @@ -151,7 +151,7 @@ { "drilldown" : "2025", "name" : "2025", - "y" : 1848 + "y" : 1880 }, { "drilldown" : "2024", @@ -188,7 +188,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-06-09 01:01:46 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-06-10 08:29:54 GMT" }, "title" : { "text" : "The Weekly Challenge Language" -- cgit