Remove a given node from a singly linked list (you only get a pointer to that node and not to the start of the list) If the node is the tail, just free its data
Student Programmer Interview Questions
970 student programmer interview questions shared by candidates
Tell us about yourself, Top 3 location that you want to work.
I was asked how to sort 100,000 items that started with different letters but had some repetitions in an SQL table
SQL question about a given data
Write an algorithm that, given a list of courses and dependencies between them (e.g. given courses x,y,z you have to take course x in order to take courses y and z), outputs all of the possible sequences of course-taking.
1. find the n'th Fibonacci series number. 2. find how many time str1 appears in str2, overlaps allowed
First Question: Python question: Find all unique elements listLang = [CPP, PYTHON, JAVA, JAVA, CPP] Second Question: Public int foo(List<Integer> nums){ Int x = -1; Int y = -1; For(Integer num : nums){ If(x < num){ Y = x; X = num; } Return y; { What is the code supposed to do? What is the problem? How can you fix it? (They said they weren't supposed to ask this question, they were curious.
implement is anagrams (given 2 lists)
list of buildings at different heights. you should return the longest sublist in which between every 2 buildings the difference is 1
implement a queue usind a stack in python.
Viewing 151 - 160 interview questions