Candidatei-me por meio de recrutador(a). O processo levou 1 dia. Fui entrevistado pela Balyasny Asset Management em dez. de 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.
```