For further actions, you may consider blocking this person and/or reporting abuse
Read next
🎥Exploring 3D Timewave Ripple
Ayush Kumar Vishwakarma -
Flutter 3.27.0 Release Notes: In-Depth Analysis
Encodedots Technolabs -
Top Open Source Communities you should not miss out in 2025🔥
Harshit Rawat -
Can English Replace Java? The Future of Programming in Plain Language
Rimsha Jalil -
Top comments (2)
If you want to create permutations, most algorithms are recursive. That means if you only want the 10,000th permutation you have to calculate the 9999 permutations before it. I was interested in calculating random-access permutations so every permutation calculation takes the same amount of time. So I wrote an algorithm and wrote up the process here.
The first time I used recursion in production code and then reused it for something slightly different. It's basically a tree traversal that gives users a sequence of different choices that depend on the previous choice.