Fizzbuzz but with fibonacci numbers!
Software Engineer Interview Questions
467,387 software engineer interview questions shared by candidates
find the sum of two integers represented as strings, return the sum as string, i.e "123" and "456" would return "579".
Using only two pointers how can you tell if a linked-list cycles?
HR: hash function search time, what is O(n) Programming: write a function that get an int array, each int has category which can receive by a given function. category is one of (0,1,2). eg Array[1]=20, get_category(20)=1 sort the int array by the int category. following question, sort without addition array\space
Given an integer array and an input int x, return value of one or more int in the array that equals to int x.
NDA
convert foo bar in an array to oof rab
Finding the minimum k elements of a list
write a function to check the validity of a binary search tree
If we have a string : "abc ef 12 g", write a function that takes the pointer to the string reorganizes the string to be: "g 12 ef abc". Note that there are 3 spaces after abc, 2 spaces after ef, and 1 space after 12 in the original string, but the spaces are reversed. So in essence, write a function to reverse a string and then put the words between the spaces back in order. And the string length can be known or not.
Viewing 2411 - 2420 interview questions