Implement composeEventHandlers(...handlers) that:
1. Returns a single function that calls each provided handler in order.
2. Skips null/undefined handlers.
3. Stops calling subsequent handlers if any handler calls
event.stopPropagation() (check event.isPropagationStopped?.()).
solve(handlerCount, stopAt, callCount) builds composed handlers and
returns which indices were called when triggered.
Sample tests