Ho presentato la mia candidatura tramite un'agenzia di reclutamento personale. La procedura ha richiesto 5 giorni. Ho sostenuto un colloquio presso Remind (New York, NY) nel mese di giu 2019
Colloquio
Typical west coast interview. Divide and conquer Algorithm question, code design question, behavorial, and system architecture. Interviewers were nice and informative. Study cracking the coding interview is the best advice.
Ho presentato la mia candidatura online. Ho sostenuto un colloquio presso Remind
Colloquio
Phone screen
In person interviews, 5 about an hour each.
Live coding, white board design, general QA . No raw algorithmic questions, always in context
Lunch with the team to get to know them better. All excellent people
Domande di colloquio [1]
Domanda 1
Handling large traffic from a frontend perspective
Ho presentato la mia candidatura online. La procedura ha richiesto 4 settimane. Ho sostenuto un colloquio presso Remind (San Francisco, CA) nel mese di dic 2015
Colloquio
I had apply to interview at Remind in the month of December 2015, I applied through their website and promptly got a call from recruiter.
After a couple of times going back and forth with the scheduling interview. I finally got a call for phone screen through coderpad.
The interview question was pretty straight forward, but some how i kind of fumbled in the implementation and got rejected
Domande di colloquio [2]
Domanda 1
Given a credit card number, find the issuer of the credit card based on the following rules:
CC number starts with
'4026', '417500', '4405', '4508', '4844',
'4913', '4917'
CC len : 16
Issuer : VISAELECTRON
CC number starts with: '4'
CC len : 16
Issuer: VISA
CC number starts with: '34', '37'
CC len : 15
Issuer : AMEX
CC number starts with: '36'
CC len : 14
Issuer : Diners Club
TestCases:
find_issuer('4175004175004172') == 'VISAELECTRON'
find_issuer('4917491749174917') == 'VISAELECTRON'
find_issuer('346416800707698') == 'AMEX'
find_issuer('376416800707698') == 'AMEX'
find_issuer('37641680070769832112') == 'UNAVAILABLE'
find_issuer('36641680070769') == 'DC'
find_issuer('54545641680070769') == 'UNAVAILABLE'
find_issuer('4111111111111111') == 'VISA'