Post History
Husk, 4 bytes Sz#ḣ Try it online! Explanation Sz#ḣ Sz zip the input ḣ with its prefixes # using the count function
#1: Initial revision
# [Husk], 4 bytes
Sz#ḣ
[Try it online!][TIO-knmv1ekm]
[Husk]: https://github.com/barbuz/Husk
[TIO-knmv1ekm]: https://tio.run/##yygtzv7/P7hK@eGOxf///4821DHUMQJDQzA01jGOBQA "Husk – Try It Online"
## Explanation
```
Sz#ḣ
Sz zip the input
ḣ with its prefixes
# using the count function
