Skip to content

Instantly share code, notes, and snippets.

@tomjack
Created April 19, 2011 04:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomjack/d37cc1b6a4855cce3581 to your computer and use it in GitHub Desktop.
Save tomjack/d37cc1b6a4855cce3581 to your computer and use it in GitHub Desktop.
(defn stabilize-by [f n s]
(->> s
(map (juxt f identity))
(partition n 1)
(filter (comp #{1} count set #(map first %)))
ffirst
second))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment