"I would get an personal understanding of the pain-points my customers, & business teams are facing. In my experience, spending more time, going deeper in the problem discovery helped me get a rough idea of the how important this problem is. If this is not resolved - what could be the consequences for our users & the business.
Given this broad idea,
I just simply evaluate them on value vs effort scale. The higher the score, higher the priority. Effort could be in T-shirt size or sto"
Abhishek s. D. - "I would get an personal understanding of the pain-points my customers, & business teams are facing. In my experience, spending more time, going deeper in the problem discovery helped me get a rough idea of the how important this problem is. If this is not resolved - what could be the consequences for our users & the business.
Given this broad idea,
I just simply evaluate them on value vs effort scale. The higher the score, higher the priority. Effort could be in T-shirt size or sto"See full answer
"Drew the following framework - Maturity of the tech (if it is too mature then consider buying), Competitors (how many, when are they launching this new tech etc.), Market Share of competitors, Financial considerations (build vs buy NVP), Collaborators for this tech, Economic Climate (Anti-trust, crisis etc.)"
Joohi M. - "Drew the following framework - Maturity of the tech (if it is too mature then consider buying), Competitors (how many, when are they launching this new tech etc.), Market Share of competitors, Financial considerations (build vs buy NVP), Collaborators for this tech, Economic Climate (Anti-trust, crisis etc.)"See full answer
"I like Spotify, because Spotify has a social element and an element of community that other music apps do not. The ability to see what friends are listening to, make playlists/jams with friends, and enjoy the "wrapped" at the end of the year (which is also an incredible social sharing tactic), is what sets it apart from other apps."
Madeline S. - "I like Spotify, because Spotify has a social element and an element of community that other music apps do not. The ability to see what friends are listening to, make playlists/jams with friends, and enjoy the "wrapped" at the end of the year (which is also an incredible social sharing tactic), is what sets it apart from other apps."See full answer
"As we can pass info to only one child at a time, I told that from any given node, we have to pass the info to that child(of this node) which has the largest subtree rooted at it. To calculate the subtree sizes, I used DFS. And then to calculate the minimum time to pass info to all the nodes, I used BFS picking the largest subtree child first at every node. I couldn't write the complete code in the given time and also made a mistake in telling the overall time complexity of my approach. I think t"
Lakshman B. - "As we can pass info to only one child at a time, I told that from any given node, we have to pass the info to that child(of this node) which has the largest subtree rooted at it. To calculate the subtree sizes, I used DFS. And then to calculate the minimum time to pass info to all the nodes, I used BFS picking the largest subtree child first at every node. I couldn't write the complete code in the given time and also made a mistake in telling the overall time complexity of my approach. I think t"See full answer
"
Broke down the problem in this:
Features scope
API design
Pseudo code for specific components
Data model/schema
Back-of-the-envelope calculations
Reference links
Link to whiteboard or diagram such as https://sketchboard.me/new
Good luck!
Considerations:
Content could be potential large
Older content should clean from the server
URL: Pastebin.com/2324234
Features Scope:
user can paste any text content .TXT, .HTML
Limit on the amount content
compress data and send over"
Ayo A. - "
Broke down the problem in this:
Features scope
API design
Pseudo code for specific components
Data model/schema
Back-of-the-envelope calculations
Reference links
Link to whiteboard or diagram such as https://sketchboard.me/new
Good luck!
Considerations:
Content could be potential large
Older content should clean from the server
URL: Pastebin.com/2324234
Features Scope:
user can paste any text content .TXT, .HTML
Limit on the amount content
compress data and send over"See full answer
"class Node
{
int val;
Node left, right;
Node(int v)
{
val = v;
left = right = null;
}
}
class BinaryTree
{
Node root1, root2;
boolean identicalTrees(Node a, Node b)
{
if (a == null && b == null)
return true;
if (a != null && b != null)
return (a.val == b.val
&& identicalTrees(a.left, b.left)
&& identicalTrees(a.right, b.right));
"
Tushar A. - "class Node
{
int val;
Node left, right;
Node(int v)
{
val = v;
left = right = null;
}
}
class BinaryTree
{
Node root1, root2;
boolean identicalTrees(Node a, Node b)
{
if (a == null && b == null)
return true;
if (a != null && b != null)
return (a.val == b.val
&& identicalTrees(a.left, b.left)
&& identicalTrees(a.right, b.right));
"See full answer
"Get an audience with the big player -
1) Talk about the camera tech KPI that your company has improved/
2) Talk about the technology itself
3) Talk about how it's better than the big player's competitors
4) Show a demo through a few benchmarks
5) Promise the big company that your company will support their product end to end if integrated into their product
6) Try to differentiate on pricing
7) Also show how the big player can win more in the market - maybe more user acquisition, or more engage"
Joohi M. - "Get an audience with the big player -
1) Talk about the camera tech KPI that your company has improved/
2) Talk about the technology itself
3) Talk about how it's better than the big player's competitors
4) Show a demo through a few benchmarks
5) Promise the big company that your company will support their product end to end if integrated into their product
6) Try to differentiate on pricing
7) Also show how the big player can win more in the market - maybe more user acquisition, or more engage"See full answer
"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
"I would define success by first figuring out what our goal is by building the reels feature. Are we trying to increase DAUs? Increase enagement? Etc... For the sake of this, I think to define success it makes most sense to see if there is an increase in the amount of time users are spending on instagram. If time spent per user increases, it is likely that ad spend can increase and in turn increases instagram's reveue.
We need to be sure that there are guard rails in place and make sure that by"
Josh L. - "I would define success by first figuring out what our goal is by building the reels feature. Are we trying to increase DAUs? Increase enagement? Etc... For the sake of this, I think to define success it makes most sense to see if there is an increase in the amount of time users are spending on instagram. If time spent per user increases, it is likely that ad spend can increase and in turn increases instagram's reveue.
We need to be sure that there are guard rails in place and make sure that by"See full answer
"Product management deals with new product development, enhancing existing products, monitoring the performance, planning, forecasting, monetization, pricing, product launch, and marketing of a product.
Personally, I would like to improve many aspects of Product management.
Try to understand the Product we are developing as much as possible. Brainstorm and think about long term goals and vision for product we are responsible for.
Hypothesize the Product vision and value of the product for"
Avi P. - "Product management deals with new product development, enhancing existing products, monitoring the performance, planning, forecasting, monetization, pricing, product launch, and marketing of a product.
Personally, I would like to improve many aspects of Product management.
Try to understand the Product we are developing as much as possible. Brainstorm and think about long term goals and vision for product we are responsible for.
Hypothesize the Product vision and value of the product for"See full answer