shortest_common_non_subsequence (335B)
1 # Shortest common non subsequence 2 3 Given a set S of strings, find the shortest [common_non_subsequence] 4 5 can be solved in [PTIME], cf [crochemore2003directed] section 4.4 6 7 [timkovsky1989complexity] 8 9 Up: [computational_problem], [common_non_subsequence] 10 11 See also: [shortest_distinguishing_subsequence], [shortest_common_supersequence]