"We can use a pool of memory where each index we can store the parent of current index then we can use same lca approach for array instead of pointers."
Sourav K. - "We can use a pool of memory where each index we can store the parent of current index then we can use same lca approach for array instead of pointers."See full answer
"I started by saying I like to understand what problems are they trying to solve. Often customers are asking for the features without knowing the problem"
Soraya S. - "I started by saying I like to understand what problems are they trying to solve. Often customers are asking for the features without knowing the problem"See full answer
Product Manager
Product Strategy
+2 more
🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.
"• Leadership and Team Management:
• Lead, mentor, and develop a team of software engineers, fostering a collaborative and high-performance work environment.
• Conduct regular one-on-one meetings, performance reviews, and career development sessions with team members.
• Facilitate effective communication and collaboration within the team and with other departments.
• Project Management:
• Oversee the planning, execution, and delivery of engineering projects, ensuring they are completed on time, w"
Scott S. - "• Leadership and Team Management:
• Lead, mentor, and develop a team of software engineers, fostering a collaborative and high-performance work environment.
• Conduct regular one-on-one meetings, performance reviews, and career development sessions with team members.
• Facilitate effective communication and collaboration within the team and with other departments.
• Project Management:
• Oversee the planning, execution, and delivery of engineering projects, ensuring they are completed on time, w"See full answer
"LinkedIn as a platform is targeted primarily towards professionals who use it to search for and apply to jobs. Professionals can also share content like career updates, thought leadership, achievements etc.
The business model of LinkedIn is twofold:
Ads revenue in the content section
Promoted job posts from recruiters
Evaluate the business model of competitor and which customer unmet needs are they solving.
Evaluate what impact is it having on our business - are DAU / WAU going down / job p"
Rahul J. - "LinkedIn as a platform is targeted primarily towards professionals who use it to search for and apply to jobs. Professionals can also share content like career updates, thought leadership, achievements etc.
The business model of LinkedIn is twofold:
Ads revenue in the content section
Promoted job posts from recruiters
Evaluate the business model of competitor and which customer unmet needs are they solving.
Evaluate what impact is it having on our business - are DAU / WAU going down / job p"See full answer
"Clarifying Questions:
Platforms - Is it a web-based, mobile-based, or both? = Picking both
For payment are we partnering with other providers like paypal, stripe? = assuming yes
Partnering with shipping companies for shipment ?
Is it online delivery? or just pick up within local markets?
Expected number of daily users?
Users:
Sellers: People who sell fruits or vegetables or both
Buyers: People who buy fruits and vegetables
Note:
For product design, I would just focu"
Anjan - "Clarifying Questions:
Platforms - Is it a web-based, mobile-based, or both? = Picking both
For payment are we partnering with other providers like paypal, stripe? = assuming yes
Partnering with shipping companies for shipment ?
Is it online delivery? or just pick up within local markets?
Expected number of daily users?
Users:
Sellers: People who sell fruits or vegetables or both
Buyers: People who buy fruits and vegetables
Note:
For product design, I would just focu"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
"
Summary of chapter for students to enable quick learning for revision
Summary of books for readers so that they can make better decision to choose the book
Summary of vedas to easily understand and teach the religious texts
Summary of news articles for readers to quickly review the articles and then deep dive into specific topic
Summarizing the legal documents for users to understand easily and ensure the authenticity and correctness of the documents
Summarize research reports and s"
P D. - "
Summary of chapter for students to enable quick learning for revision
Summary of books for readers so that they can make better decision to choose the book
Summary of vedas to easily understand and teach the religious texts
Summary of news articles for readers to quickly review the articles and then deep dive into specific topic
Summarizing the legal documents for users to understand easily and ensure the authenticity and correctness of the documents
Summarize research reports and s"See full answer