-
-
Save havenwood/e9c286c524f2de5649586e7d28fec7af to your computer and use it in GitHub Desktop.
Just for fun, here's an alternate solution:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
concatenated_size = 0 | |
sentences.slice_when do |sentence| | |
concatenated_size += sentence.size | |
concatenated_size = 0 unless concatenated_size < 1500 | |
end.map &:join |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment