Search
⌘K

Leetcode 1438. Longest Continuous Subarray With Absolute Diff Less Than or Equal to Limit

Find the length of the longest contiguous subarray whose maximum minus minimum is ≤ limit; the key challenge is maintaining the window's current min and max efficiently (commonly solved with a sliding window and monotonic deques for O(n) time).

Asked at:

Uber


Question Timeline

See when this question was last asked and where, including any notes left by other candidates.

Late November, 2025

Uber

Mid-level

Comments

Your account is free and you can post anonymously if you choose.