Write code to reverse a linked list from its mid point. So 1->2->3->4->5->6->7 becomes 1->2->3->7->6->5->4
Software Development Interview Questions
36,992 software development interview questions shared by candidates
Identify bugs in code.
NDA- I can't say
Write a function that returns true if a string of parentheses is balanced or not, such as "(())()", which would return true.
Given an origin (assumed to be 0,0) and a set of points around the origin, return k points in ascending order of distance from the origin.
Implement atoi()
Given an array of numbers and a separate number, how would you determine the first combination of 2 numbers in that array that would total this single other number?
Given an array of size [i..n], find the product of all the elements of the array except for the element at index b, where b is an arbitrary element.
How do you check if a Binary Tree is a Binary Search Tree?
(following the previous one) You got only ONE baby bottle sample. You would like to know the max height you can drop it without breaking the bottle. Let set the unit as 1 foot. And the highest height you can reach is at N feet. So how would you find the (max) safe height?
Viewing 901 - 910 interview questions