Round 1: There were four sections namely, code debugging, coding, workstyle assessment, and aptitude. The code debugging section consisted of 7 code snippets that were faulty and we had to debug them and find the correct output (20 minutes)
Problem 1: Given an array of N integers. Find the elements that appear more than N/3 times in the array. If no such element exists, return an empty vector. (Majority element)
Problem 2: Given two sorted arrays arr1 and arr2 of size m and n respectively, return the median of the two sorted arrays. (Link)