Given an array of positive integers and a target integer, find if there is a consecutive subarray that sums to the target. E.g, given {5,6,4,12}, findsum(10)=true, findsum(11)=false.
MISSING VALUE Interview Questions
6,577,548 interview questions shared by candidates
Would you want to join CMP or metal group?
How does the internet work?
Have you ever done something that wasn't asked of you?
Find the max value in an array. The array is "semi-sorted". Here is an example: { 1 3 4 7 9 10 12 13 12 6 3 } As you can see, the array increases and then decreases at one point (13).
Guest found a hair on the food what will you do?
what's your daily duty of current company?
How would you direct someone else on how to cook an omelet.
Given an list A of objects and another list B which is identical to A except that one element is removed, find that removed element.
Given an array of integers, we would like to determine whether the array is monotonic (non-decreasing/non-increasing) or not. Examples: // 1 2 5 5 8 // true // 9 4 4 2 2 // true // 1 4 6 3 // false //1 1 1 1 1 1 // true
Viewing 1431 - 1440 interview questions