Tip 1 : Try to solve as much as the problem you can
Tip 2 : Do not try to copy code instead of writing a code in an optimized way
Tip 3 : Learn --> understand problem--> develop Logic ---> then do code
Tip 1 : Include your Practical Projects and About your git hub repository
Tip 2 : Include that thing only that you can answer
It included 15 MCQs and 2 coding questions, and it was a screening round as they are actively recruiting so there were only 2 rounds not more than that.



A 'deep copy' of a linked list means we do not copy the references of the nodes of the original linked list, rather for each node in the original linked list, a new node is created.
In the first pass, create a copy of the original linked list. While creating this copy, use the same values for data and arbitrary_pointer in the new list. Also, keep updating the map with entries where the key is the address to the old node and the value is the address of the new node. Once the copy has been created, do another pass on the copied linked list and update arbitrary pointers to the new address using the map created in the first pass. Learn in-demand tech skills in half the time.



If the given list is {1 -> -2 -> 3} (which is sorted on absolute value), the returned list should be {-2 -> 1 -> 3}.
I gave the solution of merge-sort on the linked list. Given that to prepare a certain ingredient we may require another ingredient i.e. To prepare ingredient A we require ingredient B.(A -> B) To prepare ingredient B we require ingredient C.(B -> C) To prepare ingredient C we require ingredient A.(C -> A)
This round is a mixed-up round, not a coding round. there were two-person one is hr and one is technical, Technical person asked me about data structure and algorithms mainly.



1. The grid has 0-based indexing.
2. A rotten orange can affect the adjacent oranges 4 directionally i.e. Up, Down, Left, Right.

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?