Skip to content

Instantly share code, notes, and snippets.

@skopp
Created May 30, 2013 12:48
Show Gist options
  • Select an option

  • Save skopp/5677591 to your computer and use it in GitHub Desktop.

Select an option

Save skopp/5677591 to your computer and use it in GitHub Desktop.
pairwise = (arr) ->
arr.map (item, index, _arr) ->
_arr.map((_item) ->
[item, _item] unless item is _item
).filter Boolean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment