Questions included in my description
Software Development Engineer I Interview Questions
1,214 software development engineer i interview questions shared by candidates
Complexity of this algorithm. How to improve the complexity?
Remove duplicates from a linked list. O(n) time.
You want to keep the largest 1000 integer numbers from incoming pockets containing integers. Please write a program on how to do it.
Not hard at all.
Write a function that takes an integer and counts the number of bits.
Remove the nth from last element in a singularly linked list in linear time.
Given a 2D array, find the sum of all the elements in the array. O(n^2) solution is too slow, find ways to optimize (ended up adding a second parameter 2D array).
Intersection of two linked lists
Find the indices of all anagrams of a given word in a another word. For example: Find the indices of all the anagrams of AB in ABCDBACDAB (Answer: 0, 4, 8)
Viewing 21 - 30 interview questions