我正在尝试实现程序中的一项功能。我在 func3 中有 list=[abc] 作为参数。我想测试这些项目的相等性。如果它们不相等,我将使用 func2 的另一个列表返回再次调用它。这是我需要做的。我希望 Conj 执行此操作 [list list1 list2 list3] 直到 func3 具有相等的项目。在我的函数中,当条件为假时,我希望 conj 将一个空向量 r[] 合并到其他列表。我现在得到的只是条件为真时的最终列表返回。假设条件必须为假(项目不相等)才能为真。有人可以帮我在错误的情况下使用 conj。谢谢。
;input [1 2 3]
;output [[1 2 3][1 3 4] [3 4 5] ]// numbers for demo only
(defn func3 [list]
(loop [v (vec list) r []]
(if(= (v 0) (v 1) (v 2))
(conj r v)
(let[result (func2 v)]
;i want to merge result to r until the condition is true
(conj r result)
(func3 result)))))