DEV Community

Discussion on: Daily Challenge #87 - Pony Express

Collapse
 
gustavosfq profile image
Gustavo Flores

My code in JS

const riders = (array = []) => Math.ceil(array.reduce((a, b) => a + b, 0) / 100);
Enter fullscreen mode Exit fullscreen mode