Skip to content

Instantly share code, notes, and snippets.

@Modicrumb
Last active October 1, 2017 00:57
Show Gist options
  • Save Modicrumb/2c7ddecb94a038f4d0e5e348a980bdc1 to your computer and use it in GitHub Desktop.
Save Modicrumb/2c7ddecb94a038f4d0e5e348a980bdc1 to your computer and use it in GitHub Desktop.
test.clj
(fn thenth [collection x]
(loop [ collection collection
x x
idx 0
]
(if (first collection)
(if (= idx x)
(first collection)
)
(recur thenth [(rest collection)
x
(inc idx)]
)
)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment