Leet-code problems with heavy mathematical notation (because of course that happens in real life)
Software Development Interview Questions
37,024 software development interview questions shared by candidates
1. Boundary traversal of a binary tree. 2. Binary tree to a singly linked list.
Questions on their Leadership Principles and interview coding questions
how was your first round ?
What is a deadlock and how can you avoid it?
Given a 2d grid map of '1's (land) and '0's (water), count the number of islands. An island is surrounded by water and is formed by connecting adjacent lands horizontally or vertically. You may assume all four edges of the grid are all surrounded by water. Example 1: Input: 11110 11010 11000 00000 Output: 1
Having an array of 0s and 1s, set a cell position to 0 if previous and next indices are the same, or to 1 if they are different. Print the result after a few iterations. (This question was from the demo, unfortunately, they do not authorize the disclosure of other questions.)
Optimize the route, on a grid, for a delivery truck so that it can travel the least distance while making all of the stops.
A function returns lists of Flights departing from each city after a given time. Given a departure airport and arrival airport and a given time,return list all the Flight routes that can be used to reach the destination. Flight {String dep:, String arr:, int depTime: , int arrTime: }
k closest star
Viewing 2971 - 2980 interview questions