I applied through an employee referral. The process took 4 weeks. I interviewed at Overleap in Mar 2025
Interview
Schedule an interview on email with their recruiter, but the interview time they provide is only at night or weekend. The interview consists of two rounds of 60-minute coding interviews, covering medium-level leetcode problems
Interview questions [1]
Question 1
Problem Description:
Given a string s representing a basic mathematical expression with non-negative integers and operators (+, -, *, /), evaluate the expression following the standard operator precedence:
Multiplication (*) and Division (/) have higher precedence than Addition (+) and Subtraction (-).
Division is integer division (truncate towards zero).
No parentheses are included.
Example:
Input: "3+7*7-9/3"
Output: 49