For each country, give the other country whose name is most similar.
The measure of similarity is minimum edit distance (specifically Levenshtein Distance). Basically, it's the fewest number of changes (adding, removing, or changing letters) you need to make to turn one word into another.
EXAMPLE: The minimum edit distance from "burger" to "barge" is two: 1. Change the "u" to an "a" 2. Remove the "r" at the end.
In good Jetpunk fashion, this quiz ignores spaces and capitalization.
This is based purely on spelling. Pronunciation does not factor into the equation.
Wrote a Python script. If you click the link in the description, I copied the function directly from there (the one immediately under "Iterative Computation of the Levenshtein Distance"), though if you don't know Python it may not mean much to you ;)