Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Slid wind#1293

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
Ramzi-Abidi wants to merge6 commits intoTheAlgorithms:master
base:master
Choose a base branch
Loading
fromRamzi-Abidi:slid-wind
Open
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletionsDynamic-Programming/Sliding-Window/FruitsIntoBasket.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
/**
* @function totalFruit
* @param {number[]} arr
* @return {number} res
* @see https://leetcode.com/problems/fruit-into-baskets/
* @see [sliding-window-technique] (https://www.geeksforgeeks.org/window-sliding-technique/)
*/

export const totalFruit = function (arr) {
// to maximize number of elements that our basket can have
let max = 0
// keeps track of the occurrence of each element
const hash = {}
// left side of the window
let j = 0
// to count number of elements
let objLength = 0

for (let i = 0; i < arr.length; i++) {
// A hashmap keeps track of each character and it's occurrence
if (!hash[arr[i]]) {
hash[arr[i]] = 1
// when we have a new element we increment objLength
objLength++
} else {
hash[arr[i]]++
}
if (objLength <= 2) {
// maximizing and opening the window
max = Math.max(max, i - j + 1)
} else {
// once we have more than two distinct elements in our hashmap, we should shrink our window
while (objLength > 2) {
hash[arr[j]]--
// when the occurrence of an element becomes 0 we should delete it from the hashmap
if (hash[arr[j]] === 0) {
delete hash[arr[j]]
objLength--
}
j++
}
}
}

return max
}
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
import { totalFruit } from '../FruitsIntoBasket'

test('result : ', () => {
expect(totalFruit([3, 3, 3, 1, 2, 1, 1, 2, 3, 3, 4])).toStrictEqual(5)
expect(totalFruit([5, 3, 3, 1, 2])).toStrictEqual(3)
expect(totalFruit([9, 1, 2, 2, 2])).toStrictEqual(4)
expect(totalFruit([3, 3, 3])).toStrictEqual(3)
expect(totalFruit([])).toStrictEqual(0)
})

[8]ページ先頭

©2009-2025 Movatter.jp