Two Pointer
Problems based on Two Pointers Approach
Easy
30 minutes
Smallest Difference
Given two arrays of integers, find the pair of values (one value in each array) with the smallest (non-negative) difference.
Easy
30 minutes
Sorted Squared Array
Given an array of integers A sorted in non-decreasing order, return an array of the squares of each number, also in sorted non-decreasing order.