Although the interviewers are late: two times, they are polite and kind. One is located in China, one is in the US I guess. The HR is fine as well. And the waiting procedure is super long.
I applied online. The process took 3 days. I interviewed at TikTok
Interview
I just received the OA and that's all but the questions were so difficult. There were questions about strings and arrays. I managed to solve 2 out of the 4
I applied online. I interviewed at TikTok (California City, CA) in Aug 2023
Interview
a phone screening with HR. After that, attend three interviews with potential teammates, cross-functional colleagues and the hiring manager. Each interview usually lasts 30 minutes to an hour, and the hiring manager generally conducts it over a video call.
Interview questions [1]
Question 1
1. Given an array nums which consists of only '0's and '1's where '1' denotes there's a stone at a given position, an index p, and an integer k. Find the minimum steps needed to stack at least k stones at position p. Within one step, you're only allowed to move one stone to an adjacent position. # nums: [1,0,1,0,0,1] # k: 2 # p: 2 # result=2 Followup:# Given an array nums which consists of only '0's and '1's where '1' denotes there's a stone at given position, and an integer k. Find the minimum steps needed to stack at least k stones. Within one step, you're only allowed to move one stone to an adjacent position. 2. Design Ticketmaster 3. Basic Calculator III