First round was coding round. It went well. Second round was difficult as he was asking related to cloud computing, advanced SQL etc. For a company which does not even have its own LinkedIn page, has the audacity to ask about cloud computing for a mere stipend of 10k. Pathetic second round. If I know all this then why would I go for internship in the first place? Worst experience.....
I applied online. The process took 1 day. I interviewed at Brave AI Lab in Mar 2023
Interview
First they had a telephonic interview later next day it was a coding round on Google Meet with screen sharing on I was not able to get the desired output on Google colllab So unfortunately I couldn't move ahead. But it was a very nice behavior from Yash Sir.
Interview questions [1]
Question 1
You are given an integer list coins representing coins of different denominations and an integer amount representing a total amount of money. Return the fewest number of coins that you need to make up that amount. If that amount of money cannot be made up by any combination of the coins, return {}. You may assume that you have an infinite number of each kind of coin. Example 1: Input: coins = [1, 5, 6, 9, 15], amount = 31 Output: {15:2, 1:1} Example 2: Input: coins = [1, 5, 6, 9, 15], amount = 100 Output: {15:6, 9:1, 1:1}