"function findMinMax(array){
array.sort((a,b) => a - b);
let min = array[0];
let max = array.slice(-1);
return [min,max];
}
`"
Adam S. - "function findMinMax(array){
array.sort((a,b) => a - b);
let min = array[0];
let max = array.slice(-1);
return [min,max];
}
`"See full answer
"German autobahns are the highways and not city rode. We need to break down the issue into multiple stages. Let's say for the first stage we need to identify the road density. oad density is a very rough guess. Break down the problem further into city road density and non-city road density, and estimating the rough land mass of both. We came to 1km road / square km in non-cities road density , 3.4 million square miles of non-city, that bring us total (3.4 million *1)km - 3400,000 km of road we"
Indranil G. - "German autobahns are the highways and not city rode. We need to break down the issue into multiple stages. Let's say for the first stage we need to identify the road density. oad density is a very rough guess. Break down the problem further into city road density and non-city road density, and estimating the rough land mass of both. We came to 1km road / square km in non-cities road density , 3.4 million square miles of non-city, that bring us total (3.4 million *1)km - 3400,000 km of road we"See full answer
"This is one of the core behavioral questions that you should expect to cover in any interview. In particular, it asks you to justify why you want to work at a specific company that you've applied for. There's no right answer for this, however we do recommend you list at least three distinct reasons.
Here's an example of what you might say:
> That's a great question. There are three main reasons why I want to work on Oculus:Shaping a generation
> Interesting product problems
> Mentorship
> I'll g"
Exponent - "This is one of the core behavioral questions that you should expect to cover in any interview. In particular, it asks you to justify why you want to work at a specific company that you've applied for. There's no right answer for this, however we do recommend you list at least three distinct reasons.
Here's an example of what you might say:
> That's a great question. There are three main reasons why I want to work on Oculus:Shaping a generation
> Interesting product problems
> Mentorship
> I'll g"See full answer
"This is an Improve a Product question with a slight twist. We have to both pick the product we're planning to improve, and offer at least three improvements. Let's first go over the Improve a Product formula:
Ask clarifying questions
Identify users, behaviors, and pain points
State product goal
Brainstorm small improvements
Brainstorm bolder improvements
Measure success
Summarize
Now, let's begin!
Ask clarifying questions
Before we beg"
Exponent - "This is an Improve a Product question with a slight twist. We have to both pick the product we're planning to improve, and offer at least three improvements. Let's first go over the Improve a Product formula:
Ask clarifying questions
Identify users, behaviors, and pain points
State product goal
Brainstorm small improvements
Brainstorm bolder improvements
Measure success
Summarize
Now, let's begin!
Ask clarifying questions
Before we beg"See full answer
"function biggestNumber(array) {
if (!array) return null;
let number = array[0]
for(let i; i < array.length; i++) {
if (number <= array[i]) number = array[i];
}
return number
}
`"
Arinze O. - "function biggestNumber(array) {
if (!array) return null;
let number = array[0]
for(let i; i < array.length; i++) {
if (number <= array[i]) number = array[i];
}
return number
}
`"See full answer