Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ashishps1/awesome-leetcode-resources
/
Class
patterns/javascript/slidingWindow.js:1–1 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
class
SlidingWindow {
2
// Brute Force Approach - O(n * k)
3
findMaxAverageBruteForce(nums, k) {
4
let
maxAvg = -Infinity;
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected