OP, if you are good at Haskell, please help me with one problem.
I'm receiving a [String] and a Int and I want to divide it into [[String]], via a max number of Int characters for segment.
In example: ["hello","my","pig"] and 7 return [["hello","my"],["pig"]]
Can you help me with this recursion? Thank you so much, Anonymous!