Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
romankurnovskii committed Mar 31, 2024
1 parent 3fb808a commit 95618e3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions content/tracks/algorithms-101/leetcode/hard/2444/index.en.md
Expand Up @@ -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
---
Expand Down
11 changes: 5 additions & 6 deletions 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
---
Expand All @@ -27,5 +27,4 @@ class Solution:
j2 = i
res += max(0, min(j1, j2) - k)
return res

```

0 comments on commit 95618e3

Please sign in to comment.