
14 Jun
2007
14 Jun
'07
12:02 p.m.
On Thu, 14 Jun 2007, Janis Voigtlaender wrote:
Anyway, as a challenge to others on the list: write a one-liner that splits an "image" like ["abcd","efgh","ijkl","mnop"], interpreted as
abcd efgh ijkl mnop
into the list of images:
[ ab ef , cd gh , ij mn , kl op ]
It's just an additional 'concat' in my solution, isn't it? Ah, you mean without the 'split' helper function?