"The answer likely depends on the objective, so I started out with what we were seeking to accomplish. Are we trying to eliminate under-utilized bills, save paper, reduce forgery, or something else? Establishing this focus enables you to dive deeper on the solution."
Caroline V. - "The answer likely depends on the objective, so I started out with what we were seeking to accomplish. Are we trying to eliminate under-utilized bills, save paper, reduce forgery, or something else? Establishing this focus enables you to dive deeper on the solution."See full answer
"Clarifying Points/Questions\:
What are the specific needs and pain points of hotels and their guests?
How can Google Assistant technology be leveraged to enhance the hotel experience?
What are the potential monetization and revenue opportunities for such a product?
Assumptions\:
Hotels are looking for ways to improve guest experience and operational efficiency.
Guests expect personalized, convenient, and technologically advanced services.
Google Assistant has the capabi"
Anushka D. - "Clarifying Points/Questions\:
What are the specific needs and pain points of hotels and their guests?
How can Google Assistant technology be leveraged to enhance the hotel experience?
What are the potential monetization and revenue opportunities for such a product?
Assumptions\:
Hotels are looking for ways to improve guest experience and operational efficiency.
Guests expect personalized, convenient, and technologically advanced services.
Google Assistant has the capabi"See full answer
"The product lens I view the mousetrap through is a product which has a decision maker (someone who wants to catch a mouse) and an end user (yes, yes, the mouse to be trapped).
I believe that the mousetrap is superior when it shows a better speed of catching mice. So given that there are mice to catch, it has a better 'conversion' rate of mice which took interest in the mousetrap / mice who got caught - this is a decision maker, e.g. a homeowner, perspective
For a mouse, a trap is better when it"
Anonymous Halibut - "The product lens I view the mousetrap through is a product which has a decision maker (someone who wants to catch a mouse) and an end user (yes, yes, the mouse to be trapped).
I believe that the mousetrap is superior when it shows a better speed of catching mice. So given that there are mice to catch, it has a better 'conversion' rate of mice which took interest in the mousetrap / mice who got caught - this is a decision maker, e.g. a homeowner, perspective
For a mouse, a trap is better when it"See full answer
"This is another Strategy question, which means finding good reasons for strategic decisions. A few reasons for the GitHub acquisition are listed here.
Competition
> With the GitHub acquisition comes a lot of data on which companies are getting huge, or which technologies are cutting edge. Microsoft can adopt these technologies faster than others by having a pulse on this. It's also a defensive acquisition, since GitHub belonging to Microsoft means it can't be bought by Facebook or Google"
Exponent - "This is another Strategy question, which means finding good reasons for strategic decisions. A few reasons for the GitHub acquisition are listed here.
Competition
> With the GitHub acquisition comes a lot of data on which companies are getting huge, or which technologies are cutting edge. Microsoft can adopt these technologies faster than others by having a pulse on this. It's also a defensive acquisition, since GitHub belonging to Microsoft means it can't be bought by Facebook or Google"See full answer
"Clarifying Questions:
What currently defines profile completion? Does it have to be 100% completion or something like 80% of all available profile attributes. Or is it some specific set of must-have profile attributes like bio, current job, previous experience, etc.
May I know some successful things that are helping users complete their profiles today and some unsuccessful ones as well that we tried but did not show lift in profile completion metrics?
Goal:
Engagement from free u"
Jacob C. - "Clarifying Questions:
What currently defines profile completion? Does it have to be 100% completion or something like 80% of all available profile attributes. Or is it some specific set of must-have profile attributes like bio, current job, previous experience, etc.
May I know some successful things that are helping users complete their profiles today and some unsuccessful ones as well that we tried but did not show lift in profile completion metrics?
Goal:
Engagement from free u"See full answer
"How would you place Amazon Alex hardware in a car, if car software integration was not an option?
Let me understand the context and the situation
Is Amazon really trying to experiment if they could be a new device category in the cars (or)
Is it that they did not get the right partnerships that led to this decision (assuming this is the case)
What could be the objectives why Amazon will get interested in this?
Apple and Google are getting entrenched in this space and Amazon has almost n"
Vamsi K. - "How would you place Amazon Alex hardware in a car, if car software integration was not an option?
Let me understand the context and the situation
Is Amazon really trying to experiment if they could be a new device category in the cars (or)
Is it that they did not get the right partnerships that led to this decision (assuming this is the case)
What could be the objectives why Amazon will get interested in this?
Apple and Google are getting entrenched in this space and Amazon has almost n"See full answer
"function getDifferentNumber(arr) {
// your code goes here
const n = arr.length;
//Define Max Integer
const MAX_INT = Math.pow(2, 31) - 1;
//Coppy arr to arr1 then sort arr1.
const arr1 = arr;
arr1.sort(function(a,b) {return a -b});
// Put arr1 in Set to optimize lo
const uniqueSet = new Set(arr1);
console.log(uniqueSet);
// Check for the smallest nonnegative integer not in the array
for (let i = 0; i < n; i++) {
if (!uniqueSet.has(i)) {
return i;
}
}
if(n<MAX_INT) return n+1;
else return -1;
}"
Anonymous Hare - "function getDifferentNumber(arr) {
// your code goes here
const n = arr.length;
//Define Max Integer
const MAX_INT = Math.pow(2, 31) - 1;
//Coppy arr to arr1 then sort arr1.
const arr1 = arr;
arr1.sort(function(a,b) {return a -b});
// Put arr1 in Set to optimize lo
const uniqueSet = new Set(arr1);
console.log(uniqueSet);
// Check for the smallest nonnegative integer not in the array
for (let i = 0; i < n; i++) {
if (!uniqueSet.has(i)) {
return i;
}
}
if(n<MAX_INT) return n+1;
else return -1;
}"See full answer
"function constructTree(n, matrix) {
let parent = [];
let child = [];
let root = null;
for (let i = 0; i < n; i++) {
for (let j = 0; j < n; j++) {
if (matrixi === 1) {
parent.push(i);
child.push(j);
}
}
}
for (let i = 0; i < n; i++) {
if (parent.indexOf(i) === -1) {
root = i;
}
}
let node = new Node(root);
for (let i = 0; i < n; i++) {
if (i !== root) {
constructTreeUtil(node, parent[i], child[i]);
}
}
return node;
}"
Ugo C. - "function constructTree(n, matrix) {
let parent = [];
let child = [];
let root = null;
for (let i = 0; i < n; i++) {
for (let j = 0; j < n; j++) {
if (matrixi === 1) {
parent.push(i);
child.push(j);
}
}
}
for (let i = 0; i < n; i++) {
if (parent.indexOf(i) === -1) {
root = i;
}
}
let node = new Node(root);
for (let i = 0; i < n; i++) {
if (i !== root) {
constructTreeUtil(node, parent[i], child[i]);
}
}
return node;
}"See full answer