in reply to (OT) A different kind of 'combinatorics'
I have now no time to code but this is what I would do. My usual approach is to do gradually build it up recursively with backtracking. I would think that you would not see many of the 16! possible combinations in such a procedure. If one would use a string as the underlying data structure, then a regex should be possible to identify the bad patterns. My first thought was m/(....).*\1/ but that would not detect overlapping repetitions. But I am sure such a regex exists.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: (OT) A different kind of 'combinatorics'
by BrowserUk (Patriarch) on Mar 26, 2015 at 15:51 UTC | |
|
Re^2: (OT) A different kind of 'combinatorics'
by Anonymous Monk on Apr 20, 2017 at 13:48 UTC | |
by tybalt89 (Monsignor) on Apr 20, 2017 at 14:11 UTC |