Skip to content

Instantly share code, notes, and snippets.

@bremac
Created September 27, 2016 06:39
Show Gist options
  • Save bremac/822503d3813358669b2f77224f8f54cc to your computer and use it in GitHub Desktop.
Save bremac/822503d3813358669b2f77224f8f54cc to your computer and use it in GitHub Desktop.
Run-length encoding in APL
s ← 'AAABABBBBSSWSWSSSSSSS'
runEnds ← (2 ≠/ s) , 1 ⍝ 1 if an element ends a run
counts ← ¯2 -/ 0 , runEnds / ⍳⍴ s ⍝ num elements in each run
counts ,¨ runEnds / s
3 A 1 B 1 A 4 B 2 S 1 W 1 S 1 W 7 S
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment