Skip to main content

Command Palette

Search for a command to run...

Top Verily Coding Interview Questions from 2025

Updated
1 min read

Introduction

In this blog post, we'll share the most commonly asked coding interview questions at Verily. If you don't have months to study for your interviews, you can use AI tools like Chatmagic to generate solutions quickly and efficiently - helping you pass the interviews and get the job offer!

Problem #1: Minimum Area Rectangle

You are given an array of points in the X-Y plane points where points[i] = [xi, yi]. Return the minimum area of a rectangle formed from these points, with sides parallel to the X and Y axes. If there is not any such rectangle, return 0. Example 1: Input: points = [[1,1],[1,3],[3,1],[3,3],[2,2]] Output: 4 Example 2: Input: points = [[1,1],[1,3],[3,1],[3,3],[4,1],[4,3]] Output: 2 Constraints: 1 <= points.length <= 500 points[i].length == 2 0 <= xi, yi <= 4 * 104 All the given points are unique.

Topics: Array, Hash Table, Math, Geometry, Sorting

More from this blog

C

Chatmagic blog

2894 posts