Tip 1 : Consistency is the Key
Tip 2 : Quantity of questions doesn't matter, quality does.
Tip 3 : Get the concepts spot on and practice applying them on coding and system design questions.
Tip 4 : Practice, practice, practice...
Tip 1 : Keep a one page resume with only the best things about yourself.
Tip 2 : Emphasize more on projects, work experience, coding platforms rating.
Tip 3 : Describe your projects and work experiences in detail, don't give one liners.
Test was in the afternoon, the platform was user friendly.



We have an array ARR = {1, 2, 3, 4, 5, 6} and M = 3 , considering 0
based indexing so the subarray {5, 6} will be reversed and our
output array will be {1, 2, 3, 4, 6, 5}.
I submitted a brut force solution and it passed all the cases.



The given linked lists may or may not be null.
If the first list is: 1 -> 4 -> 5 -> NULL and the second list is: 2 -> 3 -> 5 -> NULL
The final list would be: 1 -> 2 -> 3 -> 4 -> 5 -> 5 -> NULL
I solved it using brut force approach and it passed all the test cases.
It was a face to face with one interviewer.
The interview took place in google meets.



I first gave a brut force solution by iterating the entire string and stored all the individual words and formed another string in reverse order.
Interviewer was satisfied and asked me to code.
After coding he asked to optimize it if I can without storing each word.
then I gave this solution, go through the string and mirror each word in the string, then, in the end, mirror the whole string.
He was satisfied with the approach and didn't ask me to code.



For the given example below, the trees are mirror images of each other.
I gave him a recursive Inorder traversal approach, he was satisfied with the solution and didn't ask me to code.
It was a system design round.
There was only one interviewer.
Design a Snake and ladder game using oops.
Tip 1: Don't assume stuff, get clarity on the topic and expected solution, get clarity with all the edge cases of the question.
Tip 2: Use all the oops concepts efficiently.
Tip 3: Write a readable code with proper naming convention and indentations.
It was in the morning.
there was only one interviewer.
why Hashedin, where are you from, describe yourself, positives and negatives.
Tip 1: Know about the company, what it does and why do you want to join.
Tip 2: Know about the role you are applying and why you are a perfect fit to that role.
Tip 3: Prepare your introduction well, that drives your entire interview, say stuff that you are good at and keep the interviewer invested in you.

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?