commit b982cc5c0a4b862124336939b2d7b39d84a615e3 parent e5bc9df27c0a9c6d979178ad01090e0de11e9f59 Author: Antoine Amarilli <a3nm@a3nm.net> Date: Wed, 21 May 2025 08:59:17 +0200 commit with codex Diffstat:
| permutation | | | 1 | + |
| permutation_in_place | | | 7 | +++++++ |
2 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/permutation b/permutation @@ -10,6 +10,7 @@ - [permutation_distance] - [permutation_pattern_matching] - [superpermutation] +- [permutation_in_place] ## Specific permutations diff --git a/permutation_in_place b/permutation_in_place @@ -0,0 +1,7 @@ +# Permutation in place + +[Computational_problem] of applying a [permutation] in-place to an [array] + +cf [dudek2021strictly] + +Up: [permutation]