From 7f402e9d0ada4506d06824aeb010ef78cef2e7c2 Mon Sep 17 00:00:00 2001 From: Mohammad Sajid Anwar Date: Tue, 14 Oct 2025 10:16:20 +0100 Subject: - Added solutions by Niels van Dijke. --- challenge-343/perlboy1967/perl/ch-1.pl | 44 +++++++++++++++++ challenge-343/perlboy1967/perl/ch-2.pl | 79 +++++++++++++++++++++++++++++++ challenge-343/perlboy1967/perl/ch1.pl | 44 ----------------- challenge-343/perlboy1967/perl/ch2.pl | 79 ------------------------------- stats/pwc-current.json | 17 ++++++- 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 | 6 +-- stats/pwc-language-breakdown-summary.json | 4 +- stats/pwc-leaders.json | 6 +-- stats/pwc-summary-1-30.json | 2 +- stats/pwc-summary-121-150.json | 2 +- stats/pwc-summary-151-180.json | 2 +- stats/pwc-summary-181-210.json | 4 +- 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 | 2 +- stats/pwc-summary-61-90.json | 2 +- stats/pwc-summary-91-120.json | 2 +- stats/pwc-summary.json | 6 +-- stats/pwc-yearly-language-summary.json | 6 +-- 27 files changed, 171 insertions(+), 156 deletions(-) create mode 100755 challenge-343/perlboy1967/perl/ch-1.pl create mode 100755 challenge-343/perlboy1967/perl/ch-2.pl delete mode 100755 challenge-343/perlboy1967/perl/ch1.pl delete mode 100755 challenge-343/perlboy1967/perl/ch2.pl diff --git a/challenge-343/perlboy1967/perl/ch-1.pl b/challenge-343/perlboy1967/perl/ch-1.pl new file mode 100755 index 0000000000..39c495e03b --- /dev/null +++ b/challenge-343/perlboy1967/perl/ch-1.pl @@ -0,0 +1,44 @@ +#!/bin/perl + +=pod + +L + +Author: Niels 'PerlBoy' van Dijke + +Task 1: Zero Friend +Submitted by: Mohammad Sajid Anwar + +You are given a list of numbers. + +Find the number that is closest to zero and return its distance to zero. + +=cut + +use Test2::V0 qw(-no_srand); +use exact 'v5.32', -signatures; + +use List::Util qw(min); +use List::MoreUtils qw(any); + +sub zeroFriendMap (@ints) { + min map { abs($_) } @ints; +} + +sub zeroFriend (@ints) { + my $m; + any { $m = min($m // (),abs($_)); $_ == 0 } @ints; + return $m; +} + +is(zeroFriend(4,2,-1,3,-2),1,'Example 1'); +is(zeroFriend(-5,5,-3,3,-1,1),1,'Example 2'); +is(zeroFriend(7,-3,0,2,-8),0,'Example 3'); +is(zeroFriend(-2,-5,-1,-8),1,'Example 4'); +is(zeroFriend(-2,2,-4,4,-1,1),1,'Example 5'); + +is(zeroFriend((0) x 100_000),0,'Own example 1'); +is(zeroFriend(1 .. 1000,0,1 .. 1000),0,'Own example 2'); +is(zeroFriend((1 .. 2000,0)),0,'Own example 3'); + +done_testing; diff --git a/challenge-343/perlboy1967/perl/ch-2.pl b/challenge-343/perlboy1967/perl/ch-2.pl new file mode 100755 index 0000000000..2f049d4ce7 --- /dev/null +++ b/challenge-343/perlboy1967/perl/ch-2.pl @@ -0,0 +1,79 @@ +#!/bin/perl + +=pod + +L + +Author: Niels 'PerlBoy' van Dijke + +Task 2: Champion Team +Submitted by: Mohammad Sajid Anwar + +You have n teams in a tournament. A matrix grid tells you which team is stronger +between any two teams: + +|| If grid[i][j] == 1, then team i is stronger than team j +|| If grid[i][j] == 0, then team j is stronger than team i + +Find the champion team - the one with most wins, or if there is no single such +team, the strongest of the teams with most wins. (You may assume that there is a +definite answer.) + +=cut + +use Test2::V0 qw(-no_srand); +use exact 'v5.32', -signatures; + +use List::Util qw(sum max); + +sub championTeam (@grid) { + my %w; + + # Process wins against teams + for (0 .. $#grid) { + push(@{$w{sum(@{$grid[$_]})}},$_); + } + + # Get max scoring team(s) + my @w = @{$w{max(keys(%w))}}; + + # One winning team? Return it! + return $w[0] if scalar @w == 1; + + # Multiple best scoring teams, find the best one + my %uw = map { (sum(@{$grid[$_]}[@w]),$_) } @w; + return $uw{max keys %uw}; +} + +is(championTeam([0,1,1], + [0,0,1], + [0,0,0]), + 0,q{Example 1}); +is(championTeam([0,1,0,0], + [0,0,0,0], + [1,1,0,0], + [1,1,1,0]), + 3,q{Example 2}); +is(championTeam([0,1,0,1], + [0,0,1,1], + [1,0,0,0], + [0,0,1,0]), + 0,q{Example 3}); +is(championTeam([0,1,1], + [0,0,0], + [0,1,0]), + 0,q{Example 4}); +is(championTeam([0,0,0,0,0], + [1,0,0,0,0], + [1,1,0,1,1], + [1,1,0,0,0], + [1,1,0,1,0]), + 2,q{Example 5}); +is(championTeam([0,1,1,1,0,0], + [0,0,1,0,1,1], + [0,0,0,0,1,1], + [0,1,1,0,1,1], + [1,0,0,0,0,0], + [1,0,0,0,1,0]), + 3,q{Matthias Muth's test}); +done_testing; diff --git a/challenge-343/perlboy1967/perl/ch1.pl b/challenge-343/perlboy1967/perl/ch1.pl deleted file mode 100755 index 39c495e03b..0000000000 --- a/challenge-343/perlboy1967/perl/ch1.pl +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/perl - -=pod - -L - -Author: Niels 'PerlBoy' van Dijke - -Task 1: Zero Friend -Submitted by: Mohammad Sajid Anwar - -You are given a list of numbers. - -Find the number that is closest to zero and return its distance to zero. - -=cut - -use Test2::V0 qw(-no_srand); -use exact 'v5.32', -signatures; - -use List::Util qw(min); -use List::MoreUtils qw(any); - -sub zeroFriendMap (@ints) { - min map { abs($_) } @ints; -} - -sub zeroFriend (@ints) { - my $m; - any { $m = min($m // (),abs($_)); $_ == 0 } @ints; - return $m; -} - -is(zeroFriend(4,2,-1,3,-2),1,'Example 1'); -is(zeroFriend(-5,5,-3,3,-1,1),1,'Example 2'); -is(zeroFriend(7,-3,0,2,-8),0,'Example 3'); -is(zeroFriend(-2,-5,-1,-8),1,'Example 4'); -is(zeroFriend(-2,2,-4,4,-1,1),1,'Example 5'); - -is(zeroFriend((0) x 100_000),0,'Own example 1'); -is(zeroFriend(1 .. 1000,0,1 .. 1000),0,'Own example 2'); -is(zeroFriend((1 .. 2000,0)),0,'Own example 3'); - -done_testing; diff --git a/challenge-343/perlboy1967/perl/ch2.pl b/challenge-343/perlboy1967/perl/ch2.pl deleted file mode 100755 index 2f049d4ce7..0000000000 --- a/challenge-343/perlboy1967/perl/ch2.pl +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/perl - -=pod - -L - -Author: Niels 'PerlBoy' van Dijke - -Task 2: Champion Team -Submitted by: Mohammad Sajid Anwar - -You have n teams in a tournament. A matrix grid tells you which team is stronger -between any two teams: - -|| If grid[i][j] == 1, then team i is stronger than team j -|| If grid[i][j] == 0, then team j is stronger than team i - -Find the champion team - the one with most wins, or if there is no single such -team, the strongest of the teams with most wins. (You may assume that there is a -definite answer.) - -=cut - -use Test2::V0 qw(-no_srand); -use exact 'v5.32', -signatures; - -use List::Util qw(sum max); - -sub championTeam (@grid) { - my %w; - - # Process wins against teams - for (0 .. $#grid) { - push(@{$w{sum(@{$grid[$_]})}},$_); - } - - # Get max scoring team(s) - my @w = @{$w{max(keys(%w))}}; - - # One winning team? Return it! - return $w[0] if scalar @w == 1; - - # Multiple best scoring teams, find the best one - my %uw = map { (sum(@{$grid[$_]}[@w]),$_) } @w; - return $uw{max keys %uw}; -} - -is(championTeam([0,1,1], - [0,0,1], - [0,0,0]), - 0,q{Example 1}); -is(championTeam([0,1,0,0], - [0,0,0,0], - [1,1,0,0], - [1,1,1,0]), - 3,q{Example 2}); -is(championTeam([0,1,0,1], - [0,0,1,1], - [1,0,0,0], - [0,0,1,0]), - 0,q{Example 3}); -is(championTeam([0,1,1], - [0,0,0], - [0,1,0]), - 0,q{Example 4}); -is(championTeam([0,0,0,0,0], - [1,0,0,0,0], - [1,1,0,1,1], - [1,1,0,0,0], - [1,1,0,1,0]), - 2,q{Example 5}); -is(championTeam([0,1,1,1,0,0], - [0,0,1,0,1,1], - [0,0,0,0,1,1], - [0,1,1,0,1,1], - [1,0,0,0,0,0], - [1,0,0,0,1,0]), - 3,q{Matthias Muth's test}); -done_testing; diff --git a/stats/pwc-current.json b/stats/pwc-current.json index b60d715366..2d79786669 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -96,6 +96,16 @@ "id" : "Mohammad Sajid Anwar", "name" : "Mohammad Sajid Anwar" }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Niels van Dijke", + "name" : "Niels van Dijke" + }, { "data" : [ [ @@ -200,6 +210,11 @@ "name" : "Mohammad Sajid Anwar", "y" : 2 }, + { + "drilldown" : "Niels van Dijke", + "name" : "Niels van Dijke", + "y" : 2 + }, { "drilldown" : "Packy Anderson", "name" : "Packy Anderson", @@ -220,7 +235,7 @@ } ], "subtitle" : { - "text" : "[Champions: 11] Last updated at 2025-10-14 09:00:54 GMT" + "text" : "[Champions: 12] Last updated at 2025-10-14 09:16:16 GMT" }, "title" : { "text" : "The Weekly Challenge - 343" diff --git a/stats/pwc-language-breakdown-2019.json b/stats/pwc-language-breakdown-2019.json index 97d2ad7235..04afa289db 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-10-14 09:00:54 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-10-14 09:16:16 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2020.json b/stats/pwc-language-breakdown-2020.json index db05720640..17c238ed0a 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-10-14 09:00:54 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-10-14 09:16:16 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2021.json b/stats/pwc-language-breakdown-2021.json index e6f9c8f646..3469afa74d 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-10-14 09:00:54 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-10-14 09:16:16 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2022.json b/stats/pwc-language-breakdown-2022.json index d99ba15986..dd6fd9fd6b 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-10-14 09:00:54 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-10-14 09:16:16 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2023.json b/stats/pwc-language-breakdown-2023.json index 29cc7d4ab7..7bbba9e0ef 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-10-14 09:00:54 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-10-14 09:16:16 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2024.json b/stats/pwc-language-breakdown-2024.json index d6a6f0b301..bcef9822fe 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-10-14 09:00:54 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-10-14 09:16:16 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-2025.json b/stats/pwc-language-breakdown-2025.json index 3acee9283a..ae2686c1b4 100644 --- a/stats/pwc-language-breakdown-2025.json +++ b/stats/pwc-language-breakdown-2025.json @@ -8,7 +8,7 @@ "data" : [ [ "Perl", - 19 + 21 ], [ "Raku", @@ -763,7 +763,7 @@ { "drilldown" : "343", "name" : "343", - "y" : 30 + "y" : 32 }, { "drilldown" : "342", @@ -970,7 +970,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-10-14 09:00:54 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-10-14 09:16:16 GMT" }, "title" : { "text" : "The Weekly Challenge Language" diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 1a66c3b339..8b736738c4 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -10,7 +10,7 @@ "data" : [ [ "Perl", - 17664 + 17666 ], [ "Raku", @@ -37,7 +37,7 @@ } ], "subtitle" : { - "text" : "Last updated at 2025-10-14 09:00:54 GMT" + "text" : "Last updated at 2025-10-14 09:16:16 GMT" }, "title" : { "text" : "The Weekly Challenge Contributions [2019 - 2025]" diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 04819fe064..7913e15530 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -456,7 +456,7 @@ "data" : [ [ "Perl", - 424 + 426 ] ], "id" : "Niels van Dijke", @@ -937,7 +937,7 @@ { "drilldown" : "Niels van Dijke", "name" : "29: Niels van Dijke", - "y" : 848 + "y" : 852 }, { "drilldown" : "Duncan C. White", @@ -1049,7 +1049,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2025-10-14 09:00:54 GMT" + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2025-10-14 09:16:16 GMT" }, "title" : { "text" : "Team Leaders (TOP 50)" diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index a2ac2c48e1..acc56dbe65 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-10-14 09:00:54 GMT" + "text" : "[Champions: 30] Last updated at 2025-10-14 09:16:16 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 6e2e56d984..358c2a7287 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-10-14 09:00:54 GMT" + "text" : "[Champions: 30] Last updated at 2025-10-14 09:16:16 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 3f39b233f5..89707c2859 100644 --- a/stats/pwc-summary-151-180.json +++ b/stats/pwc-summary-151-180.json @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-10-14 09:00:54 GMT" + "text" : "[Champions: 30] Last updated at 2025-10-14 09:16:16 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 28efa4906f..98812ef65d 100644 --- a/stats/pwc-summary-181-210.json +++ b/stats/pwc-summary-181-210.json @@ -37,7 +37,7 @@ 88, 8, 3, - 424, + 426, 2, 0 ], @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-10-14 09:00:54 GMT" + "text" : "[Champions: 30] Last updated at 2025-10-14 09:16:16 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 bd71e464d6..349c33940a 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-10-14 09:00:54 GMT" + "text" : "[Champions: 30] Last updated at 2025-10-14 09:16:16 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 ca2c32857e..82a7c92a21 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-10-14 09:00:54 GMT" + "text" : "[Champions: 30] Last updated at 2025-10-14 09:16:16 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 1badcbee84..a5f619bc0d 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-10-14 09:00:54 GMT" + "text" : "[Champions: 30] Last updated at 2025-10-14 09:16:16 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 d7b2541ce2..dc0154f312 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-10-14 09:00:54 GMT" + "text" : "[Champions: 28] Last updated at 2025-10-14 09:16:16 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 813ca69f82..6b2a7303bd 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-10-14 09:00:54 GMT" + "text" : "[Champions: 30] Last updated at 2025-10-14 09:16:16 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 361f475f70..fa105db1d8 100644 --- a/stats/pwc-summary-61-90.json +++ b/stats/pwc-summary-61-90.json @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-10-14 09:00:54 GMT" + "text" : "[Champions: 30] Last updated at 2025-10-14 09:16:16 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 ce639f3bd8..97ba0ba4a4 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-10-14 09:00:54 GMT" + "text" : "[Champions: 30] Last updated at 2025-10-14 09:16:16 GMT" }, "title" : { "text" : "The Weekly Challenge [2019 - 2025]" diff --git a/stats/pwc-summary.json b/stats/pwc-summary.json index d7b4120b06..e1a516c2b2 100644 --- a/stats/pwc-summary.json +++ b/stats/pwc-summary.json @@ -217,7 +217,7 @@ 45, 4, 2, - 219, + 220, 1, 0, 26, @@ -397,8 +397,8 @@ 6, 0, 0, - 1, 9, + 1, 0, 104, 0, @@ -1009,7 +1009,7 @@ } ], "subtitle" : { - "text" : "[Champions: 328] Last updated at 2025-10-14 09:00:54 GMT" + "text" : "[Champions: 328] Last updated at 2025-10-14 09:16:16 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 39e2747721..a7ae3ba657 100644 --- a/stats/pwc-yearly-language-summary.json +++ b/stats/pwc-yearly-language-summary.json @@ -8,7 +8,7 @@ "data" : [ [ "Perl", - 1887 + 1889 ], [ "Raku", @@ -151,7 +151,7 @@ { "drilldown" : "2025", "name" : "2025", - "y" : 3554 + "y" : 3556 }, { "drilldown" : "2024", @@ -188,7 +188,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-10-14 09:00:54 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-10-14 09:16:16 GMT" }, "title" : { "text" : "The Weekly Challenge Language" -- cgit