Given an array of numbers, create another array of numbers. Calculate each new array number by multiplying all input array numbers, except for the current number position in the new array.
Software Engineer 2 Interview Questions
665,793 software engineer 2 interview questions shared by candidates
Explain this: var Bob = { name: "Bob", name_fn: function(){ return this.name; } } console.log(Bob.name_fn()) //"Bob" var fn = Bob.name_fn console.log(fn()) //undefined
You climb a 60 foot tree and have the ability to span up to 3 feet at a time. What's the minimum number of branches you'd have to touch to get the top?
simple leetcode medium questions based on trees, sliding window and one design question. Be careful since they do not understand basic algorithm terms and data structures since they were all contractors before.
How to implement a class without instance..?
Find the kth largest element collectively from 2 sorted integer arrays.
Given an array of numbers. Find out the number with odd frequency of occurrence.
if a function returns itself, what will happen if it's called.
Why are manhole covers round.
All questions were pretty straight forward... you better know C++ or any similar language though ;)
Viewing 1661 - 1670 interview questions