Tip 1 : During Hackathon recruitments, it's important to talk with the recruiter and understand how could you improve the project.
Tip 2 : Work on innovative solutions for problems that others might take as too difficult to comprehend. No matter how silly it looks as long as you can make it work and show practicality, it'll be well received.
Tip 1 : Crisp and Precise, preferably 1 page.
Tip 2 : Links to coding platforms where you regularly practice.
A simple development problem and a coding question were in this round
Design a recommendation engine for users for a site similar to dell's online shopping portal



An Anagram is a word or phrase formed by rearranging the letters of a different word or phrase. We can generalize this in string processing by saying that an anagram of a string is another string with the same quantity of each character in it, in any order.
{ “abc”, “ged”, “dge”, “bac” }
In the above example the array should be divided into 2 groups. The first group consists of { “abc”, “bac” } and the second group consists of { “ged”, “dge” }.
Basic HR Interview with basic HR kind of questions and one coding question
Just stay honest and stay confident

Input: ‘N’ = 5
'ARR' = [-1, -1, 2, 0, 1]
Output:
-1 -1 2
-1 0 1
Explanation:
(-1 -1 +2) = (-1 +0 +1) = 0.

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?