From 239301df32c395e801d6a8dc014667ddc3e1a09b Mon Sep 17 00:00:00 2001 From: Mohammad Sajid Anwar Date: Sun, 16 Nov 2025 20:51:27 +0000 Subject: - Added solutions by Simon Green. - Added solutions by Roger Bell_West. - Added solutions by Arne Sommer. - Added solutions by Marton Polgar. - Added solutions by Athanasius. - Added solutions by HVukman. - Added solutions by Conor Hoekstra. --- challenge-347/conor-hoekstra/bqn/ch-1.bqn | 16 ++++++++ challenge-347/conor-hoekstra/bqn/ch-2.bqn | 17 ++++++++ challenge-347/conor-hoekstra/ch-1.bqn | 16 -------- challenge-347/conor-hoekstra/ch-2.bqn | 17 -------- stats/pwc-current.json | 65 ++++++++++++++++++++++++++++++- 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 | 10 ++--- stats/pwc-language-breakdown-summary.json | 8 ++-- stats/pwc-leaders.json | 24 ++++++------ stats/pwc-summary-1-30.json | 6 +-- stats/pwc-summary-121-150.json | 2 +- stats/pwc-summary-151-180.json | 2 +- stats/pwc-summary-181-210.json | 2 +- stats/pwc-summary-211-240.json | 2 +- stats/pwc-summary-241-270.json | 4 +- stats/pwc-summary-271-300.json | 6 +-- stats/pwc-summary-301-330.json | 2 +- stats/pwc-summary-31-60.json | 6 +-- stats/pwc-summary-61-90.json | 2 +- stats/pwc-summary-91-120.json | 2 +- stats/pwc-summary.json | 16 ++++---- stats/pwc-yearly-language-summary.json | 10 ++--- 27 files changed, 154 insertions(+), 93 deletions(-) create mode 100644 challenge-347/conor-hoekstra/bqn/ch-1.bqn create mode 100644 challenge-347/conor-hoekstra/bqn/ch-2.bqn delete mode 100644 challenge-347/conor-hoekstra/ch-1.bqn delete mode 100644 challenge-347/conor-hoekstra/ch-2.bqn diff --git a/challenge-347/conor-hoekstra/bqn/ch-1.bqn b/challenge-347/conor-hoekstra/bqn/ch-1.bqn new file mode 100644 index 0000000000..c6962a357d --- /dev/null +++ b/challenge-347/conor-hoekstra/bqn/ch-1.bqn @@ -0,0 +1,16 @@ +# For up to date code: +# https://github.com/codereport/bqn-code/blob/main/pwc/347-1.bqn + +u ⇐ •Import "/home/cph/bqn-test/test.bqn" +s ⇐ •Import "/home/cph/bqn-code/lib/string.bqn" + +months ← ""‿"Jan"‿"Feb"‿"Mar"‿"Apr"‿"May"‿"Jun"‿"Jul"‿"Aug"‿"Sep"‿"Oct"‿"Nov"‿"Dec" +Pad ← (1=≠)◶⟨⊢,"0"⊸∾⟩ +Format ← { 𝕊d‿m‿y: "-" s.Join ⟨y,Pad•Fmt⊑months⊐⋈m,Pad ¯2↓d⟩ } s.Words + +# Tests +u.UnitTest (Format "1st Jan 2025") ≡ "2025-01-01" +u.UnitTest (Format "22nd Feb 2025") ≡ "2025-02-22" +u.UnitTest (Format "15th Apr 2025") ≡ "2025-04-15" +u.UnitTest (Format "23rd Oct 2025") ≡ "2025-10-23" +u.UnitTest (Format "31st Dec 2025") ≡ "2025-12-31" diff --git a/challenge-347/conor-hoekstra/bqn/ch-2.bqn b/challenge-347/conor-hoekstra/bqn/ch-2.bqn new file mode 100644 index 0000000000..8ccb7f2339 --- /dev/null +++ b/challenge-347/conor-hoekstra/bqn/ch-2.bqn @@ -0,0 +1,17 @@ +# For up to date code: +# https://github.com/codereport/bqn-code/blob/main/pwc/347-2.bqn + +u ⇐ •Import "/home/cph/bqn-test/test.bqn" +s ⇐ •Import "/home/cph/bqn-code/lib/string.bqn" + +Hj ← '-'⊸s.Join +Last ← (2-˜≠)◶⟨⋈,⋈,2⊸(↑⋈↓)⟩ +Rec ← { 4≥≠𝕩 ? ⋈ Hj Last 𝕩 ; (⋈3↑𝕩)∾𝕊3↓𝕩 } +Format ← Hj·Rec(¬∊⟜"- ")⊸/ + +# Tests +u.UnitTest (Format "1-23-45-6") ≡ "123-456" +u.UnitTest (Format "1234") ≡ "12-34" +u.UnitTest (Format "12 345-6789") ≡ "123-456-789" +u.UnitTest (Format "123 4567") ≡ "123-45-67" +u.UnitTest (Format "123 456-78") ≡ "123-456-78" diff --git a/challenge-347/conor-hoekstra/ch-1.bqn b/challenge-347/conor-hoekstra/ch-1.bqn deleted file mode 100644 index c6962a357d..0000000000 --- a/challenge-347/conor-hoekstra/ch-1.bqn +++ /dev/null @@ -1,16 +0,0 @@ -# For up to date code: -# https://github.com/codereport/bqn-code/blob/main/pwc/347-1.bqn - -u ⇐ •Import "/home/cph/bqn-test/test.bqn" -s ⇐ •Import "/home/cph/bqn-code/lib/string.bqn" - -months ← ""‿"Jan"‿"Feb"‿"Mar"‿"Apr"‿"May"‿"Jun"‿"Jul"‿"Aug"‿"Sep"‿"Oct"‿"Nov"‿"Dec" -Pad ← (1=≠)◶⟨⊢,"0"⊸∾⟩ -Format ← { 𝕊d‿m‿y: "-" s.Join ⟨y,Pad•Fmt⊑months⊐⋈m,Pad ¯2↓d⟩ } s.Words - -# Tests -u.UnitTest (Format "1st Jan 2025") ≡ "2025-01-01" -u.UnitTest (Format "22nd Feb 2025") ≡ "2025-02-22" -u.UnitTest (Format "15th Apr 2025") ≡ "2025-04-15" -u.UnitTest (Format "23rd Oct 2025") ≡ "2025-10-23" -u.UnitTest (Format "31st Dec 2025") ≡ "2025-12-31" diff --git a/challenge-347/conor-hoekstra/ch-2.bqn b/challenge-347/conor-hoekstra/ch-2.bqn deleted file mode 100644 index 8ccb7f2339..0000000000 --- a/challenge-347/conor-hoekstra/ch-2.bqn +++ /dev/null @@ -1,17 +0,0 @@ -# For up to date code: -# https://github.com/codereport/bqn-code/blob/main/pwc/347-2.bqn - -u ⇐ •Import "/home/cph/bqn-test/test.bqn" -s ⇐ •Import "/home/cph/bqn-code/lib/string.bqn" - -Hj ← '-'⊸s.Join -Last ← (2-˜≠)◶⟨⋈,⋈,2⊸(↑⋈↓)⟩ -Rec ← { 4≥≠𝕩 ? ⋈ Hj Last 𝕩 ; (⋈3↑𝕩)∾𝕊3↓𝕩 } -Format ← Hj·Rec(¬∊⟜"- ")⊸/ - -# Tests -u.UnitTest (Format "1-23-45-6") ≡ "123-456" -u.UnitTest (Format "1234") ≡ "12-34" -u.UnitTest (Format "12 345-6789") ≡ "123-456-789" -u.UnitTest (Format "123 4567") ≡ "123-45-67" -u.UnitTest (Format "123 456-78") ≡ "123-456-78" diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 5186ccda1c..88f1ed6188 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -28,6 +28,34 @@ "id" : "Andreas Mahnke", "name" : "Andreas Mahnke" }, + { + "data" : [ + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Arne Sommer", + "name" : "Arne Sommer" + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ] + ], + "id" : "Athanasius", + "name" : "Athanasius" + }, { "data" : [ [ @@ -229,11 +257,29 @@ [ "Raku", 2 + ], + [ + "Blog", + 1 ] ], "id" : "Roger Bell_West", "name" : "Roger Bell_West" }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Simon Green", + "name" : "Simon Green" + }, { "data" : [ [ @@ -314,6 +360,16 @@ "name" : "Andreas Mahnke", "y" : 2 }, + { + "drilldown" : "Arne Sommer", + "name" : "Arne Sommer", + "y" : 3 + }, + { + "drilldown" : "Athanasius", + "name" : "Athanasius", + "y" : 4 + }, { "drilldown" : "Bob Lied", "name" : "Bob Lied", @@ -397,7 +453,12 @@ { "drilldown" : "Roger Bell_West", "name" : "Roger Bell_West", - "y" : 4 + "y" : 5 + }, + { + "drilldown" : "Simon Green", + "name" : "Simon Green", + "y" : 3 }, { "drilldown" : "Thomas Kohler", @@ -424,7 +485,7 @@ } ], "subtitle" : { - "text" : "[Champions: 23] Last updated at 2025-11-15 01:07:58 GMT" + "text" : "[Champions: 26] Last updated at 2025-11-16 20:50:57 GMT" }, "title" : { "text" : "The Weekly Challenge - 347" diff --git a/stats/pwc-language-breakdown-2019.json b/stats/pwc-language-breakdown-2019.json index 45a158d3ac..2d5bc39265 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-15 01:07:58 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-16 20:50: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 4140b9977b..9bac14f7f1 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-15 01:07:58 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-16 20:50: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 ae1ffd3003..19a2ac18bf 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-15 01:07:58 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-16 20:50: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 aac48e12a6..efdaad5c1c 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-15 01:07:58 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-16 20:50: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 4e2916ca48..11fb2fb2e0 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-15 01:07:58 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-16 20:50: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 df7524d1a4..758b566754 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-15 01:07:58 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-16 20:50: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 296cbea1d1..eb768f0891 100644 --- a/stats/pwc-language-breakdown-2025.json +++ b/stats/pwc-language-breakdown-2025.json @@ -8,15 +8,15 @@ "data" : [ [ "Perl", - 37 + 41 ], [ "Raku", - 15 + 19 ], [ "Blog", - 19 + 22 ] ], "id" : "347", @@ -835,7 +835,7 @@ { "drilldown" : "347", "name" : "347", - "y" : 71 + "y" : 82 }, { "drilldown" : "346", @@ -1062,7 +1062,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-15 01:07:58 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-16 20:50: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 8888084fde..6a34e570c3 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -10,15 +10,15 @@ "data" : [ [ "Perl", - 17884 + 17888 ], [ "Raku", - 9899 + 9903 ], [ "Blog", - 6410 + 6413 ] ], "dataLabels" : { @@ -37,7 +37,7 @@ } ], "subtitle" : { - "text" : "Last updated at 2025-11-15 01:07:58 GMT" + "text" : "Last updated at 2025-11-16 20:50:57 GMT" }, "title" : { "text" : "The Weekly Challenge Contributions [2019 - 2025]" diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index ba8261fc6c..bfb2b5c572 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -48,7 +48,7 @@ ], [ "Blog", - 325 + 326 ] ], "id" : "Roger Bell_West", @@ -80,11 +80,11 @@ ], [ "Raku", - 689 + 691 ], [ "Blog", - 345 + 346 ] ], "id" : "Arne Sommer", @@ -94,11 +94,11 @@ "data" : [ [ "Perl", - 586 + 588 ], [ "Raku", - 547 + 549 ], [ "Blog", @@ -262,11 +262,11 @@ "data" : [ [ "Perl", - 441 + 443 ], [ "Blog", - 218 + 219 ] ], "id" : "Simon Green", @@ -811,7 +811,7 @@ { "drilldown" : "Roger Bell_West", "name" : "3: Roger Bell_West", - "y" : 3162 + "y" : 3164 }, { "drilldown" : "Laurent Rosenfeld", @@ -821,12 +821,12 @@ { "drilldown" : "Arne Sommer", "name" : "5: Arne Sommer", - "y" : 2374 + "y" : 2380 }, { "drilldown" : "Athanasius", "name" : "6: Athanasius", - "y" : 2274 + "y" : 2282 }, { "drilldown" : "Ulrich Rieke", @@ -876,7 +876,7 @@ { "drilldown" : "Simon Green", "name" : "16: Simon Green", - "y" : 1318 + "y" : 1324 }, { "drilldown" : "Peter Campbell Smith", @@ -1053,7 +1053,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2025-11-15 01:07:58 GMT" + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2025-11-16 20:50: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 f6e0740415..c9d6c414d4 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -72,7 +72,7 @@ 0, 0, 2, - 689, + 691, 0, 23 ], @@ -107,7 +107,7 @@ 0, 0, 0, - 345, + 346, 0, 0 ], @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-11-15 01:07:58 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-16 20:50: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 3c928479de..93dd62ab0b 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-15 01:07:58 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-16 20:50: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 b0ee955a8f..cfd0d41de6 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-11-15 01:07:58 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-16 20:50: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 fac67f297d..5938ec734d 100644 --- a/stats/pwc-summary-181-210.json +++ b/stats/pwc-summary-181-210.json @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-11-15 01:07:58 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-16 20:50: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 4548d35ea8..a3bfb92dfc 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-15 01:07:58 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-16 20:50: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 a9bb52c959..bd00b9d9ce 100644 --- a/stats/pwc-summary-241-270.json +++ b/stats/pwc-summary-241-270.json @@ -104,7 +104,7 @@ 7, 2, 0, - 325, + 326, 0, 62, 1, @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-11-15 01:07:58 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-16 20:50: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 2e9c46c47c..a5eddab50d 100644 --- a/stats/pwc-summary-271-300.json +++ b/stats/pwc-summary-271-300.json @@ -19,7 +19,7 @@ 0, 22, 0, - 441, + 443, 7, 5, 4, @@ -89,7 +89,7 @@ 0, 0, 3, - 218, + 219, 0, 17, 0, @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-11-15 01:07:58 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-16 20:50: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 ef2cbeedaf..f936cb13f8 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-15 01:07:58 GMT" + "text" : "[Champions: 28] Last updated at 2025-11-16 20:50: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 01131f9154..ce6d98ca3a 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -10,7 +10,7 @@ "series" : [ { "data" : [ - 586, + 588, 0, 6, 45, @@ -45,7 +45,7 @@ }, { "data" : [ - 547, + 549, 0, 0, 0, @@ -115,7 +115,7 @@ } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2025-11-15 01:07:58 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-16 20:50: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 5593ce8e16..2a2fc5b4d5 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-11-15 01:07:58 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-16 20:50: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 2f925bd819..de096d1da9 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-15 01:07:58 GMT" + "text" : "[Champions: 30] Last updated at 2025-11-16 20:50:57 GMT" }, "title" : { "text" : "The Weekly Challenge [2019 - 2025]" diff --git a/stats/pwc-summary.json b/stats/pwc-summary.json index 825dd11407..5583c02e8f 100644 --- a/stats/pwc-summary.json +++ b/stats/pwc-summary.json @@ -40,7 +40,7 @@ 83, 6, 0, - 313, + 314, 0, 4, 31, @@ -289,7 +289,7 @@ 0, 11, 0, - 226, + 227, 5, 3, 2, @@ -370,10 +370,10 @@ 0, 0, 1, - 345, + 346, 0, 14, - 296, + 297, 0, 0, 0, @@ -703,7 +703,7 @@ 0, 0, 0, - 345, + 346, 0, 0, 4, @@ -940,7 +940,7 @@ 4, 1, 0, - 325, + 326, 0, 40, 1, @@ -955,7 +955,7 @@ 0, 0, 2, - 218, + 219, 0, 15, 0, @@ -1009,7 +1009,7 @@ } ], "subtitle" : { - "text" : "[Champions: 328] Last updated at 2025-11-15 01:07:58 GMT" + "text" : "[Champions: 328] Last updated at 2025-11-16 20:50:56 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 a06394124d..0cb1f1c57f 100644 --- a/stats/pwc-yearly-language-summary.json +++ b/stats/pwc-yearly-language-summary.json @@ -8,15 +8,15 @@ "data" : [ [ "Perl", - 2107 + 2111 ], [ "Raku", - 1023 + 1027 ], [ "Blog", - 820 + 823 ] ], "id" : "2025", @@ -151,7 +151,7 @@ { "drilldown" : "2025", "name" : "2025", - "y" : 3950 + "y" : 3961 }, { "drilldown" : "2024", @@ -188,7 +188,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-15 01:07:58 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2025-11-16 20:50:57 GMT" }, "title" : { "text" : "The Weekly Challenge Language" -- cgit