Me postulé a través de un reclutador. El proceso tomó 1 día. Acudí a una entrevista en Balyasny Asset Management en dic 2025
Entrevista
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.
```