I applied online. The process took 7 weeks. I interviewed at Nimbuspost (Gurgaon, Haryana) in Jul 2023
Interview
There were 3 interview . one of is DSA , Backend and other one is HR interview . DSA Round is consist of medium and easy question and in backend interview they ask about GOlang question and then follwed by the a HR round
It was great but I did not join because I did not like the interview conducted onsite because they asked complex questions but still I will recommend to someone who needs a job real quick
I applied online. The process took 2 days. I interviewed at Nimbuspost (Gurgaon, Haryana) in Oct 2024
Interview
I got a call for the interview from the company. Before interview process you have to pass a written assessment, it includes easy to medium level DSA questions, and patterns to solve.
Interview questions [2]
Question 1
Given an array of integers nums containing n + 1 integers where each integer is in the range [1, n] inclusive.
There is only one repeated number in nums, return this repeated number.
You must solve the problem without modifying the array nums and using only constant extra space.
Constraints:
-> 1 <= n <= 10^5
-> nums.length == n + 1
-> 1 <= nums[i] <= n
-> All the integers in nums appear only once except for precisely one integer which appears two or more times.
Follow up:
->How can we prove that at least one duplicate number must exist in nums?
->Can you solve the problem in linear runtime complexity?
Given an array nums with n objects colored red, white, or blue, sort them in-place so that objects of the same color are adjacent, with the colors in the order red, white, and blue.
We will use the integers 0, 1, and 2 to represent the color red, white, and blue, respectively.
You must solve this problem without using the library's sort function.
Constraints:
-> n == nums.length
-> 1 <= n <= 300
-> nums[i] is either 0, 1, or 2.
Follow up: Could you come up with a one-pass algorithm using only constant extra space?