gpt4 book ai didi

applescript - 如何使用AppleScript创建不重复的随机数

转载 作者:行者123 更新时间:2023-12-02 02:02:22 26 4
gpt4 key购买 nike

试图弄清楚如何使用applescript创建非重复数字。如果我只希望随机数1或2,我希望我的结果是[1、2]或[2、1],而不是[1、1]或[2、1]。

因此,我基本上只需要想出一种方法即可确保数字是非重复的,其他我知道该怎么做。如果我可以在applescript中运行unix命令,请告诉我。

最佳答案

下一个applescript将生成非重复的随机数对-范围为1..100

set maxValue to 100
set thePairs to {}
repeat until (count thePairs) = 2
set randomNumber to (random number from 1 to maxValue)
if thePairs does not contain {randomNumber} then set end of thePairs to randomNumber
end repeat
thePairs

我希望比您不要再将问题修改为其他问题。

关于applescript - 如何使用AppleScript创建不重复的随机数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16628028/

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