Practo Senior Software Engineer Interview Experience
Senior Software Engineer
Summary
AI Powered
The Practo interview process consisted of one round that focused primarily on coding problems. Candidates can expect to tackle the Leetcode Gas Station Problem and a variation of the Mice and Cheese question, both classified as medium difficulty. Overall, the interview at Practo appears to provide a solid challenge for candidates, emphasizing problem-solving skills.
1
#1Leetcode Gas Station Problem
Medium
greedy
array
problem-solving
Solve the Gas Station problem where you need to determine the starting gas station's index from which you can travel around the circuit once without running out of gas. A circuit is represented as an array of gas stations with their respective gas amounts and an array of distances to the next station. Consider the constraints and provide a brief explanation of your approach.
#1
Leetcode Gas Station Problem
Solve the Gas Station problem where you need to determine the starting gas station's index from which you can travel around the circuit once without running out of gas. A circuit is represented as an array of gas stations with their respective gas amounts and an array of distances to the next station. Consider the constraints and provide a brief explanation of your approach.
greedy
array
problem-solving
Medium
#2Mice and Cheese Variation
Medium
dynamic-programming
greedy
problem-solving
In the Mice and Cheese problem, you need to calculate the maximum amount of cheese that can be eaten by two mice given their starting points and the positions of the cheese. Formulate a plan and provide a solution algorithm to address this problem.
#2
Mice and Cheese Variation
In the Mice and Cheese problem, you need to calculate the maximum amount of cheese that can be eaten by two mice given their starting points and the positions of the cheese. Formulate a plan and provide a solution algorithm to address this problem.
dynamic-programming
greedy
problem-solving
Medium
A
Anonymous
Anonymous User