I applied through a recruiter. The process took 1 day. I interviewed at Balyasny Asset Management in Dec 2025
Interview
The interviewer was highly disrespectful, unprofessional, condescending, and lacked compassion. They made some snarky comments (strongly suggesting that they thought I was stupid), and lost their temper. Bridge burned: bye-bye forever BAM.
Implement the `curry()` function.
E.g.
```
const add = (a, b, c) => a + b + c;
const curriedAdd = curry(add);
console.log(curriedAdd(1)(2)(3)); // prints 6.
console.log(curriedAdd(1, 2)(3)); // also prints 6.
```