J'ai postulé via un recruteur. Le processus a pris 1 jour. J'ai passé un entretien chez Balyasny Asset Management en déc. 2025
Entretien
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.
```