Content-Length: 320349 | pFad | http://github.com/TheAlgorithms/JavaScript/pull/1293/files/b4c0075914c73c5547c7259a6edd329224593652

FB Slid wind by Ramzi-Abidi · Pull Request #1293 · TheAlgorithms/JavaScript · GitHub
Skip to content

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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 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
37 changes: 37 additions & 0 deletions Dynamic-Programming/Sliding-Window/FruitsIntoBasket.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/**
* @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) {
let max = 0
const hash = {}
let j = 0
let objLength = 0

for (let i = 0; i < arr.length; i++) {
if (!hash[arr[i]]) {
hash[arr[i]] = 1
objLength++
} else {
hash[arr[i]]++
}

if (objLength <= 2) {
max = Math.max(max, i - j + 1)
} else {
while (objLength > 2) {
hash[arr[j]]--
if (hash[arr[j]] === 0) {
delete hash[arr[j]]
objLength--
}
j++
}
}
}

return max
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { totalFruit } from '../FruitsIntoBasket'

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








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: http://github.com/TheAlgorithms/JavaScript/pull/1293/files/b4c0075914c73c5547c7259a6edd329224593652

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy