Tip 1 : Always do search for questions asked previously in that company's interview.
Tip 2 : Do try to go through company profile and probably their technical blogs.
Tip 3 : Search for design problem statements similar to the company's use case
Tip 1 : Please keep it limited to one page only
Tip 2 : Highlight your strengths and if mentioning any project on it, do try to be well versed with it.
It was a 90minutes round with 3 programming questions which had an expiry on 6th August 2021, so I was supposed to take that test before this time. It was held on Hackerearth coding platform. For three questions, the distribution of scores was 20–50–100, which means one was easy, one medium, and one difficult.






Down: (row+1,col)
Right: (row, col+1)
Down right diagonal: (row+1, col+1)



I scheduled this round(DSA) for July 23, 2021. This was conducted on Google Hangouts. One was related to tree traversal and another was related to DP. I was able to solve both the questions. My interviewer was very helpful and gave me hints and helped me run through my approach
Result : HR called me on the same day to confirm date & time for the HM interview round.



The diameter of a binary tree is the length of the longest path between any two end nodes in a tree.
The number of edges between two nodes represents the length of the path between them.
Input: Consider the given binary tree:

Output: 6
Explanation:
Nodes in the diameter are highlighted. The length of the diameter, i.e., the path length, is 6.
I had a call with a managerial/tech lead level engineer from Sharechat team. He started by introductions and later on asked me a lot of questions based on my resume and stuff I have worked upon. Post that he gave me a problem on designing , which we discussed for 25-30mins .
Interviewer was extremely helpful and was happy to learn that I have already worked on most of the tech stack they used.
I was asked a question on how will I manage tagging posts on a social media platform(like hashtags on twitter) and how will I manage the redirection when a user clicks on one of them.
Tip 1 : Problems like these aren't meant to be concluded in 60mins and the interviewer is also well aware about it , he's just looking for an approach from your end and this can only be established if you clarify the requirements, ask proper questions and consider constraints like user base, rate limiting etc.

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?