Meta SDE Interview Question 2023 November | Backtracking & Math | Off-campus
Question · Posted Jun 2026
Question 1: Expression Add Operators Problem Statement Given a string num that contains only digits and an integer target, return all possibilities to insert the binary operators '+', '-', and/or '*' between the digits of num so that the resultant expression evaluates to the target value. Note that operands in the returned expressions should not contain leading zeros. Constraints 1 <= num.length <= 10 num consists of only digits. -231 <= target <= 231 - 1 Example Input: num = ...
The full answer & interview discussion are available to premium members.
Log in Create a free account