fork download
  1. (defn mz [f]
  2. (let [q (int-array 1000 0)]
  3. (fn [x]
  4. (when (= 0 (aget q x))
  5. (aset q x (f x)))
  6. (aget q x))))
  7.  
Success #stdin #stdout 0.69s 335552KB
stdin
Standard input is empty
stdout
Standard output is empty