Rivigo Interview Experience for SDE-2 Last Updated : 29 Jun, 2020 Comments Improve Suggest changes Like Article Like Report Round 1(Interviewer = SDE2): This round was totally DSA. I was asked 4 coding questions. Two of the coding questions I remember : Que1: Given an array containing 0 or 1 only. Find maximum subarray with equal number of zeroes and ones? Solution: I first tried solving using brute approach O(n^2) by iterating n times for each index but later got to optimal solution using cumulative sum approach where first step is changing array to cumulative sum array , for element =0 decrement sum by 1 and for element =1 increment sum by 1. Now in updated array, a subarray which have start and end as same element will correspond to equal number of zeroes and ones. Now we have to find the maximum subarray by iteration for each index i. Que2: Find maximum palindrome in a string ? Solution: For each index i assume it to be mid in palindrome , now find leftmost index i and rightmost index j where a[i] == a[j]. This works in O(n*2). Round 2 (Interviewer = Lead Engineer): This round was of System Design. I was given 1 problem which was asked to implement in any language. Que: Implement LRU Cache with capacity c in Java? Solution: I used HashMap and doubly linked list which supports get(key), put(key,value) operations in O(1) and always least recently used data will be removed from the list if number of elements crossed capacity c. Round 3(Interviewer = Engineering Manager ): This round was of API Design Que: I was given problem to build upload/review bill system. Was asked to write any one API Round 4: (Interviewer = VP): This round was non tech round. Que1: Tell me about myself Que2: Why wants to join Rivigo Que3: Most challenging problem I worked on till now Round 5: (Interviewer = Cofounder): This round was also non tech round. Normal discussion upto what depth I have worked in previous companies and do I meet the criteria for this company. Comment More infoAdvertise with us Anonymous Improve Article Tags : Interview Experiences Experiences Rivigo Marketing Similar Reads Ola Interview Experience for SDE 2 Round 1(DSA): Kind of Machine Coding 2 questions were asked and I was asked to solve either of them. I was asked a graph type problem but it was solvable using Hashmap and HashSet Another question was to make LRU cache(DLL + HM) with some constraints. Round 2(HLD): Resume deep levelDesign Spotify (m 1 min read OYO Interview Experience for SDE -2 Year of Experience: 3.9 Years. There are four rounds in total. Round 1(Screening Round): Duration: 60 minutes. find pair in an array whose sum is equal to KDesign Multi-level Parking lot (classes)Questions related to Java: Generic classes, Locks in java. Design pattern Round 2(DS Round): Duration: 6 1 min read Mitsogo Interview Experience for SDE I had the opportunity to participate in Mitsogo's off-campus recruitment process, which consisted of six rounds, with a potential seventh round in certain cases. Each round was an elimination round, and the details of the process are as follows:Rounds Overview:Online Assessment 1 (Aptitude & Log 4 min read Isango Interview Experience for SDE 2023 I applied for a position as a Software Developer trainee at ISANGO! through Campus Recruitment Process. The whole process was so smooth and the interviewers were so friendly and helpful. Firstly they shortlist the students from resumes. The hiring process of Isango! India Pvt. Ltd has 4 rounds: Roun 2 min read Koo Interview Experience for SDE Round-1The first round comprised 3 coding questions on the HackerEarth Platform (Test Duration: 1 hour): In the coding round, questions were of easy to medium level. Find if there is a subarray with a 0 sum Suggestion: I would suggest doing practice from sites like GeeksforGeeks, etc. as it will giv 2 min read Odoo Interview Experience for SDE Interview Experience for SDE Role at Odoo: Application Submission: You submit your resume and application through Odoo's careers portal or via a recruitment platform. Resume Review: The HR team at Odoo reviews your resume and decides to proceed with scheduling an interview based on your qualificatio 2 min read Like