Run-length encoding: Difference between revisions

Content deleted Content added
Line 1,417:
</lang>
 
To make it fastfaster (it's also faster than the longer implementation above) just replace '''""''' with '''new StringBuilder''' and '''s+i+p''' with '''{s.append(i);s.append(p)}'''
 
=={{header|Smalltalk}}==