I have a set of strings $S$ and I am using the edit-distance (Levenshtein) to measure the distance between all pairs.
Is there an algorithm for finding the string $x$ which minimizes the sum of the distances to all strings in $S$, that is
$\arg_x \min \sum_{s \in S} \text{edit-distance}(x,s)$
It seems like there should, but I can't find the right reference.