LeetCode Question · Apr 2024 · Los Angeles

Amazon | OA | kth smallest element in m sliding window

361 views 4 replies

Question Details

Recently failed an Amazon OA on a question like this: Given an array arr, return the kth smallest integer for each subarray of size m. Example: k=2 m=3 arr=[3,1,4,2] output: [3,2] Explanation: In the first subarray of...

Full Details

🔒

Unlock full leaked content

Full insider details, leaked discussions, and candidate experiences.

Get Premium →

Topics

Arrays Sliding Window Two Pointers Heap