Forked from anonymous/finitud-4clojure-solution22.clj
Created
February 4, 2012 18:57
-
-
Save finitud/1739480 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; finitud's solution to Count a Sequence | |
;; https://4clojure.com/problem/22 | |
(fn [x] | |
((fn [x n] | |
(if (= (rest x) ()) | |
n | |
(recur (rest x) (+ n 1))) | |
) | |
x 1)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment