Summary
I interviewed for a Software Developer position at Roadzen, which consisted of two rounds covering resume-based questions, JavaScript, React, a coding problem, an introduction, and a data structures question.
Full Experience
As a fresher, I went through two interview rounds for the Software Developer role. The first round began with questions related to my resume, followed by inquiries on advanced JavaScript and intermediate React concepts. Towards the end, I was given a coding challenge, which was the Valid Parentheses problem. The second round was quite brief, lasting about 15 minutes. It started with a general introduction, and then the interviewer asked a specific data structures question: 'What is the best data structure to store the positions in the Snake and Ladder game?'
Interview Questions (2)
Given a string s containing just the characters '(', ')', '{', '}', '[', ']', determine if the input string is valid. An input string is valid if: Open brackets must be closed by the same type of brackets. Open brackets must be closed in the correct order. Every close bracket has a corresponding open bracket of the same type.
What is the best data structure to store the positions in the Snake and Ladder game?