AlgoStories

Ace Your Technical Interviews

Prepare for technical interviews with pattern-based practice, real interview questions, and insider tips from top tech companies.

Difficulty

Companies

4
2
2
1
1

Find all pairs with a given sum

EasyTwo Pointers

Given an array of integers, find all pairs of elements that sum to a target value.

Amazon, Google

Maximum sum subarray of size K

EasySliding Window

Find the maximum sum of any contiguous subarray of size K.

Facebook, Microsoft

Longest substring with K distinct characters

MediumSliding Window

Find the longest substring with exactly K distinct characters.

Amazon, Bloomberg

Median of two sorted arrays

HardBinary Search

Find the median of two sorted arrays of different sizes.

Google, Apple