I applied online. The process took 2 weeks. I interviewed at Uber (Amsterdam) in Apr 2025
Interview
1st - interview with HR to understand your ambitions and expectations
2nd - live coding interview with Uber engineer on CodeSignal platform.
They just give the input, you have to figure out the output. In the end you have to run the code, but I suppose they do not give test cases, or they are given by the engineer manually, after you finish coding your solution
Interview questions [1]
Question 1
# There are N people who want to visit an escape room. The person will only go if at least L other people will go with them. Additionally, that person doesn't want to go with more than H other people, since it would ruin the experience for them. Find the maximum number of people that can go to the escape room at a time.
# Example input:
# 6
# 1 2
# 1 4
# 0 3
# 0 1
# 3 4
# 0 2