Filtering a list in dependence of that list in clojure

后端 未结 0 336
予麋鹿
予麋鹿 2021-01-26 07:13

Suppose you have the following code to get all primes until a parameter:

(defn my-filt [x z]
   (or (not= 0 (mod z x))
                    (= z x)


     )
)

(de         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题