From 95618e3fdf0cc86c28fd769599d380d254c0d25b Mon Sep 17 00:00:00 2001 From: Roman Kurnovskii Date: Sun, 31 Mar 2024 16:45:18 +0300 Subject: [PATCH] upd --- .../algorithms-101/leetcode/hard/2444/index.en.md | 4 ++-- .../algorithms-101/leetcode/hard/2444/index.ru.md | 11 +++++------ 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/content/tracks/algorithms-101/leetcode/hard/2444/index.en.md b/content/tracks/algorithms-101/leetcode/hard/2444/index.en.md index 1cbf93c3f2..4e2bb1f928 100644 --- a/content/tracks/algorithms-101/leetcode/hard/2444/index.en.md +++ b/content/tracks/algorithms-101/leetcode/hard/2444/index.en.md @@ -5,8 +5,8 @@ description: 2444. Count Subarrays With Fixed Bounds toc: true tags: [] categories: [Algorithms, LeetCode] -date: 2024-01-01 -lastMod: 2024-01-01 +date: 2024-03-31 +lastMod: 22024-03-31 featuredImage: https://picsum.photos/700/155?grayscale weight: 2444 --- diff --git a/content/tracks/algorithms-101/leetcode/hard/2444/index.ru.md b/content/tracks/algorithms-101/leetcode/hard/2444/index.ru.md index a51fa88d4a..248697049e 100644 --- a/content/tracks/algorithms-101/leetcode/hard/2444/index.ru.md +++ b/content/tracks/algorithms-101/leetcode/hard/2444/index.ru.md @@ -1,12 +1,12 @@ --- -title: Count Subarrays With Fixed Bounds -seoTitle: LeetCode Count Subarrays With Fixed Bounds | Python solution and explanation -description: Count Subarrays With Fixed Bounds +title: 2444. Count Subarrays With Fixed Bounds +seoTitle: LeetCode 2444. Count Subarrays With Fixed Bounds | Python solution and explanation +description: 2444. Count Subarrays With Fixed Bounds toc: true tags: [] categories: [Algorithms, LeetCode] -date: 2024-01-01 -lastMod: 2024-01-01 +date: 2024-03-31 +lastMod: 2024-03-31 featuredImage: https://picsum.photos/700/155?grayscale weight: 2444 --- @@ -27,5 +27,4 @@ class Solution: j2 = i res += max(0, min(j1, j2) - k) return res - ```