They asked a few technical questions, primarily simple traversal and string manipulations that might build on top on the simple questions to become harder
Software Developer New Grad Interview Questions
6,139 software developer new grad interview questions shared by candidates
You are given a 2-D grid of integers matrix, where each integer is greater than or equal to 0. Return the length of the longest strictly increasing path within matrix. From each cell within the path, you can move either horizontally or vertically. You may not move diagonally.
Q1: Freebie. Totally forgot Q2: Flatten digits and return the largest most frequent digit e.g. [123, 24, 12, 30, 89 ] => [6, 6, 3, 3, 8] => return 6 Q3: A variant of Task Scheduler, Greedy + Heap Q4: Given three arrays [a, b, operations], where the a and b arrays are int arrays, and the operations array represents a list of operations to be performed on the a and or the b array. Return the result of all operations in a list. There are two possible operations: [0, idx, val]: assign val to b[idx]; b[idx] = val, return nothing [1, target]: return the number of all possible combinations of [i, j] so that a[i] + b[j] == target Example: [[1, 2, 3], [2, 2], [[1, 5], [0, 0, 1], [1, 5]] => [4, 2] Walkthrough: First operation returned 4 The second operation modifies array b and returns nothing The third operation returned 2
Situational questions like when was a time you had to solve a problem with a problematic team member.
What is one area of improvement
Technical questions based on basic data structures with a little twist.
give an array of integer, and a start point, a, end point, print out all the broken intervals. e.g. start = 1, end = 100, array = {2,3,4,6,7}, print {5, 8-100}
valid sudoku
leetcode question design mkdir class
1 graph problem, 1 dynamic programming problem, 1 math problem. Behaviour typical questions to show your "googlines"
Viewing 3461 - 3470 interview questions