J'ai postulé en ligne. Le processus a pris 4 semaines. J'ai passé un entretien chez Remind (San Francisco, CA) en déc. 2015
Entretien
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
Questions d'entretien [2]
Question 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'
J'ai postulé en ligne. J'ai passé un entretien chez Remind
Entretien
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
Questions d'entretien [1]
Question 1
Handling large traffic from a frontend perspective
J'ai postulé via une agence de recrutement. Le processus a pris 5 jours. J'ai passé un entretien chez Remind (New York, NY) en juin 2019
Entretien
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.