Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
该randIntNoRep(命令已针对 OS 2.53MP 及更高版本上的 TI-84+/SE 计算器发布。
randIntNoRep(
当您需要以随机顺序创建不重复整数的数字列表时,使用该命令。它对于改组任何数字的序列非常有用。如何在早期版本(操作系统或设备方面)上实现此功能?
You can randomize a list by swapping its elements, like this.
:For(F,1,dim(L1)) : iPart(dim(L1)rand+1)->R : L1(R)->T : L1(F)->L1(R) : T->L1(F) :End
This randomize L1, assuming L1 has all the elements you want it to.