R Under development (unstable) (2024-10-17 r87242 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library(randtoolbox) Loading required package: rngWELL This is randtoolbox. For an overview, type 'help("randtoolbox")'. > > permut(3) [,1] [,2] [,3] [1,] 3 1 2 [2,] 3 2 1 [3,] 1 3 2 [4,] 2 3 1 [5,] 1 2 3 [6,] 2 1 3 > permut(4) [,1] [,2] [,3] [,4] [1,] 4 3 1 2 [2,] 4 3 2 1 [3,] 4 1 3 2 [4,] 4 2 3 1 [5,] 4 1 2 3 [6,] 4 2 1 3 [7,] 3 4 1 2 [8,] 3 4 2 1 [9,] 1 4 3 2 [10,] 2 4 3 1 [11,] 1 4 2 3 [12,] 2 4 1 3 [13,] 3 1 4 2 [14,] 3 2 4 1 [15,] 1 3 4 2 [16,] 2 3 4 1 [17,] 1 2 4 3 [18,] 2 1 4 3 [19,] 3 1 2 4 [20,] 3 2 1 4 [21,] 1 3 2 4 [22,] 2 3 1 4 [23,] 1 2 3 4 [24,] 2 1 3 4 > > proc.time() user system elapsed 0.25 0.06 0.29