commit 4fa078529d8daa9730e997bb984226bbbe3874b7 parent 351c5507982f92f94c4e4d9b070e1eb43a210dad 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]