Tip 1 : Keep on toughing it out until you get hang of it.
Tip 2 : Be consistent.
Tip 1 : Put more on the technical side of things rather than hobbies and non-tech achievements
Tip 2 : Try to cover good projects
Consisted of 2 DSA problems and other web tech questions.
Around Noon
Google Meet
Interviewer was quite friendly and chill



1. Not allowed to engage in more than 1 transaction at a time, which means if you have bought stock then you can buy another stock before selling the first stock.
2. If you bought a stock at ‘X’ price and sold it at ‘Y’ price then the profits ‘Y - X’.
It is not compulsory to perform an exact '2' transaction.
Gave the DP approach



For arr[ ] = { 10, 20, 30, 40}, matrix A1 = [10 * 20], A2 = [20 * 30], A3 = [30 * 40]
Scalar multiplication of matrix with dimension 10 * 20 is equal to 200.
Started with recursion
Then memoizaiton
in the end DP
Around Noon
Video Call
Interview was pretty chill



Use zero-based indexing for the vertices.
The given graph doesn’t contain any self-loops.
- was tricky to decode the problem into SCC
- But afterwards was pretty easy

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?