gpt4 book ai didi

clojure - 如何每次从重复的函数中获取不同的值?

转载 作者:行者123 更新时间:2023-12-02 05:36:14 25 4
gpt4 key购买 nike

我每次都得到 10 个相同的结果:

(repeat 10 (rand 10))

例如:

=> (2.54681114871718 2.54681114871718 2.54681114871718 2.54681114871718 2.54681114871718 2.54681114871718 2.54681114871718 2.54681114871718 2.54681114871718 2.54681114871718)

我假设这是某种内存,对吗?如何每次获得不同的值?

最佳答案

repeat 返回包含给定值的序列,因此 (rand 10) 作为参数被计算一次。您可以使用 repeatedly 函数:

(repeatedly 10 #(rand 10))

关于clojure - 如何每次从重复的函数中获取不同的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48870788/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com