From an arbitrary list of integers, find all pairs that equal zero.
Engineer Developer Interview Questions
467,523 engineer developer interview questions shared by candidates
Given a nested list of integers, return the sum of all integers in the list weighted by their depth For example, given the list {{1,1},2,{1,1}} the function should return 10 (four 1's at depth 2, one 2 at depth 1)
All questions are already on glass door. Just make a list of all the questions and answer them.
Given an array of integers, write a function that will produce a random permutation of the input array.
Given a large document and a short pattern consisting of a few words (eg. W1 W2 W3), find the shortest string that has all the words in any order (for eg. W2 foo bar dog W1 cat W3 -- is a valid pattern)
Given a single-line text string and a maximum width value, write the function 'string justify(string text, int maxWidth)' that formats the input text using full-justification, i.e., extra spaces on each line are equally distributed between the words; the first word on each line is flushed left and the last word on each line is flushed right.
Find indices start and end for a particular value in a sorted integer array with duplicates
What are the steps to connect to a database?
Tell me abt projects
How to find 2 missing numbers in N numbers, which consists of numbers 1 - N without duplicate?
Viewing 1351 - 1360 interview questions