Vimeo SWE Interview Question 2024 March | Binary Search | on-campus
Question · Posted Jun 2026
Question 1: Search a 2D Matrix Problem Statement You are given an m x n integer matrix matrix with the following two properties: Each row is sorted in non-decreasing order. The first integer of each row is greater than the last integer of the previous row. Given an integer target, return true if target is in matrix, or false otherwise. You must write a solution in O(log(m * n)) time complexity. Constraints m == matrix.length, n == matrix[i].length 1 <= ...
The full answer & interview discussion are available to premium members.
Log in Create a free account