Ho presentato la mia candidatura tramite un selezionatore. La procedura ha richiesto un giorno. Ho sostenuto un colloquio presso Balyasny Asset Management nel mese di dic 2025
Colloquio
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.
```