Created
September 27, 2016 06:39
-
-
Save bremac/822503d3813358669b2f77224f8f54cc to your computer and use it in GitHub Desktop.
Run-length encoding in APL
This file contains hidden or 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
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