Tip 1 : Practice questions online
Tip 2 : Resume should be confined
Tip 3 : Prepare your projects thoroughly and improve communication skills
Tip 1 : Resume should be confined
Tip 2 : Format of resume should be representable
It was a 90 minutes coding test containing 30 MCQs, 15 of DSA and 15 of logical reasoning with two coding questions. It was held in the afternoon.



1. You can return the list of values in any order. For example, if a valid triplet is {1, 2, -3}, then {2, -3, 1}, {-3, 2, 1} etc is also valid triplet. Also, the ordering of different triplets can be random i.e if there are more than one valid triplets, you can return them in any order.
2. The elements in the array need not be distinct.
3. If no such triplet is present in the array, then return an empty list, and the output printed for such a test case will be "-1".
First sort it and then solve it with 2 pointer approach, check in every iteration
30 minutes interview round in afternoon, where interviewer asked puzzles, about my background, about my projects.


Suppose we have a function boolean allUnique(String substring) which will return true if the characters in the substring are all unique, otherwise false. We can iterate through all the possible substrings of the given string s and call the function allUnique. If it turns out to be true, then we update our answer of the maximum length of substring without duplicate characters.
Now let's fill the missing parts:
To enumerate all substrings of a given string, we enumerate the start and end indices of them. Suppose the start and end indices are ii and jj, respectively. Then we have 0 \leq i \lt j \leq n0≤i
To check if one string has duplicate characters, we can use a set. We iterate through all the characters in the string and put them into the set one by one. Before putting one character, we check if the set already contains it. If so, we return false. After the loop, we return true.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: