Skip to content

Instantly share code, notes, and snippets.

@aperiodic
Created December 12, 2014 19:37
Show Gist options
  • Save aperiodic/f3f41766d1dba44ca2cb to your computer and use it in GitHub Desktop.
Save aperiodic/f3f41766d1dba44ca2cb to your computer and use it in GitHub Desktop.
transform-n
(defn transform-n
[n words]
(->> words
(partition n 1)
(reduce (fn [acc [w next-w]]
(update-in acc
[w next-w]
(fnil inc 0)))
{})))
(transform-n 2 ["it" "was" "a" "dark" "and" "stormy" "night"])
(transform-n 4 ["it" "was" "a" "dark" "and" "stormy" "night"])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment