From f8b0c995453b3f8f084ce86ed86a1e92cfebfe8e Mon Sep 17 00:00:00 2001 From: Mohammad Sajid Anwar Date: Mon, 3 Nov 2025 16:28:44 +0000 Subject: - Added solutions by Mark Anderson. - Added solutions by E. Choroba. - Added solutions by Lubos Kolouch. - Added solutions by Eric Cheung. - Added solutions by Andreas Mahnke. - Added solutions by Mohammad Sajid Anwar. --- challenge-346/eric-cheung/python/ch-1.py | 24 ++ challenge-346/eric-cheung/python/ch-2.py | 48 +++ challenge-346/mohammad-anwar/perl/ch-1.pl | 41 ++ challenge-346/mohammad-anwar/python/ch-1.py | 36 ++ challenge-346/mohammad-anwar/raku/ch-1.raku | 39 ++ stats/pwc-challenge-331.json | 17 +- stats/pwc-challenge-345.json | 574 ++++++++++++++++++++++++++++ stats/pwc-current.json | 453 +--------------------- 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 | 29 +- stats/pwc-language-breakdown-summary.json | 6 +- stats/pwc-leaders.json | 20 +- stats/pwc-summary-1-30.json | 4 +- stats/pwc-summary-121-150.json | 2 +- stats/pwc-summary-151-180.json | 6 +- stats/pwc-summary-181-210.json | 6 +- stats/pwc-summary-211-240.json | 2 +- stats/pwc-summary-241-270.json | 2 +- stats/pwc-summary-271-300.json | 2 +- stats/pwc-summary-301-330.json | 2 +- stats/pwc-summary-31-60.json | 4 +- stats/pwc-summary-61-90.json | 4 +- stats/pwc-summary-91-120.json | 2 +- stats/pwc-summary.json | 16 +- stats/pwc-yearly-language-summary.json | 8 +- 30 files changed, 856 insertions(+), 503 deletions(-) create mode 100755 challenge-346/eric-cheung/python/ch-1.py create mode 100755 challenge-346/eric-cheung/python/ch-2.py create mode 100644 challenge-346/mohammad-anwar/perl/ch-1.pl create mode 100644 challenge-346/mohammad-anwar/python/ch-1.py create mode 100644 challenge-346/mohammad-anwar/raku/ch-1.raku create mode 100644 stats/pwc-challenge-345.json diff --git a/challenge-346/eric-cheung/python/ch-1.py b/challenge-346/eric-cheung/python/ch-1.py new file mode 100755 index 0000000000..4ed5e07a06 --- /dev/null +++ b/challenge-346/eric-cheung/python/ch-1.py @@ -0,0 +1,24 @@ + +## strInput = "(()())" ## Example 1 +## strInput = ")()())" ## Example 2 +## strInput = "((()))()(((()" ## Example 3 +## strInput = "))))((()(" ## Example 4 +strInput = "()(()" ## Example 5 + +strTemp = strInput +nLastPosFind = len(strInput) +arrPos = [] +nCount = 0 + +while (nPos := strTemp.find("()")) > -1: + if nPos > nLastPosFind: + arrPos.append(nCount) + nCount = 0 + + strTemp = strTemp[:nPos] + strTemp[nPos + 2:] + nLastPosFind = nPos + nCount = nCount + 2 + +arrPos.append(nCount) + +print (max(arrPos)) diff --git a/challenge-346/eric-cheung/python/ch-2.py b/challenge-346/eric-cheung/python/ch-2.py new file mode 100755 index 0000000000..9b606a0e23 --- /dev/null +++ b/challenge-346/eric-cheung/python/ch-2.py @@ -0,0 +1,48 @@ + +from itertools import product +from re import findall + +## Example 1 +## strInput = "123" +## nTarget = 6 + +## Example 2 +## strInput = "105" +## nTarget = 5 + +## Example 3 +## strInput = "232" +## nTarget = 8 + +## Example 4 +## strInput = "1234" +## nTarget = 10 + +## Example 5 +strInput = "1001" +nTarget = 2 + +arrOutput = [] + +arrChar = ["", "+", "-", "*"] +arrCartChar = [arrChar] * (len(strInput) - 1) + +strExpr = "%".join([("" if nIndx == 0 else str(nIndx)) + charLoop for nIndx, charLoop in enumerate(list(strInput))]) + +arrAllList = list(product(*arrCartChar)) +arrToRep = ["%" + str(nIndx) for nIndx in range(1, len(strInput))] + +for arrLoop in arrAllList: + strTemp = strExpr + for strToRep, strNuStr in zip(arrToRep, arrLoop): + strTemp = strTemp.replace(strToRep, strNuStr) + + if findall("0[0-9]", strTemp): + continue + + if eval(strTemp) != nTarget: + continue + + arrOutput.append(strTemp) + +print (arrOutput) diff --git a/challenge-346/mohammad-anwar/perl/ch-1.pl b/challenge-346/mohammad-anwar/perl/ch-1.pl new file mode 100644 index 0000000000..0d5848c681 --- /dev/null +++ b/challenge-346/mohammad-anwar/perl/ch-1.pl @@ -0,0 +1,41 @@ +#!/usr/bin/env perl + +use strict; +use warnings; +use Test::More; + +my @examples = ( + { str => '(()())', exp => 6 }, + { str => ')()())', exp => 4 }, + { str => '((()))()(((()', exp => 8 }, + { str => '))))((()(', exp => 2 }, + { str => '()(()', exp => 2 }, +); + +foreach (@examples) { + is(valid_longest_parenthesis($_->{str}), $_->{exp}); +} + +done_testing; + +sub valid_longest_parenthesis { + my $s = shift; + my @stack = (-1); + my $max_len = 0; + + for my $i (0 .. length($s) - 1) { + if (substr($s, $i, 1) eq "(") { + push @stack, $i; + } else { + pop @stack; + if (@stack) { + $max_len = $max_len > ($i - $stack[-1]) + ? $max_len : ($i - $stack[-1]); + } else { + push @stack, $i; # New starting point + } + } + } + + return $max_len; +} diff --git a/challenge-346/mohammad-anwar/python/ch-1.py b/challenge-346/mohammad-anwar/python/ch-1.py new file mode 100644 index 0000000000..9bdbf3be9e --- /dev/null +++ b/challenge-346/mohammad-anwar/python/ch-1.py @@ -0,0 +1,36 @@ +#!/usr/bin/env python3 + +def valid_longest_parenthesis(s): + stack = [-1] + max_len = 0 + + for i in range(len(s)): + if s[i] == "(": + stack.append(i) + else: + stack.pop() + if stack: + max_len = max(max_len, i - stack[-1]) + else: + stack.append(i) # New starting point + + return max_len + +def test_examples(): + examples = [ + {"str": "(()())", "exp": 6}, + {"str": ")()())", "exp": 4}, + {"str": "((()))()(((()", "exp": 8}, + {"str": "))))((()(", "exp": 2}, + {"str": "()(()", "exp": 2}, + ] + + for example in examples: + result = valid_longest_parenthesis(example["str"]) + expected = example["exp"] + assert result == expected, f"Failed for '{example['str']}': expected {expected}, got {result}" + print(f"✓ '{example['str']}' -> {result}") + +if __name__ == "__main__": + test_examples() + print("All tests passed!") diff --git a/challenge-346/mohammad-anwar/raku/ch-1.raku b/challenge-346/mohammad-anwar/raku/ch-1.raku new file mode 100644 index 0000000000..31183d0c27 --- /dev/null +++ b/challenge-346/mohammad-anwar/raku/ch-1.raku @@ -0,0 +1,39 @@ +#!/usr/bin/env raku + +use Test; + +my @examples = ( + { str => '(()())', exp => 6 }, + { str => ')()())', exp => 4 }, + { str => '((()))()(((()', exp => 8 }, + { str => '))))((()(', exp => 2 }, + { str => '()(()', exp => 2 }, +); + +for @examples -> %example { + is(valid-longest-parenthesis(%example), %example); +} + +done-testing; + +sub valid-longest-parenthesis(Str $s) { + my @stack = (-1); + my $max-len = 0; + + for 0 .. $s.chars - 1 -> $i { + if $s.substr($i, 1) eq "(" { + @stack.push($i); + } else { + @stack.pop(); + if @stack.elems > 0 { + $max-len = $max-len > ($i - @stack[*-1]) + ?? $max-len + !! ($i - @stack[*-1]); + } else { + @stack.push($i); # New starting point + } + } + } + + return $max-len; +} diff --git a/stats/pwc-challenge-331.json b/stats/pwc-challenge-331.json index fd040ad2e2..e7963f2e13 100644 --- a/stats/pwc-challenge-331.json +++ b/stats/pwc-challenge-331.json @@ -188,6 +188,16 @@ "id" : "Kjetil Skotheim", "name" : "Kjetil Skotheim" }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Lubos Kolouch", + "name" : "Lubos Kolouch" + }, { "data" : [ [ @@ -524,6 +534,11 @@ "name" : "Kjetil Skotheim", "y" : 2 }, + { + "drilldown" : "Lubos Kolouch", + "name" : "Lubos Kolouch", + "y" : 2 + }, { "drilldown" : "Luca Ferrari", "name" : "Luca Ferrari", @@ -624,7 +639,7 @@ } ], "subtitle" : { - "text" : "[Champions: 35] Last updated at 2025-07-31 10:32:18 GMT" + "text" : "[Champions: 36] Last updated at 2025-11-03 16:24:29 GMT" }, "title" : { "text" : "The Weekly Challenge - 331" diff --git a/stats/pwc-challenge-345.json b/stats/pwc-challenge-345.json new file mode 100644 index 0000000000..7c29b8f128 --- /dev/null +++ b/stats/pwc-challenge-345.json @@ -0,0 +1,574 @@ +{ + "chart" : { + "type" : "column" + }, + "drilldown" : { + "series" : [ + { + "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", + 1 + ] + ], + "id" : "BarrOff", + "name" : "BarrOff" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "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" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Jorg Sommrey", + "name" : "Jorg Sommrey" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Kjetil Skotheim", + "name" : "Kjetil Skotheim" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Lubos Kolouch", + "name" : "Lubos Kolouch" + }, + { + "data" : [ + [ + "Raku", + 2 + ] + ], + "id" : "Mark Anderson", + "name" : "Mark Anderson" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Matthew Neleigh", + "name" : "Matthew Neleigh" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Matthias Muth", + "name" : "Matthias Muth" + }, + { + "data" : [ + [ + "Perl", + 1 + ], + [ + "Raku", + 1 + ] + ], + "id" : "Mohammad Sajid Anwar", + "name" : "Mohammad Sajid Anwar" + }, + { + "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" : [ + [ + "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" : "Vinod Kumar K", + "name" : "Vinod Kumar K" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "W. Luis Mochan", + "name" : "W. Luis Mochan" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Wanderdoc", + "name" : "Wanderdoc" + } + ] + }, + "legend" : { + "enabled" : 0 + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } + }, + "series" : [ + { + "colorByPoint" : 1, + "data" : [ + { + "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" : 1 + }, + { + "drilldown" : "Bob Lied", + "name" : "Bob Lied", + "y" : 3 + }, + { + "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" : "Jorg Sommrey", + "name" : "Jorg Sommrey", + "y" : 3 + }, + { + "drilldown" : "Kjetil Skotheim", + "name" : "Kjetil Skotheim", + "y" : 2 + }, + { + "drilldown" : "Lubos Kolouch", + "name" : "Lubos Kolouch", + "y" : 2 + }, + { + "drilldown" : "Mark Anderson", + "name" : "Mark Anderson", + "y" : 2 + }, + { + "drilldown" : "Matthew Neleigh", + "name" : "Matthew Neleigh", + "y" : 2 + }, + { + "drilldown" : "Matthias Muth", + "name" : "Matthias Muth", + "y" : 3 + }, + { + "drilldown" : "Mohammad Sajid Anwar", + "name" : "Mohammad Sajid Anwar", + "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" : 3 + }, + { + "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" : "Vinod Kumar K", + "name" : "Vinod Kumar K", + "y" : 3 + }, + { + "drilldown" : "W. Luis Mochan", + "name" : "W. Luis Mochan", + "y" : 3 + }, + { + "drilldown" : "Wanderdoc", + "name" : "Wanderdoc", + "y" : 2 + } + ], + "name" : "The Weekly Challenge - 345" + } + ], + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2025-11-03 16:24:29 GMT" + }, + "title" : { + "text" : "The Weekly Challenge - 345" + }, + "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 e55f2c2439..c41752d639 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -4,20 +4,6 @@ }, "drilldown" : { "series" : [ - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Ali Moradi", - "name" : "Ali Moradi" - }, { "data" : [ [ @@ -28,78 +14,6 @@ "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", - 1 - ] - ], - "id" : "BarrOff", - "name" : "BarrOff" - }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Bob Lied", - "name" : "Bob Lied" - }, - { - "data" : [ - [ - "Perl", - 2 - ] - ], - "id" : "David Ferrone", - "name" : "David Ferrone" - }, { "data" : [ [ @@ -110,58 +24,6 @@ "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" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Jorg Sommrey", - "name" : "Jorg Sommrey" - }, - { - "data" : [ - [ - "Perl", - 2 - ] - ], - "id" : "Kjetil Skotheim", - "name" : "Kjetil Skotheim" - }, { "data" : [ [ @@ -182,30 +44,6 @@ "id" : "Mark Anderson", "name" : "Mark Anderson" }, - { - "data" : [ - [ - "Perl", - 2 - ] - ], - "id" : "Matthew Neleigh", - "name" : "Matthew Neleigh" - }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Matthias Muth", - "name" : "Matthias Muth" - }, { "data" : [ [ @@ -219,166 +57,6 @@ ], "id" : "Mohammad Sajid Anwar", "name" : "Mohammad Sajid Anwar" - }, - { - "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" : [ - [ - "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" : "Vinod Kumar K", - "name" : "Vinod Kumar K" - }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "W. Luis Mochan", - "name" : "W. Luis Mochan" - }, - { - "data" : [ - [ - "Perl", - 2 - ] - ], - "id" : "Wanderdoc", - "name" : "Wanderdoc" } ] }, @@ -398,71 +76,16 @@ { "colorByPoint" : 1, "data" : [ - { - "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" : 1 - }, - { - "drilldown" : "Bob Lied", - "name" : "Bob Lied", - "y" : 3 - }, - { - "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" : "Jorg Sommrey", - "name" : "Jorg Sommrey", - "y" : 3 - }, - { - "drilldown" : "Kjetil Skotheim", - "name" : "Kjetil Skotheim", - "y" : 2 - }, { "drilldown" : "Lubos Kolouch", "name" : "Lubos Kolouch", @@ -473,90 +96,20 @@ "name" : "Mark Anderson", "y" : 2 }, - { - "drilldown" : "Matthew Neleigh", - "name" : "Matthew Neleigh", - "y" : 2 - }, - { - "drilldown" : "Matthias Muth", - "name" : "Matthias Muth", - "y" : 3 - }, { "drilldown" : "Mohammad Sajid Anwar", "name" : "Mohammad Sajid Anwar", "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" : 3 - }, - { - "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" : "Vinod Kumar K", - "name" : "Vinod Kumar K", - "y" : 3 - }, - { - "drilldown" : "W. Luis Mochan", - "name" : "W. Luis Mochan", - "y" : 3 - }, - { - "drilldown" : "Wanderdoc", - "name" : "Wanderdoc", - "y" : 2 } ], - "name" : "The Weekly Challenge - 345" + "name" : "The Weekly Challenge - 346" } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-11-03 01:34:47 GMT" + "text" : "[Champions: 5] Last updated at 2025-11-03 16:27:57 GMT" }, "title" : { - "text" : "The Weekly Challenge - 345" + "text" : "The Weekly Challenge - 346" }, "tooltip" : { "followPointer" : 1, diff --git a/stats/pwc-language-breakdown-2019.json b/stats/pwc-language-breakdown-2019.json index d236a38bd6..4554f674c7 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-11-03 01:34:47 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-03 16:27:57 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2020.json b/stats/pwc-language-breakdown-2020.json index 6f408d3eeb..d99292a6d3 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-11-03 01:34:47 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-03 16:27:57 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2021.json b/stats/pwc-language-breakdown-2021.json index 3685b02868..7c22100058 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-11-03 01:34:47 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-03 16:27:57 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2022.json b/stats/pwc-language-breakdown-2022.json index 1589dd8dfe..6b29ae64ec 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-11-03 01:34:47 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-03 16:27:57 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2023.json b/stats/pwc-language-breakdown-2023.json index 1d431f30e9..0e0d7c8997 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-11-03 01:34:47 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-03 16:27:57 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2024.json b/stats/pwc-language-breakdown-2024.json index 83738d479a..c454f5268b 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-11-03 01:34:47 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-03 16:27:57 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2025.json b/stats/pwc-language-breakdown-2025.json index c690ba62a5..79f27b2ebc 100644 --- a/stats/pwc-language-breakdown-2025.json +++ b/stats/pwc-language-breakdown-2025.json @@ -4,6 +4,24 @@ }, "drilldown" : { "series" : [ + { + "data" : [ + [ + "Perl", + 7 + ], + [ + "Raku", + 3 + ], + [ + "Blog", + 0 + ] + ], + "id" : "346", + "name" : "346" + }, { "data" : [ [ @@ -260,7 +278,7 @@ "data" : [ [ "Perl", - 52 + 54 ], [ "Raku", @@ -796,6 +814,11 @@ { "colorByPoint" : "true", "data" : [ + { + "drilldown" : "346", + "name" : "346", + "y" : 10 + }, { "drilldown" : "345", "name" : "345", @@ -869,7 +892,7 @@ { "drilldown" : "331", "name" : "331", - "y" : 102 + "y" : 104 }, { "drilldown" : "330", @@ -1016,7 +1039,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-03 01:34:47 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-03 16:27:57 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index d3ebb4c9ca..1d8d23b2fd 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -10,11 +10,11 @@ "data" : [ [ "Perl", - 17793 + 17802 ], [ "Raku", - 9866 + 9869 ], [ "Blog", @@ -37,7 +37,7 @@ } ], "subtitle" : { - "text" : "Last updated at 2025-11-03 01:34:47 GMT" + "text" : "Last updated at 2025-11-03 16:27:57 GMT" }, "title" : { "text" : "The Weekly Challenge Contributions [2019 - 2025]" diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 1a799ca218..c3870a6a45 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -194,7 +194,7 @@ "data" : [ [ "Perl", - 679 + 681 ], [ "Blog", @@ -226,7 +226,7 @@ "data" : [ [ "Perl", - 587 + 591 ], [ "Raku", @@ -304,7 +304,7 @@ ], [ "Raku", - 553 + 555 ], [ "Blog", @@ -480,11 +480,11 @@ "data" : [ [ "Perl", - 178 + 179 ], [ "Raku", - 111 + 112 ], [ "Blog", @@ -852,7 +852,7 @@ { "drilldown" : "E. Choroba", "name" : "12: E. Choroba", - "y" : 1472 + "y" : 1476 }, { "drilldown" : "Adam Russell", @@ -862,7 +862,7 @@ { "drilldown" : "Lubos Kolouch", "name" : "14: Lubos Kolouch", - "y" : 1344 + "y" : 1352 }, { "drilldown" : "Colin Crain", @@ -887,7 +887,7 @@ { "drilldown" : "Mark Anderson", "name" : "19: Mark Anderson", - "y" : 1158 + "y" : 1162 }, { "drilldown" : "Thomas Kohler", @@ -947,7 +947,7 @@ { "drilldown" : "Mohammad Sajid Anwar", "name" : "31: Mohammad Sajid Anwar", - "y" : 740 + "y" : 744 }, { "drilldown" : "Robert Ransbottom", @@ -1049,7 +1049,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2025-11-03 01:34:47 GMT" + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2025-11-03 16:27:57 GMT" }, "title" : { "text" : "Team Leaders (TOP 50)" diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index 5129889d64..8f82a99294 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -28,7 +28,7 @@ 44, 13, 8, - 90, + 92, 22, 8, 1, @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-11-03 01:34:47 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-03 16:27:57 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 019d012c89..81d7a41ecc 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-11-03 01:34:47 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-03 16:27:57 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 6c0b72045c..bbe81fffce 100644 --- a/stats/pwc-summary-151-180.json +++ b/stats/pwc-summary-151-180.json @@ -27,7 +27,7 @@ 17, 2, 0, - 587, + 591, 0, 0, 0, @@ -71,7 +71,7 @@ 0, 0, 0, - 553, + 555, 1, 49, 91 @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-11-03 01:34:47 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-03 16:27:57 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 e9019d9e70..c656134aa6 100644 --- a/stats/pwc-summary-181-210.json +++ b/stats/pwc-summary-181-210.json @@ -28,7 +28,7 @@ 0, 0, 1, - 178, + 179, 0, 0, 40, @@ -63,7 +63,7 @@ 2, 0, 0, - 111, + 112, 1, 10, 40, @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-11-03 01:34:47 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-03 16:27:57 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 91f45ab2af..84a6fd78d5 100644 --- a/stats/pwc-summary-211-240.json +++ b/stats/pwc-summary-211-240.json @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-11-03 01:34:47 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-03 16:27:57 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 4f8bef210f..fe51713734 100644 --- a/stats/pwc-summary-241-270.json +++ b/stats/pwc-summary-241-270.json @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-11-03 01:34:47 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-03 16:27:57 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 da08933289..40970a4a32 100644 --- a/stats/pwc-summary-271-300.json +++ b/stats/pwc-summary-271-300.json @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-11-03 01:34:47 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-03 16:27:57 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 85e458b9df..9a4881c072 100644 --- a/stats/pwc-summary-301-330.json +++ b/stats/pwc-summary-301-330.json @@ -109,7 +109,7 @@ } ], "subtitle" : { - "text" : "[Champions: 28] Last updated at 2025-11-03 01:34:47 GMT" + "text" : "[Champions: 28] Last updated at 2025-11-03 16:27:57 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 2f7a68478b..581e34c08a 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-11-03 01:34:47 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-03 16:27:57 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 f9a9d1331d..1416a49551 100644 --- a/stats/pwc-summary-61-90.json +++ b/stats/pwc-summary-61-90.json @@ -33,7 +33,7 @@ 0, 82, 396, - 679, + 681, 2, 5, 8, @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-11-03 01:34:47 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-03 16:27:57 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 14eb8d47bb..2d53f986ba 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-11-03 01:34:47 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-03 16:27:57 GMT" }, "title" : { "text" : "The Weekly Challenge [2019 - 2025]" diff --git a/stats/pwc-summary.json b/stats/pwc-summary.json index 2c46732d46..dbe0bfd6c7 100644 --- a/stats/pwc-summary.json +++ b/stats/pwc-summary.json @@ -28,7 +28,7 @@ 26, 9, 4, - 45, + 46, 11, 4, 1, @@ -93,7 +93,7 @@ 0, 43, 202, - 340, + 341, 1, 3, 4, @@ -177,7 +177,7 @@ 16, 1, 0, - 301, + 303, 0, 0, 0, @@ -208,7 +208,7 @@ 0, 0, 1, - 112, + 113, 0, 0, 20, @@ -397,8 +397,8 @@ 6, 0, 0, - 9, 1, + 9, 0, 104, 0, @@ -519,7 +519,7 @@ 0, 0, 0, - 289, + 290, 1, 27, 48, @@ -541,7 +541,7 @@ 1, 0, 0, - 70, + 71, 1, 5, 20, @@ -1009,7 +1009,7 @@ } ], "subtitle" : { - "text" : "[Champions: 328] Last updated at 2025-11-03 01:34:47 GMT" + "text" : "[Champions: 328] Last updated at 2025-11-03 16:27:57 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 558507a91d..adf820d832 100644 --- a/stats/pwc-yearly-language-summary.json +++ b/stats/pwc-yearly-language-summary.json @@ -8,11 +8,11 @@ "data" : [ [ "Perl", - 2016 + 2025 ], [ "Raku", - 990 + 993 ], [ "Blog", @@ -151,7 +151,7 @@ { "drilldown" : "2025", "name" : "2025", - "y" : 3792 + "y" : 3804 }, { "drilldown" : "2024", @@ -188,7 +188,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-03 01:34:47 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-03 16:27:57 GMT" }, "title" : { "text" : "The Weekly Challenge Language" -- cgit