In Eric Normand’s talk at Clojure/west he covers the benefits of generative testing. He specifically covers Clojure, although generative testing can be used for any...
My post a few weeks ago about implementing minimax in Clojure was written in a linear recursive way. Another way to write the same algothrim...
Hash functions can be particularly useful for searching through a database with a large amount of data. For example, lets say you have a very...
This week I spent most of my time implementing Minimax in Clojure. Upon first approaching the problem I thought my implementation would be similar to...
Lazy sequences are powerful tools in Clojure. But before we dive further into lazy sequences I want to briefly go over the differences between a...