Which cycle performs quickier? for (int i=0; i<1000; i++) for (int j=0;j<100;j++) or for (int i=0; i<100; i++) for (int j=0;j<1000;j++)
Software Development Engineer I Interview Questions
32,852 software development engineer i interview questions shared by candidates
One example that I thought was interesting: given a list of points, find the line that goes through the greatest number of them.
I got a brain teaser question that how can I make the most number of triangles with 9 wooden stick.
Write code in your favorite programming language that will accept two strings and return true if they are anagrams.
How many people can you stuff in a school bus
Given inorder and preorder traversals of a tree, reconstruct the tree.
Given an array of positive and negative numbers, give an algorithm that would find the sequence of numbers that give the largest sum. The numbers have to be in sequential order.
Propose an algorithm to remove duplicates in very large datset (which cannot be completely stored in memory for processing). Now, give scenarios in which your algorithm fails.
Array, Tree, Dynamic Programming questions
Write recursion that calculate the permutation of string
Viewing 981 - 990 interview questions