Tip 1 : Practice at least 50 questions for each renowned data structure, including Array, Linked List, Graphs, and various types of Trees.
Tip 2 : Avoid relying on Google or any other means to find solutions. Embrace the challenge of developing logical reasoning and solving problems on your own. It may take time, but the satisfaction of accomplishing it yourself is invaluable.
Tip 3 : Surround yourself with like-minded individuals who share your coding aspirations and maintain consistent dedication to coding. Their support and shared goals will propel you towards success.
Tip 1 : The one page resume
Tip 2 : The resume should have 3 -4 project or 1 internship project
the online round was around 10 in the morning. 10 MCQs on Computer Science Basics (OS, CN, Data structure)


There can be more than one possible array with maximum beauty. In that case, you can return any of them.
Evening around 5 pm



'arr '= [1,2,3,4,5]
'k' = 1 rotated array = [2,3,4,5,1]
'k' = 2 rotated array = [3,4,5,1,2]
'k' = 3 rotated array = [4,5,1,2,3] and so on.
Around 5:30 pm on the same day



If a string has 'x' repeated 5 times, replace this "xxxxx" with "x5".
The string is compressed only when the repeated character count is more than 1.
The consecutive count of every character in the input string is less than or equal to 9.

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?