I applied online. The process took 1 week. I interviewed at GeeksForGeeks (New Delhi) in Sep 2022
Interview
- Applied through company portal of GFG and LinkedIn.
- Got a call after few weeks
- Role applied for Frontend developer (React JS)
- Round - 1 -> DSA (easy - medium level)
- Round - 2 -> Frontend Basics (HTML, CSS, JS and React JS)
- HR Round
Interview questions [1]
Question 1
Q-1 Find repeating elements in an array.
Time Complexity - O(n)
Space Complexity - O(1)
https://practice.geeksforgeeks.org/problems/find-duplicates-in-an-array/1
Q-2 Sort colors (leetcode - array of 0,1 and 2).
Time Complexity - O(n)
Space Complexity - O(1)
https://leetcode.com/problems/sort-colors/