Skip to content

Instantly share code, notes, and snippets.

@eungju
Created October 31, 2014 02:24
Show Gist options
  • Save eungju/9f70f9c8f5f575da4f7b to your computer and use it in GitHub Desktop.
Save eungju/9f70f9c8f5f575da4f7b to your computer and use it in GitHub Desktop.
Look and Say
[1] |> Stream.iterate(fn(x) -> x |> Enum.chunk_by(&+/1) |> Enum.flat_map(fn([x|_]=c) -> [x, Enum.count(c)] end) end) |> Enum.take(10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment