Skip to content

Instantly share code, notes, and snippets.

@adeel
Created May 20, 2012 23:02
Show Gist options
  • Save adeel/2759853 to your computer and use it in GitHub Desktop.
Save adeel/2759853 to your computer and use it in GitHub Desktop.
(defn delta-seq [xs]
(map
(fn [i]
(let [x (nth xs i)
x* (nth xs (inc i))]
(- x* x)))
(range (dec (count xs)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment