Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
In Dyalog APL, there's a predefined function in the dfns library to generate a matrix of permutations for a list of the numbers from 1 to n. I want to create the same functionality, except that it...
#1: Initial revision
Permutations of an array - APL
In Dyalog APL, there's a predefined function in the `dfns` library to generate a matrix of permutations for a list of the numbers from 1 to n. I want to create the same functionality, except that it should work for any array, not just a range 1 to n, in APL NARS2000. How do I implement that?