24
任意随机
随机性很有趣。没有意义的挑战很有趣。 编写一个函数,在给定整数输入的情况下n,将输出介于和(包括)之间的一组(无序,唯一的)精确n随机整数,以使所有整数的总和等于。1n^2n^2 随机性也不会是均匀的,只要每个有效集有发生非零机会。 以字节为单位的最短答案(每种语言)获胜。 例子 Input (n) = 1, Target (n^2) = 1 Sample of possible outputs: 1 Input = 2, Target = 4 Sample of possible outputs: 3, 1 1, 3 Input = 3, Target = 9 Sample of possible outputs: 6, 1, 2 3, 5, 1 4, 3, …