Tip 1 : Be honest
Tip 2 : Don't lie on your resume
Tip 1: Prepare your projects well
Tip 2: Don't lie about any project or role
There were 2 coding questions based on DSA core concepts like maps, strings, and arrays.
Each pair should be sorted i.e the first value should be less than or equals to the second value.
Return the list of pairs sorted in non-decreasing order of their first value. In case if two pairs have the same first value, the pair with a smaller second value should come first.
use two pointer method
1. Start checking from the end of the linked list and not from the beginning. For example, if the linked list is ( a, b, a ,b, a) and the string is equal to “aba” , then the answer should be (a b), not (b a).
2. After removing an occurrence check again for new formations.
apply stl string library
It was a basic HR round
Tip 1: Be confident
Tip 2: Prepare your introduction
Tip 3: Don't lie on your resume
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the purpose of the < title > tag in HTML?